From 8281bd91a1a063c4dec5d8b320a305d08091a916 Mon Sep 17 00:00:00 2001 From: Pavel Borecki Date: Thu, 17 Aug 2017 17:31:57 +0000 Subject: Translated using Weblate (Czech) Currently translated at 100.0% (231 of 231 strings) --- src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts index b05d0e12..0bf26f10 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts @@ -346,8 +346,8 @@ - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. @@ -420,17 +420,17 @@ YesToAll - + Ano na vše NoToAll - + Ne na vše Cancel - + Storno @@ -591,7 +591,7 @@ Nové umístění: %2 - Click "Next" to start downloading the repository + Click "Next" to start downloading the repository Kliknutím na Další zahajte stahování repozitáře -- cgit From ca55d24bad94845fd264aac39da4cda5a4466331 Mon Sep 17 00:00:00 2001 From: Pavel Borecki Date: Thu, 17 Aug 2017 17:35:02 +0000 Subject: Translated using Weblate (Czech) Currently translated at 100.0% (41 of 41 strings) --- src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts index 331d54fd..be930e36 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts @@ -184,17 +184,17 @@ Save - + Uložit Discard - + Zahodit Cancel - + Storno -- cgit From 35ee744c9e937b82705a4350c6c07ca87dc4bca6 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 17 Aug 2017 14:12:52 -0400 Subject: Change up the single-file extraction system in lumina-archiver: Now have it extract to a datetime-stamped filename in the temp directory, allowing for multiple files with the same name to be previewed at teh same time. --- src-qt5/desktop-utils/lumina-archiver/MainUI.cpp | 10 ++++++-- .../desktop-utils/lumina-archiver/TarBackend.cpp | 27 +++++++++++++++------- src-qt5/desktop-utils/lumina-archiver/TarBackend.h | 2 +- 3 files changed, 28 insertions(+), 11 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp index 2dae90a4..afead9af 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp @@ -196,8 +196,8 @@ QString MainUI::OpenFileTypes(){ void MainUI::NewArchive(){ QString file = QFileDialog::getSaveFileName(this, tr("Create Archive"), QDir::homePath(), CreateFileTypes() ); if(file.isEmpty()){ return; } - if(QFile::exists(file)){ - if( !QFile::remove(file) ){ QMessageBox::warning(this, tr("Error"), QString(tr("Could not overwrite file:"))+"\n"+file); } + if(QFile::exists(file)){ + if( !QFile::remove(file) ){ QMessageBox::warning(this, tr("Error"), QString(tr("Could not overwrite file:"))+"\n"+file); } } ui->label_progress->setText(""); //just clear it (this action is instant) BACKEND->loadFile(file); @@ -267,6 +267,12 @@ void MainUI::extractSelection(){ void MainUI::ViewFile(QTreeWidgetItem *it){ if(it->childCount()>0){ return; } //directory - not viewable + /*QString newfile = QDir::tempPath()+"/"+it->whatsThis(0).section("/",-1); + if(QFile::exists(newfile)){ + if(QMessageBox::Yes != QMessageBox::question(this, tr("File exists"), tr("A temporary file with the same name already exists, do you want to overwrite it?")+"\n\n"+newfile, QMessageBox::Yes | QMessageBox::No, QMessageBox::No) ){ + return; //cancelled + } + }*/ ui->label_progress->setText(tr("Extracting...")); BACKEND->startViewFile(it->whatsThis(0)); } diff --git a/src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp b/src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp index c0d3b03e..9fe735a3 100644 --- a/src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp @@ -8,6 +8,8 @@ #include #include #include +#include +#include Backend::Backend(QObject *parent) : QObject(parent){ //Setup the backend process @@ -38,8 +40,8 @@ void Backend::loadFile(QString path){ } bool Backend::canModify(){ - static QStringList validEXT; - if( validEXT.isEmpty() ){ + static QStringList validEXT; + if( validEXT.isEmpty() ){ validEXT << ".zip" << ".tar.gz" << ".tgz" << ".tar.xz" << ".txz" << ".tar.bz" << ".tbz" << ".tar.bz2" << ".tbz2" << ".tar" \ << ".tar.lzma" << ".tlz" << ".cpio" << ".pax" << ".ar" << ".shar" << ".7z"; } @@ -95,16 +97,16 @@ void Backend::startAdd(QStringList paths){ QStringList args; args << "-c" << "-a"; args << flags; - //Now setup the parent dir + //Now setup the parent dir QString parent = paths[0].section("/",0,-2); - for(int i=0; i Date: Thu, 17 Aug 2017 18:49:56 +0000 Subject: Translated using Weblate (Catalan) Currently translated at 100.0% (231 of 231 strings) --- .../desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts | 72 +++++++++++----------- 1 file changed, 36 insertions(+), 36 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts index 12b946a3..27835dd5 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts @@ -165,7 +165,7 @@ Select Action - Seleccioneu l'acció + Seleccioneu l'acció @@ -175,7 +175,7 @@ Single column view - Vista d'una columna + Vista d'una columna @@ -213,7 +213,7 @@ The document could not be created. Please ensure that you have the proper permissions. - No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. + No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. @@ -267,7 +267,7 @@ The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. + No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. @@ -292,7 +292,7 @@ Application Launcher - Llançador d'aplicacions + Llançador d'aplicacions @@ -346,8 +346,8 @@ - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. @@ -415,22 +415,22 @@ Note: It will just add a number to the filename otherwise. - Nota: si no, només s'afegirà un número al nom del fitxer. + Nota: si no, només s'afegirà un número al nom del fitxer. YesToAll - + Sí a tot NoToAll - + No a tot Cancel - + Cancel·la @@ -455,22 +455,22 @@ Could not remove these files: - No s'han pogut suprimir aquests fitxers: + No s'han pogut suprimir aquests fitxers: Could not copy these files: - No s'han pogut copiar aquests fitxers: + No s'han pogut copiar aquests fitxers: Could not restore these files: - No s'han pogut restaurar aquests fitxers: + No s'han pogut restaurar aquests fitxers: Could not move these files: - No s'han pogut moure aquests fitxers: + No s'han pogut moure aquests fitxers: @@ -491,7 +491,7 @@ Old Location: %1 New Location: %2 - No és possible moure un directori a dins de si mateix. Si us plau, en comptes d'això, feu-ne una còpia. + No és possible moure un directori a dins de si mateix. Si us plau, en comptes d'això, feu-ne una còpia. Localització antiga: %1 Localització nova: %2 @@ -512,7 +512,7 @@ Localització nova: %2 This wizard will guide you through the process of downloading a GIT repository from the internet. - Aquest assistent us guiarà a través del procés de baixada d'un repositori GIT des d'Internet. + Aquest assistent us guiarà a través del procés de baixada d'un repositori GIT des d'Internet. @@ -537,7 +537,7 @@ Localització nova: %2 Type of Access - Tipus d'accés + Tipus d'accés @@ -552,7 +552,7 @@ Localització nova: %2 Username - Nom d'usuari + Nom d'usuari @@ -591,8 +591,8 @@ Localització nova: %2 - Click "Next" to start downloading the repository - Cliqueu a "Següent" per començar a baixar el repositori + Click "Next" to start downloading the repository + Cliqueu a "Següent" per començar a baixar el repositori @@ -640,7 +640,7 @@ Localització nova: %2 Bookmarks - Adreces d'interès + Adreces d'interès @@ -665,7 +665,7 @@ Localització nova: %2 Show Image Previews - Mostra previsualitzacions d'imatges + Mostra previsualitzacions d'imatges @@ -715,7 +715,7 @@ Localització nova: %2 Add Bookmark - Afegeix una adreça d'interès + Afegeix una adreça d'interès @@ -755,12 +755,12 @@ Localització nova: %2 Show Directory Tree Window - Mostra la finestra de l'arbre de directoris + Mostra la finestra de l'arbre de directoris Show Directory Tree Pane - Mostra el plafó de l'arbre de directoris + Mostra el plafó de l'arbre de directoris @@ -800,12 +800,12 @@ Localització nova: %2 Manage Bookmarks - Gestiona les adreces d'interès / marcadors + Gestiona les adreces d'interès / marcadors Show Action Buttons - Mostra els botons d'acció + Mostra els botons d'acció @@ -880,7 +880,7 @@ Localització nova: %2 The following directories are invalid and could not be opened: - Els directoris següents no són vàlids i no s'han pogut obrir: + Els directoris següents no són vàlids i no s'han pogut obrir: @@ -910,7 +910,7 @@ Localització nova: %2 New Bookmark - Adreça d'interès nova + Adreça d'interès nova @@ -925,7 +925,7 @@ Localització nova: %2 This bookmark name already exists. Please choose another. - Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. + Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. @@ -1077,7 +1077,7 @@ Localització nova: %2 File Operation Errors - Errors d'operacions de fitxers + Errors d'operacions de fitxers @@ -1100,17 +1100,17 @@ Localització nova: %2 Delete this image file - Suprimeix aquest fitxer d'imatge + Suprimeix aquest fitxer d'imatge Rotate this image file counter-clockwise - Gira aquest fitxer d'imatge cap a l'esquerra + Gira aquest fitxer d'imatge cap a l'esquerra Rotate this image file clockwise - Gira aquest fitxer d'imatge cap a la dreta + Gira aquest fitxer d'imatge cap a la dreta @@ -1203,7 +1203,7 @@ Localització nova: %2 Errors during operation. Click to view details - Hi ha hagut errors durant l'operació. Cliqueu per veure'n els detalls. + Hi ha hagut errors durant l'operació. Cliqueu per veure'n els detalls. -- cgit From 197cdaef0238df2efbe36039380dc0a4bf4095c6 Mon Sep 17 00:00:00 2001 From: Davidmp Date: Thu, 17 Aug 2017 18:48:52 +0000 Subject: Translated using Weblate (Catalan) Currently translated at 95.1% (39 of 41 strings) --- .../lumina-screenshot/i18n/l-screenshot_ca.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts index 4b4b786a..8bfa2f9c 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts @@ -34,7 +34,7 @@ Resize - Canvia'n la mida + Canvia'n la mida @@ -94,7 +94,7 @@ Select Area - Selecciona l'àrea + Selecciona l'àrea @@ -124,7 +124,7 @@ Close Application - Tanca l'aplicació + Tanca l'aplicació @@ -159,12 +159,12 @@ Could not save screenshot - No s'ha pogut desar la captura + No s'ha pogut desar la captura The screenshot could not be saved. Please check directory permissions or pick a different directory - No s'ha pogut desar la captura. Si us plau, comproveu els permisos del directori o trieu-ne un altre + No s'ha pogut desar la captura. Si us plau, comproveu els permisos del directori o trieu-ne un altre @@ -179,12 +179,12 @@ The current screenshot has not been saved yet. Do you want to save or discard your changes? - La captura actual encara no s'ha desat. Voleu desar o descartar els canvis? + La captura actual encara no s'ha desat. Voleu desar o descartar els canvis? Save - + Desa -- cgit From ba8f90553827bafb5b8829f62ed49150d7c96eb6 Mon Sep 17 00:00:00 2001 From: Davidmp Date: Thu, 17 Aug 2017 18:51:22 +0000 Subject: Translated using Weblate (Catalan) Currently translated at 100.0% (41 of 41 strings) --- src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts index 8bfa2f9c..b5c1ac97 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts @@ -189,12 +189,12 @@ Discard - + Descarta Cancel - + Cancel·la -- cgit From e4b589cbc66a1d601bd9f098fe775421466ff820 Mon Sep 17 00:00:00 2001 From: q5sys Date: Thu, 17 Aug 2017 19:32:10 -0400 Subject: add lumina-fm-dev to tree while I work on it --- src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp | 75 ++ src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h | 44 + src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui | 101 ++ src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp | 161 +++ src-qt5/desktop-utils/lumina-fm-dev/Browser.h | 75 ++ .../desktop-utils/lumina-fm-dev/BrowserWidget.cpp | 424 +++++++ .../desktop-utils/lumina-fm-dev/BrowserWidget.h | 94 ++ src-qt5/desktop-utils/lumina-fm-dev/DirData.h | 194 +++ src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp | 387 ++++++ src-qt5/desktop-utils/lumina-fm-dev/FODialog.h | 87 ++ src-qt5/desktop-utils/lumina-fm-dev/FODialog.ui | 84 ++ .../lumina-fm-dev/Insight-FileManager.png | Bin 0 -> 2829 bytes src-qt5/desktop-utils/lumina-fm-dev/MainUI.cpp | 964 +++++++++++++++ src-qt5/desktop-utils/lumina-fm-dev/MainUI.h | 193 +++ src-qt5/desktop-utils/lumina-fm-dev/MainUI.ui | 440 +++++++ src-qt5/desktop-utils/lumina-fm-dev/OPWidget.cpp | 117 ++ src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h | 64 + src-qt5/desktop-utils/lumina-fm-dev/OPWidget.ui | 71 ++ src-qt5/desktop-utils/lumina-fm-dev/README.md | 44 + src-qt5/desktop-utils/lumina-fm-dev/ScrollDialog.h | 55 + src-qt5/desktop-utils/lumina-fm-dev/TrayUI.cpp | 93 ++ src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h | 47 + src-qt5/desktop-utils/lumina-fm-dev/gitCompat.cpp | 45 + src-qt5/desktop-utils/lumina-fm-dev/gitCompat.h | 88 ++ src-qt5/desktop-utils/lumina-fm-dev/gitWizard.cpp | 138 +++ src-qt5/desktop-utils/lumina-fm-dev/gitWizard.h | 68 ++ src-qt5/desktop-utils/lumina-fm-dev/gitWizard.ui | 252 ++++ .../lumina-fm-dev/i18n/lumina-fm_af.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ar.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_az.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_bg.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_bn.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_bs.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ca.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_cs.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_cy.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_da.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_de.ts | 1215 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_el.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_en_AU.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_en_GB.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_en_ZA.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_es.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_et.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_eu.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_fa.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_fi.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_fr.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_fr_CA.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_fur.ts | 981 ++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_gl.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_he.ts | 1212 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_hi.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_hr.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_hu.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_id.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_is.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_it.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ja.ts | 1231 ++++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ka.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ko.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_lt.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_lv.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_mk.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_mn.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ms.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_mt.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_nb.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ne.ts | 981 ++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_nl.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_pa.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_pl.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_pt.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_pt_BR.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ro.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ru.ts | 1213 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_sa.ts | 981 ++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_sk.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_sl.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_sr.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_sv.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_sw.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ta.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_tg.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_th.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_tr.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_uk.ts | 1214 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_ur.ts | 981 ++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_uz.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_vi.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_zh_CN.ts | 1224 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_zh_HK.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_zh_TW.ts | 1211 +++++++++++++++++++ .../lumina-fm-dev/i18n/lumina-fm_zu.ts | 1211 +++++++++++++++++++ .../desktop-utils/lumina-fm-dev/lumina-fm.desktop | 18 + src-qt5/desktop-utils/lumina-fm-dev/lumina-fm.pro | 136 +++ src-qt5/desktop-utils/lumina-fm-dev/main.cpp | 45 + .../lumina-fm-dev/widgets/DDListWidgets.h | 329 ++++++ .../lumina-fm-dev/widgets/DirWidget2.cpp | 907 ++++++++++++++ .../lumina-fm-dev/widgets/DirWidget2.h | 193 +++ .../lumina-fm-dev/widgets/DirWidget2.ui | 261 +++++ .../lumina-fm-dev/widgets/MultimediaWidget.cpp | 222 ++++ .../lumina-fm-dev/widgets/MultimediaWidget.h | 71 ++ .../lumina-fm-dev/widgets/MultimediaWidget.ui | 181 +++ .../lumina-fm-dev/widgets/SlideshowWidget.cpp | 169 +++ .../lumina-fm-dev/widgets/SlideshowWidget.h | 57 + .../lumina-fm-dev/widgets/SlideshowWidget.ui | 346 ++++++ 107 files changed, 87660 insertions(+) create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/Browser.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/DirData.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/FODialog.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/FODialog.ui create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/Insight-FileManager.png create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/MainUI.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/MainUI.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/MainUI.ui create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/OPWidget.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/OPWidget.ui create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/README.md create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/ScrollDialog.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/TrayUI.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitCompat.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitCompat.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitWizard.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitWizard.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitWizard.ui create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fur.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ne.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sa.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ur.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/lumina-fm.desktop create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/lumina-fm.pro create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/main.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/DDListWidgets.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.ui create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/MultimediaWidget.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/MultimediaWidget.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/MultimediaWidget.ui create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/SlideshowWidget.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/SlideshowWidget.h create mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/SlideshowWidget.ui (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp new file mode 100644 index 00000000..5125a48e --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp @@ -0,0 +1,75 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2014, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#include "BMMDialog.h" +#include "ui_BMMDialog.h" + +BMMDialog::BMMDialog(QWidget *parent) : QDialog(parent), ui(new Ui::BMMDialog){ + ui->setupUi(this); //load the designer file + this->setWindowIcon( LXDG::findIcon("bookmarks-organize","") ); + ui->tool_remove->setIcon( LXDG::findIcon("edit-delete","") ); + ui->tool_rename->setIcon( LXDG::findIcon("edit-rename","") ); + ui->push_done->setIcon( LXDG::findIcon("dialog-ok","") ); + connect(ui->tool_remove, SIGNAL(clicked()), this, SLOT(RemoveItem()) ); + connect(ui->tool_rename, SIGNAL(clicked()), this, SLOT(RenameItem()) ); + connect(ui->push_done, SIGNAL(clicked()), this, SLOT(close()) ); +} + +BMMDialog::~BMMDialog(){ +} + +void BMMDialog::loadSettings(QSettings *set){ + settings = set; //save this pointer for later + //Now fill the tree with the items + QStringList BM = settings->value("bookmarks", QStringList()).toStringList(); + ui->treeWidget->clear(); + for(int i=0; itreeWidget->addTopLevelItem( new QTreeWidgetItem(BM[i].split("::::")) ); + } + //Now expand to encompass all the items + ui->treeWidget->resizeColumnToContents(0); + ui->treeWidget->resizeColumnToContents(1); +} +// ==== PRIVATE ==== + +// ==== PRIVATE SLOTS ==== +void BMMDialog::RemoveItem(){ + //Get the currently selected item + if(ui->treeWidget->currentItem()==0){ return; } //nothing selected + QString item = ui->treeWidget->currentItem()->text(0)+"::::"+ui->treeWidget->currentItem()->text(1); + //Remove it from the widget + delete ui->treeWidget->takeTopLevelItem( ui->treeWidget->indexOfTopLevelItem( ui->treeWidget->currentItem() ) ); + //Remove it from the saved bookmarks + QStringList BM = settings->value("bookmarks",QStringList()).toStringList(); + BM.removeAll(item); + settings->setValue("bookmarks",BM); + settings->sync(); +} + +void BMMDialog::RenameItem(){ + //Get the currently selected item + if(ui->treeWidget->currentItem()==0){ return; } //nothing selected + QString olditem = ui->treeWidget->currentItem()->text(0)+"::::"+ui->treeWidget->currentItem()->text(1); + //Prompt for the new name + bool ok = false; + QString name = QInputDialog::getText(this, tr("Rename Bookmark"), tr("Name:"), QLineEdit::Normal, olditem.section("::::",0,0), \ + &ok, 0, Qt::ImhFormattedNumbersOnly | Qt::ImhUppercaseOnly | Qt::ImhLowercaseOnly); + if(!ok || name.isEmpty()){ return; } //cancelled + //Check if this name already exists + QStringList BM = settings->value("bookmarks",QStringList()).toStringList(); + if(BM.filter(name+"::::").length() >0){ + QMessageBox::warning(this, tr("Invalid Name"), tr("This bookmark name already exists. Please choose another.") ); + QTimer::singleShot(0,this, SLOT(RenameItem())); + return; + } + //Rename it in the widget + ui->treeWidget->currentItem()->setText(0,name); + //Replace it in the saved bookmarks + BM.removeAll(olditem); + BM.append(name+"::::"+olditem.section("::::",1,3)); + settings->setValue("bookmarks",BM); + settings->sync(); +} \ No newline at end of file diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h new file mode 100644 index 00000000..d421446c --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h @@ -0,0 +1,44 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2014, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +// This is the dialog for managing bookmarks (BookMark Manager) +//=========================================== +#ifndef _LUMINA_FILE_MANAGER_BOOKMARK_MANAGER_DIALOG_H +#define _LUMINA_FILE_MANAGER_BOOKMARK_MANAGER_DIALOG_H + +// Qt includes +#include +#include +#include +#include +#include +#include + +// libLumina includes +#include + +namespace Ui{ + class BMMDialog; +}; + +class BMMDialog : public QDialog{ + Q_OBJECT +public: + BMMDialog(QWidget *parent = 0); + ~BMMDialog(); + + void loadSettings(QSettings *); + +private: + Ui::BMMDialog *ui; + QSettings *settings; + +private slots: + void RemoveItem(); + void RenameItem(); +}; + +#endif diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui new file mode 100644 index 00000000..fbadb61e --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui @@ -0,0 +1,101 @@ + + + BMMDialog + + + + 0 + 0 + 466 + 238 + + + + Manage Bookmarks + + + + + + + + 5 + + + false + + + true + + + 130 + + + + Name + + + + + Path + + + + + + + + + + + + Remove Bookmark + + + Remove + + + Qt::ToolButtonTextBesideIcon + + + + + + + Rename BookMark + + + Rename + + + Qt::ToolButtonTextBesideIcon + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + Finished + + + + + + + + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp b/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp new file mode 100644 index 00000000..f2bdc178 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp @@ -0,0 +1,161 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2016, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#include "Browser.h" + +#include +#include +#include +#include + +#include + +Browser::Browser(QObject *parent) : QObject(parent){ + watcher = new QFileSystemWatcher(this); + connect(watcher, SIGNAL(fileChanged(const QString&)), this, SLOT(fileChanged(QString)) ); + connect(watcher, SIGNAL(directoryChanged(const QString&)), this, SLOT(dirChanged(QString)) ); + showHidden = false; + showThumbs = false; + imageFormats = LUtils::imageExtensions(false); //lowercase suffixes + connect(this, SIGNAL(threadDone(QString, QImage)), this, SLOT(futureFinished(QString, QImage))); //will always be between different threads +} + +Browser::~Browser(){ + //watcher->deleteLater(); +} + +QString Browser::currentDirectory(){ return currentDir; } + +void Browser::showHiddenFiles(bool show){ + if(show !=showHidden){ + showHidden = show; + if(!currentDir.isEmpty()){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } + } +} +bool Browser::showingHiddenFiles(){ + return showHidden; +} + +void Browser::showThumbnails(bool show){ + if(show != showThumbs){ + showThumbs = show; + if(!currentDir.isEmpty()){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } + } +} + +bool Browser::showingThumbnails(){ + return showThumbs; +} + +// PRIVATE +void Browser::loadItem(QString info, Browser *obj){ + QImage pix; + if(imageFormats.contains(info.section(".",-1).toLower()) ){ + QFile file(info); + if(file.open(QIODevice::ReadOnly)){ + QByteArray bytes = file.readAll(); + file.close(); + pix.loadFromData(bytes); + if(pix.width() > 256 || pix.height() > 256 ){ + pix = pix.scaled(256,256, Qt::KeepAspectRatio, Qt::SmoothTransformation); + } + } + } + + //qDebug() << " - done with item:" << info; + obj->emit threadDone(info, pix); +} + +QIcon Browser::loadIcon(QString icon){ + if(!mimeIcons.contains(icon)){ + mimeIcons.insert(icon, LXDG::findIcon(icon, "unknown")); + } + + return mimeIcons[icon]; +} + + +// PRIVATE SLOTS +void Browser::fileChanged(QString file){ + if(file.startsWith(currentDir+"/") ){ + if(QFile::exists(file) ){ QtConcurrent::run(this, &Browser::loadItem, file, this); } //file modified but not removed + else{ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } //file removed - need to update entire dir + }else if(file==currentDir){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } +} + +void Browser::dirChanged(QString dir){ + + if(dir==currentDir){ QTimer::singleShot(500, this, SLOT(loadDirectory()) ); } + else if(dir.startsWith(currentDir)){ QtConcurrent::run(this, &Browser::loadItem, dir, this ); } +} + +void Browser::futureFinished(QString name, QImage icon){ + //Note: this will be called once for every item that loads + QIcon ico; + //LFileInfo info(name); + LFileInfo *info = new LFileInfo(name); + if(!icon.isNull() && showThumbs){ + //qDebug() << " -- Data:"; + QPixmap pix = QPixmap::fromImage(icon); + ico.addPixmap(pix); + //}else if(info->isDir()){ + //qDebug() << " -- Folder:"; + //ico = loadIcon("folder"); + } + if(ico.isNull()){ + //qDebug() << " -- MimeType:" << info.fileName() << info.mimetype(); + ico = loadIcon(info->iconfile()); + } + this->emit itemDataAvailable( ico, info); + //qDebug() << " -- done:" << name; +} + +// PUBLIC SLOTS +void Browser::loadDirectory(QString dir){ + if(dir.isEmpty()){ dir = currentDir; } //reload current directory + if(dir.isEmpty()){ return; } //nothing to do - nothing previously loaded + //qDebug() << "Load Directory" << dir; + if(currentDir != dir){ //let the main widget know to clear all current items (completely different dir) + oldFiles.clear(); + emit clearItems(); + } + currentDir = dir; //save this for later + //clean up the watcher first + QStringList watched; watched << watcher->files() << watcher->directories(); + if(!watched.isEmpty()){ watcher->removePaths(watched); } + QStringList old = oldFiles; //copy this over for the moment (both lists will change in a moment) + oldFiles.clear(); //get ready for re-creating this list + // read the given directory + QDir directory(dir); + if(directory.exists()){ + QStringList files; + if(showHidden){ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoDotAndDotDot, QDir::NoSort); } + else{ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot, QDir::NoSort); } + emit itemsLoading(files.length()); + for(int i=0; iaddPath(directory.absoluteFilePath(files[i])); + //qDebug() << "Future Starting:" << files[i]; + QString path = directory.absoluteFilePath(files[i]); + if(old.contains(path)){ old.removeAll(path); } + oldFiles << path; //add to list for next time + //if(showThumbs && imageFormats.contains(path.section(".",-1).toLower())){ + QtConcurrent::run(this, &Browser::loadItem, path, this); + /*}else{ + //No special icon loading - just skip the file read step + futureFinished(path, QImage()); //loadItem(path, this); + }*/ + } + watcher->addPath(directory.absolutePath()); + if(!old.isEmpty()){ + old.removeAll(directory.absolutePath()); + for(int i=0; i +#include +#include +#include +//#include + +#include +/*class FileItem{ +public: + QString name; + QByteArray icon; + + FileItem(){} + ~FileItem(){}; +};*/ + +class Browser : public QObject{ + Q_OBJECT +public: + Browser(QObject *parent = 0); + ~Browser(); + + QString currentDirectory(); + void showHiddenFiles(bool); + bool showingHiddenFiles(); + + void showThumbnails(bool); + bool showingThumbnails(); + + //FileItem loadItem(QString info); //this is the main loader class - multiple instances each run in a separate thread + +private: + QString currentDir; + QFileSystemWatcher *watcher; + bool showHidden, showThumbs; + QStringList imageFormats, oldFiles; + QHash mimeIcons; //cache for quickly re-using QIcons + + void loadItem(QString info, Browser *obj); //this is the main loader class - multiple instances each run in a separate thread + QIcon loadIcon(QString icon); //simplification for using/populating the mimIcons cache + +private slots: + void fileChanged(QString); //tied into the watcher - for file change notifications + void dirChanged(QString); // tied into the watcher - for new/removed files in the current dir + + void futureFinished(QString, QImage); + +public slots: + void loadDirectory(QString dir = ""); + +signals: + //Main Signals + void itemRemoved(QString item); //emitted if a file was removed from the underlying + void clearItems(); //emitted when dirs change for example + void itemDataAvailable(QIcon, LFileInfo*); + + //Start/Stop signals for loading of data + void itemsLoading(int); //number of items which are getting loaded + + //Internal signal for the alternate threads + void threadDone(QString, QImage); +}; + +#endif diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.cpp new file mode 100644 index 00000000..d5f219bb --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.cpp @@ -0,0 +1,424 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2016, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#include "BrowserWidget.h" + +#include +#include +#include + +#include +#include + +BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ + //Setup the Widget/UI + this->setLayout( new QVBoxLayout(this) ); + ID = objID; + //BROWSER = 0; + //Setup the backend browser object + BROWSER = new Browser(this); + connect(BROWSER, SIGNAL(clearItems()), this, SLOT(clearItems()) ); + connect(BROWSER, SIGNAL(itemRemoved(QString)), this, SLOT(itemRemoved(QString)) ); + connect(BROWSER, SIGNAL(itemDataAvailable(QIcon, LFileInfo*)), this, SLOT(itemDataAvailable(QIcon, LFileInfo*)) ); + connect(BROWSER, SIGNAL(itemsLoading(int)), this, SLOT(itemsLoading(int)) ); + connect(this, SIGNAL(dirChange(QString)), BROWSER, SLOT(loadDirectory(QString)) ); + listWidget = 0; + treeWidget = 0; + readDateFormat(); + freshload = true; //nothing loaded yet + numItems = 0; + this->setMouseTracking(true); +} + +BrowserWidget::~BrowserWidget(){ + BROWSER->deleteLater(); +} + +void BrowserWidget::changeDirectory(QString dir){ + if(BROWSER->currentDirectory()==dir){ return; } //already on this directory + //qDebug() << "Change Directory:" << dir << historyList; + + if( !dir.contains("/.zfs/snapshot/") ){ + if(historyList.isEmpty() || !dir.isEmpty()){ historyList << dir; } + }else{ + //Need to remove the zfs snapshot first and ensure that it is not the same dir (just a diff snapshot) + QString cleaned = dir; + cleaned = cleaned.replace( QRegExp("/\\.zfs/snapshot/(.)+/"), "/" ); + if( (historyList.isEmpty() || historyList.last()!=cleaned) && !cleaned.isEmpty() ){ historyList << cleaned; } + } + //qDebug() << "History:" << historyList; + emit dirChange(dir); +} + +void BrowserWidget::showDetails(bool show){ + //Clean up widgets first + QSize iconsize; + if(show && listWidget!=0){ + //Clean up list widget + iconsize = listWidget->iconSize(); + this->layout()->removeWidget(listWidget); + listWidget->deleteLater(); + listWidget = 0; + }else if(!show && treeWidget!=0){ + iconsize = treeWidget->iconSize(); + this->layout()->removeWidget(treeWidget); + treeWidget->deleteLater(); + treeWidget = 0; + } + // qDebug() << "Create Widget: details:" << show; + //Now create any new widgets + if(show && treeWidget == 0){ + treeWidget = new DDTreeWidget(this); + treeWidget->setContextMenuPolicy(Qt::CustomContextMenu); + if(!iconsize.isNull()){ treeWidget->setIconSize(iconsize); } + this->layout()->addWidget(treeWidget); + connect(treeWidget, SIGNAL(itemActivated(QTreeWidgetItem*,int)), this, SIGNAL(itemsActivated()) ); + connect(treeWidget, SIGNAL(customContextMenuRequested(const QPoint&)), this, SIGNAL(contextMenuRequested()) ); + connect(treeWidget, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(DataDropped(QString, QStringList)) ); + connect(treeWidget, SIGNAL(GotFocus()), this, SLOT(selectionChanged()) ); + retranslate(); + treeWidget->sortItems(0, Qt::AscendingOrder); + if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange(""); } + }else if(!show && listWidget==0){ + listWidget = new DDListWidget(this); + listWidget->setContextMenuPolicy(Qt::CustomContextMenu); + if(!iconsize.isNull()){ listWidget->setIconSize(iconsize); } + this->layout()->addWidget(listWidget); + connect(listWidget, SIGNAL(itemActivated(QListWidgetItem*)), this, SIGNAL(itemsActivated()) ); + connect(listWidget, SIGNAL(customContextMenuRequested(const QPoint&)), this, SIGNAL(contextMenuRequested()) ); + connect(listWidget, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(DataDropped(QString, QStringList)) ); + connect(listWidget, SIGNAL(GotFocus()), this, SLOT(selectionChanged()) ); + if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange(""); } + } + //qDebug() << " Done making widget"; +} + +bool BrowserWidget::hasDetails(){ + return (treeWidget!=0); +} + +void BrowserWidget::showHiddenFiles(bool show){ + BROWSER->showHiddenFiles(show); +} + +bool BrowserWidget::hasHiddenFiles(){ + return BROWSER->showingHiddenFiles(); +} + +void BrowserWidget::showThumbnails(bool show){ + BROWSER->showThumbnails(show); +} + +bool BrowserWidget::hasThumbnails(){ + return BROWSER->showingThumbnails(); +} + +void BrowserWidget::setThumbnailSize(int px){ + bool larger = true; + if(listWidget!=0){ + larger = listWidget->iconSize().height() < px; + listWidget->setIconSize(QSize(px,px)); + }else if(treeWidget!=0){ + larger = treeWidget->iconSize().height() < px; + treeWidget->setIconSize(QSize(px,px)); + } + //qDebug() << "Changing Icon Size:" << px << larger; + if(BROWSER->currentDirectory().isEmpty() || !larger ){ return; } //don't need to reload icons unless the new size is larger + emit dirChange(""); +} + +int BrowserWidget::thumbnailSize(){ + if(listWidget!=0){ return listWidget->iconSize().height(); } + else if(treeWidget!=0){ return treeWidget->iconSize().height(); } + return 0; +} + +void BrowserWidget::setHistory(QStringList paths){ + //NOTE: later items are used first + historyList = paths; +} + +QStringList BrowserWidget::history(){ + return historyList; +} + +void BrowserWidget::setShowActive(bool show){ + QString base = "";//"QListWidget::item,QTreeWidget::item{ border: 1px solid transparent; background-color: red; } QListWidget::item:hover,QTreeWidget::item:hover{ border: 1px solid black; background-color: blue; }"; + if(!show){ base.prepend("QAbstractScrollArea{ background-color: rgba(10,10,10,10); } QHeaderView{ background-color: lightgrey; } "); } + this->setStyleSheet(base); +} + +// This function is only called if user changes sessionsettings. By doing so, operations like sorting by date +// are faster because the date format is already stored in DirWidget::date_format static variable +void BrowserWidget::readDateFormat() { + if(!date_format.isEmpty()) + date_format.clear(); + QSettings settings("lumina-desktop","sessionsettings"); + // If value doesn't exist or is not setted, empty string is returned + date_format << settings.value("DateFormat").toString(); + date_format << settings.value("TimeFormat").toString(); +} + + +QStringList BrowserWidget::currentSelection(){ + QStringList out; + if(listWidget!=0){ + QList sel = listWidget->selectedItems(); + //qDebug() << "Selection number:" << sel.length(); + //if(sel.isEmpty() && listWidget->currentItem()!=0){ sel << listWidget->currentItem(); } + //qDebug() << "Selection number:" << sel.length(); + for(int i=0; iwhatsThis(); qDebug() << "Selection:" << sel[i]->text() << sel[i]->whatsThis(); } + }else if(treeWidget!=0){ + QList sel = treeWidget->selectedItems(); + //if(sel.isEmpty() && treeWidget->currentItem()!=0){ sel << treeWidget->currentItem(); } + for(int i=0; iwhatsThis(0); } + } + out.removeDuplicates(); //just in case - tree widgets sometimes "select" each column as an individual item + return out; +} + +QStringList BrowserWidget::currentItems(int type){ + //type: 0=all, -1=files, +1=dirs + QStringList paths; + if(listWidget!=0){ + for(int i=0; icount(); i++){ + if(i<0 && (listWidget->item(i)->data(Qt::UserRole).toString()=="file") ){ //FILES + paths << listWidget->item(i)->whatsThis(); + }else if(i>0 && (listWidget->item(i)->data(Qt::UserRole).toString()=="dir")){ //DIRS + paths << listWidget->item(i)->whatsThis(); + }else if(i==0){ //ALL + paths << listWidget->item(i)->whatsThis(); + } + } + }else if(treeWidget!=0){ + for(int i=0; itopLevelItemCount(); i++){ + if(i<0 && !treeWidget->topLevelItem(i)->text(1).isEmpty()){ //FILES + paths << treeWidget->topLevelItem(i)->whatsThis(0); + }else if(i>0 && treeWidget->topLevelItem(i)->text(1).isEmpty()){ //DIRS + paths << treeWidget->topLevelItem(i)->whatsThis(0); + }else if(i==0){ //ALL + paths << treeWidget->topLevelItem(i)->whatsThis(0); + } + } + } + return paths; +} + +// ================= +// PUBLIC SLOTS +// ================= +void BrowserWidget::retranslate(){ + if(listWidget!=0){ + + }else if(treeWidget!=0){ + QTreeWidgetItem *it = new QTreeWidgetItem(); + it->setText(0,tr("Name")); + it->setText(1,tr("Size")); + it->setText(2, tr("Type")); + it->setText(3, tr("Date Modified") ); + it->setText(4, tr("Date Created") ); + treeWidget->setHeaderItem(it); + //Now reset the sorting (alphabetically, dirs first) + treeWidget->sortItems(0, Qt::AscendingOrder); // sort by name + treeWidget->sortItems(1, Qt::AscendingOrder); //sort by type + } +} + +// ================= +// PRIVATE +// ================= +QString BrowserWidget::DTtoString(QDateTime dt){ + QStringList fmt = date_format; + if(fmt.isEmpty() || fmt.length()!=2 || (fmt[0].isEmpty() && fmt[1].isEmpty()) ){ + //Default formatting + return dt.toString(Qt::DefaultLocaleShortDate); + }else if(fmt[0].isEmpty()){ + //Time format only + return (dt.date().toString(Qt::DefaultLocaleShortDate)+" "+dt.time().toString(fmt[1])); + }else if(fmt[1].isEmpty()){ + //Date format only + return (dt.date().toString(fmt[0])+" "+dt.time().toString(Qt::DefaultLocaleShortDate)); + }else{ + //both date/time formats set + return dt.toString(fmt.join(" ")); + } +} + +// ================= +// PRIVATE SLOTS +// ================= +void BrowserWidget::clearItems(){ + //qDebug() << "Clear Items"; + if(listWidget!=0){ listWidget->clear(); } + else if(treeWidget!=0){ treeWidget->clear(); } + freshload = true; +} + +void BrowserWidget::itemRemoved(QString item){ + //qDebug() << "item removed" << item; + if(treeWidget!=0){ + QList found = treeWidget->findItems(item.section("/",-1), Qt::MatchExactly, 0); //look for exact name match + if(found.isEmpty()){ return; } //no match + delete found[0]; + }else if(listWidget!=0){ + QList found = listWidget->findItems(item.section("/",-1), Qt::MatchExactly); //look for exact name match + if(found.isEmpty()){ return; } + delete found[0]; + } +} + +void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ + //qDebug() << "Item Data Available:" << info->fileName(); + int num = 0; + if(listWidget!=0){ + //LIST WIDGET - name and icon only + if(info->isDesktopFile() && info->XDG()->isValid()){ + QList items = listWidget->findItems(info->XDG()->name, Qt::MatchExactly); + //Could be multiple items with the same text in this case - check paths as well + bool found = false; + for(int i=0; iwhatsThis()==info->absoluteFilePath()){ + found = true; + items[i]->setText(info->XDG()->name); + items[i]->setIcon(ico); + } + } + if(!found){ + //New Item + QListWidgetItem *it = new CQListWidgetItem(ico, info->XDG()->name, listWidget); + it->setWhatsThis(info->absoluteFilePath()); + it->setData(Qt::UserRole, (info->isDir() ? "dir" : "file")); //used for sorting + listWidget->addItem(it); + } + }else{ + //non-desktop entry + if(!listWidget->findItems(info->fileName(), Qt::MatchExactly).isEmpty()){ + //Update existing item + QListWidgetItem *it = listWidget->findItems(info->fileName(), Qt::MatchExactly).first(); + it->setText(info->fileName()); + it->setWhatsThis(info->absoluteFilePath()); + it->setIcon(ico); + + }else{ + //New item + QListWidgetItem *it = new CQListWidgetItem(ico, info->fileName(), listWidget); + it->setWhatsThis(info->absoluteFilePath()); + it->setData(Qt::UserRole, (info->isDir() ? "dir" : "file")); //used for sorting + listWidget->addItem(it); + } + num = listWidget->count(); + } //end non-desktop entry + }else if(treeWidget!=0){ + QTreeWidgetItem *it = 0; + if(info->isDesktopFile()){ + QList items = treeWidget->findItems(info->XDG()->name, Qt::MatchExactly, 0); + for(int i=0; iwhatsThis(0)==info->absoluteFilePath()){ it = items[i]; } + } + if(it==0){ + //New item + it = new CQTreeWidgetItem(treeWidget); + it->setText(0, info->XDG()->name ); //name (0) + treeWidget->addTopLevelItem(it); + } + }else{ + if( ! treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).isEmpty() ){ it = treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).first(); } + else{ + it = new CQTreeWidgetItem(treeWidget); + it->setText(0, info->fileName() ); //name (0) + treeWidget->addTopLevelItem(it); + } + } + //Now set/update all the data + it->setIcon(0, ico); + it->setText(1, info->isDir() ? "" : LUtils::BytesToDisplaySize(info->size()) ); //size (1) + it->setText(2, info->mimetype() ); //type (2) + it->setText(3, DTtoString(info->lastModified() )); //modification date (3) + it->setText(4, DTtoString(info->created()) ); //creation date (4) + //Now all the hidden data + it->setWhatsThis(0, info->absoluteFilePath()); + it->setWhatsThis(3, info->lastModified().toString("yyyyMMddhhmmsszzz") ); //sorts by this actually + it->setWhatsThis(4, info->created().toString("yyyyMMddhhmmsszzz") ); //sorts by this actually + num = treeWidget->topLevelItemCount(); + } + + if(num < numItems){ + //Still loading items + //this->setEnabled(false); + }else{ + if(freshload && treeWidget!=0){ + //qDebug() << "Resize Tree Widget Contents"; + for(int i=0; icolumnCount(); i++){ treeWidget->resizeColumnToContents(i); } + } + freshload = false; //any further changes are updates - not a fresh load of a dir + //Done loading items + //this->setEnabled(true); + //Assemble any status message + QString stats = QString(tr("Capacity: %1")).arg(LOS::FileSystemCapacity(BROWSER->currentDirectory())); + int nF, nD; + double bytes = 0; + nF = nD = 0; + if(listWidget!=0){ + bytes = -1; //not supported for this widget + for(int i=0; icount(); i++){ + if(listWidget->item(i)->data(Qt::UserRole).toString()=="dir"){ nD++; } //directory + else{ nF++; } //file + } + }else if(treeWidget!=0){ + for(int i=0; itopLevelItemCount(); i++){ + if(treeWidget->topLevelItem(i)->text(1).isEmpty()){ + nD++; //directory + }else{ + nF++; //file + bytes+=LUtils::DisplaySizeToBytes(treeWidget->topLevelItem(i)->text(1)); + } + } + } + if( (nF+nD) >0){ + stats.prepend("\t"); + if(nF>0){ + //Has Files + if(bytes>0){ + stats.prepend( QString(tr("Files: %1 (%2)")).arg(QString::number(nF), LUtils::BytesToDisplaySize(bytes)) ); + }else{ + stats.prepend( QString(tr("Files: %1")).arg(QString::number(nF)) ); + } + } + if(nD > 0){ + //Has Dirs + if(nF>0){ stats.prepend(" / "); }//has files output already + stats.prepend( QString(tr("Dirs: %1")).arg(QString::number(nD)) ); + } + } + emit updateDirectoryStatus( stats.simplified() ); + statustip = stats.simplified(); //save for later + }//end check for finished loading items +} + +void BrowserWidget::itemsLoading(int total){ + //qDebug() << "Got number of items loading:" << total; + if(listWidget!=0){ listWidget->setWhatsThis( BROWSER->currentDirectory() ); } + if(treeWidget!=0){ treeWidget->setWhatsThis(BROWSER->currentDirectory() ); } + numItems = total; //save this for later + if(total<1){ + emit updateDirectoryStatus( tr("No Directory Contents") ); + this->setEnabled(true); + } +} + +void BrowserWidget::selectionChanged(){ + emit hasFocus(ID); //let the parent know the widget is "active" with the user +} + +void BrowserWidget::resizeEvent(QResizeEvent *ev){ + QWidget::resizeEvent(ev); //do the normal processing first + //The list widget needs to be poked to rearrange the items to fit the new size + // tree widget does this fine at the moment. + if(listWidget!=0){ + listWidget->sortItems(Qt::AscendingOrder); + } +} diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.h new file mode 100644 index 00000000..fafb3746 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.h @@ -0,0 +1,94 @@ +// Lumina-DE source code +// Copyright (c) 2016, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +// This is the main browsing frontend for the file manager +//=========================================== +#ifndef _LUMINA_FM_BROWSE_FRONTEND_H +#define _LUMINA_FM_BROWSE_FRONTEND_H + +#include +#include +#include + +#include "Browser.h" +#include "widgets/DDListWidgets.h" + +class BrowserWidget : public QWidget{ + Q_OBJECT +private: + Browser *BROWSER; + //QThread *bThread; //browserThread + int numItems; //used for checking if all the items have loaded yet + QString ID, statustip; + QStringList date_format, historyList; + bool freshload; + + //The drag and drop brower widgets + DDListWidget *listWidget; + DDTreeWidget *treeWidget; + + QString DTtoString(QDateTime dt); //QDateTime to string simplification routine + +public: + BrowserWidget(QString objID, QWidget *parent = 0); + ~BrowserWidget(); + + QString id(){ return ID; } + + void changeDirectory(QString dir); + QString currentDirectory(){ return BROWSER->currentDirectory(); } + + void showDetails(bool show); + bool hasDetails(); + + void showHiddenFiles(bool show); + bool hasHiddenFiles(); + + void showThumbnails(bool show); + bool hasThumbnails(); + void setThumbnailSize(int px); + int thumbnailSize(); + + void setHistory(QStringList); + QStringList history(); + + void setShowActive(bool show); //used for accenting if the widget is "active" + + QString status(){ return statustip; } + + //Date format for show items + void readDateFormat(); + + //Return all the items which are currently selected + QStringList currentSelection(); + QStringList currentItems(int type = 0); //type: 0=all, -1=files, +1=dirs + +public slots: + void retranslate(); + +private slots: + //Browser connections + void clearItems(); + void itemRemoved(QString); + void itemDataAvailable(QIcon, LFileInfo*); + void itemsLoading(int total); + void selectionChanged(); + +protected: + void resizeEvent(QResizeEvent *ev); + +signals: + //External signals + void itemsActivated(); + void updateDirectoryStatus(QString); + void contextMenuRequested(); + void DataDropped(QString, QStringList); + void hasFocus(QString); //ID output + + //Internal signal + void dirChange(QString); //current dir path + +}; +#endif diff --git a/src-qt5/desktop-utils/lumina-fm-dev/DirData.h b/src-qt5/desktop-utils/lumina-fm-dev/DirData.h new file mode 100644 index 00000000..528a82d6 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/DirData.h @@ -0,0 +1,194 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2015, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +// This is the backend classes for fetching directory information/contents +//=========================================== +#ifndef _LUMINA_FM_BACKGROUND_DATA_CLASSES_H +#define _LUMINA_FM_BACKGROUND_DATA_CLASSES_H + +#include +#include +#include +#include +#include + +#include +#include + +#define ZSNAPDIR QString("/.zfs/snapshot/") + +#define DIR_DEBUG 0 + +//Class used for keeping track of directory information in the HASH +class LDirInfoList{ +public: + //Internal variables + QDateTime lastcheck; + QList list; + QStringList fileNames; //list of filenames for comparison/checking sorting + QString dirpath; //directory this structure was reading + QString snapdir; //base snapshot directory (if one was requested/found) + bool hashidden; + QStringList mntpoints; + + //Access Functions + LDirInfoList(QString path = ""){ + dirpath = path; + list.clear(); + fileNames.clear(); + hashidden = false; + //Generate the list of all mountpoints if possible + if(LUtils::isValidBinary("zfs")){ + mntpoints = LUtils::getCmdOutput("zfs list -H -o mountpoint").filter("/"); + mntpoints.removeDuplicates(); + } + } + ~LDirInfoList(){} + + //(re)Load a directory contents + void update(bool showhidden = false){ + if(dirpath.isEmpty()){ return; } //nothing to do + //Assemble the structures + QDir dir(dirpath); + hashidden = showhidden; + if(!dir.exists()){ + list.clear(); + fileNames.clear(); + dirpath.clear(); //invalid directory now + return; + } + if(dirpath.contains(ZSNAPDIR) && snapdir.isEmpty()){ + snapdir = dirpath.section(ZSNAPDIR,0,0)+ZSNAPDIR; //no need to go looking for it later + } + QFileInfoList dirlist; + //Fill the structure + list.clear(); + fileNames.clear(); + lastcheck = QDateTime::currentDateTime().addMSecs(-500); //prevent missing any simultaneous dir changes + if(showhidden){ dirlist = dir.entryInfoList(QDir::AllEntries | QDir::NoDotAndDotDot | QDir::Hidden , QDir::Name | QDir::DirsFirst); } + else{ dirlist = dir.entryInfoList(QDir::AllEntries | QDir::NoDotAndDotDot , QDir::Name | QDir::DirsFirst); } + //Simple add routine - can make it more dynamic/selective about updating individual items later + for(int i=0; imnt.length()){ mnt = mntpoints[i]; } + } + if(QFile::exists(mnt+ZSNAPDIR)){ snapdir = mnt+ZSNAPDIR; } + else{ snapdir.clear(); } //none found + } + } + +}; + +//This class is designed to be run in a background thread and get all the necessary info for a directory listing +class DirData : public QObject{ + Q_OBJECT +private: + QHash HASH; //Where we cache any info for rapid access later + +signals: + void DirDataAvailable(QString, QString, LFileInfoList); //[ID, Dirpath, DATA] + void SnapshotDataAvailable(QString, QString, QStringList); //[ID, BaseSnapDir, SnapNames] + +public: + //Variables + bool showHidden; //Whether hidden files/dirs should be output + bool zfsavailable; //Whether it should even bother looking for ZFS snapshots + bool pauseData; //When paused - this will ignore any requests for information (need to manually refresh browsers after unpause) + + //Functions + DirData(){ + showHidden = false; + zfsavailable = false; + pauseData = false; + } + ~DirData(){} + +public slots: + void GetDirData(QString ID, QString dirpath){ + return; + if(pauseData){ return; } + if(DIR_DEBUG){ qDebug() << "GetDirData:" << ID << dirpath; } + //The ID is used when returning the info in a moment + //Make sure to use the canonical path in the HASH search - don't use + QString canon = QFileInfo(dirpath).canonicalFilePath(); + if(!HASH.contains(canon)){ + //New directory (not previously loaded) + LDirInfoList info(canon); + info.update(showHidden); + HASH.insert(canon, info); + }else{ + //See if the saved info needs to be updated + //if( (HASH.value(canon).hashidden != showHidden) || (QFileInfo(canon).lastModified() > HASH.value(canon).lastcheck) ){ + HASH[canon].update(showHidden); + //} + } + if(DIR_DEBUG){ qDebug() << " -- Dir Data Found:" << ID << dirpath << HASH.value(canon).list.length(); } + emit DirDataAvailable(ID, dirpath, HASH.value(canon).list); + } + + void GetSnapshotData(QString ID, QString dirpath){ + if(pauseData){ return; } + if(DIR_DEBUG){ qDebug() << "GetSnapshotData:" << ID << dirpath; } + QString base; QStringList snaps; + //Only check if ZFS is flagged as available + if(zfsavailable){ + //First find if the hash already has an entry for this directory + if(!HASH.contains(dirpath)){ + LDirInfoList info(dirpath); + HASH.insert(dirpath,info); + } + //Now see if a snapshot directory has already been located + if(HASH.value(dirpath).snapdir.isEmpty()){ + HASH[dirpath].findSnapDir(); + } + //Now read off all the available snapshots + if(HASH.value(dirpath).snapdir != "-" && !HASH.value(dirpath).snapdir.isEmpty()){ + //Good snapshot directory found - read off the current snapshots (can change regularly - don't cache this) + base = HASH.value(dirpath).snapdir; + QDir dir(base); + QString canon = QFileInfo(dirpath).canonicalFilePath(); + QString dcanon = QString(dir.canonicalPath()+"/").section(ZSNAPDIR,0,0); + QString relpath = canon.section( dcanon+"/" ,-1); + //qDebug() << "Snapshot Dir:" << base << dcanon << "Dir:" << dirpath << canon << "Relpath:" << relpath; + snaps = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::Time |QDir::Reversed ); + //Also remove any "empty" snapshots (might be leftover by tools like "zfsnap") + for(int i=0; i newest + } + + } + //if(DIR_DEBUG){ qDebug() << " -- Snap Data Found:" << ID << base << snaps; } + if(!base.isEmpty() && !snaps.isEmpty()){ + emit SnapshotDataAvailable(ID, base, snaps); + } + } + +}; + +#endif diff --git a/src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp b/src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp new file mode 100644 index 00000000..0d04b912 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp @@ -0,0 +1,387 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2014, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#include "FODialog.h" +#include "ui_FODialog.h" + +#include +#include + +#include + +#define DEBUG 0 + +FODialog::FODialog(QWidget *parent) : QDialog(parent), ui(new Ui::FODialog){ + ui->setupUi(this); //load the designer file + ui->label->setText(tr("Calculating")); + ui->progressBar->setVisible(false); + ui->push_stop->setIcon( LXDG::findIcon("edit-delete","") ); + WorkThread = new QThread(); + Worker = new FOWorker(); + connect(Worker, SIGNAL(startingItem(int,int,QString,QString)), this, SLOT(UpdateItem(int,int,QString,QString)) ); + connect(Worker, SIGNAL(finished(QStringList)), this, SLOT(WorkDone(QStringList)) ); + Worker->moveToThread(WorkThread); + WorkThread->start(); + + //Make sure this dialog is centered on the parent + if(parent!=0){ + QPoint ctr = parent->mapToGlobal(parent->geometry().center()); + this->move( ctr.x()-(this->width()/2), ctr.y()-(this->height()/2) ); + } + this->show(); +} + +FODialog::~FODialog(){ + Worker->stopped = true; //just in case it might still be running when closed + WorkThread->quit(); + WorkThread->wait(); + delete Worker; + //delete WorkThread; +} + +void FODialog::setOverwrite(bool ovw){ + if(ovw){ Worker->overwrite = 1; } + else{ Worker->overwrite = 0; } +} + +//Public "start" functions +bool FODialog::RemoveFiles(QStringList paths){ + Worker->ofiles = paths; + Worker->isRM = true; + if(CheckOverwrite()){ + QTimer::singleShot(10,Worker, SLOT(slotStartOperations())); + return true; + }else{ + this->close(); + return false; + } +} + +bool FODialog::CopyFiles(QStringList oldPaths, QStringList newPaths){ + //same permissions as old files + if(oldPaths.length() == newPaths.length()){ + Worker->ofiles = oldPaths; + Worker->nfiles = newPaths; + } + Worker->isCP=true; + if(CheckOverwrite()){ + QTimer::singleShot(10,Worker, SLOT(slotStartOperations())); + return true; + }else{ + this->close(); + return false; + } +} + +bool FODialog::RestoreFiles(QStringList oldPaths, QStringList newPaths){ + //user/group rw permissions + if(oldPaths.length() == newPaths.length()){ + Worker->ofiles = oldPaths; + Worker->nfiles = newPaths; + } + Worker->isRESTORE = true; + if(CheckOverwrite()){ + QTimer::singleShot(10,Worker, SLOT(slotStartOperations())); + return true; + }else{ + this->close(); + return false; + } +} + +bool FODialog::MoveFiles(QStringList oldPaths, QStringList newPaths){ + //no change in permissions + if(oldPaths.length() == newPaths.length()){ + Worker->ofiles = oldPaths; + Worker->nfiles = newPaths; + } + Worker->isMV=true; + if(CheckOverwrite()){ + QTimer::singleShot(10,Worker, SLOT(slotStartOperations())); + return true; + }else{ + this->close(); + return false; + } +} + +bool FODialog::CheckOverwrite(){ + bool ok = true; + //Quick check that a file is not supposed to be moved/copied/restored onto itself + if(!Worker->isRM){ + for(int i=0; infiles.length(); i++){ + if(Worker->nfiles[i] == Worker->ofiles[i]){ + //duplicate - remove it from the queue + Worker->nfiles.removeAt(i); Worker->ofiles.removeAt(i); + i--; + } + } + } + if(!Worker->isRM && Worker->overwrite==-1){ + //Check if the new files already exist, and prompt for action + QStringList existing; + for(int i=0; infiles.length(); i++){ + if(QFile::exists(Worker->nfiles[i])){ existing << Worker->nfiles[i].section("/",-1); } + } + if(!existing.isEmpty()){ + //Prompt for whether to overwrite, not overwrite, or cancel + QMessageBox dialog(QMessageBox::Question, tr("Overwrite Files?"), tr("Do you want to overwrite the existing files?")+"\n"+tr("Note: It will just add a number to the filename otherwise.")+"\n\n"+existing.join(", "), QMessageBox::YesToAll | QMessageBox::NoToAll | QMessageBox::Cancel, this); + + dialog.setButtonText(QMessageBox::YesToAll, tr("YesToAll")); + dialog.setButtonText(QMessageBox::NoToAll, tr("NoToAll")); + dialog.setButtonText(QMessageBox::Cancel, tr("Cancel")); + dialog.setDefaultButton(QMessageBox::NoToAll); + const int ans = dialog.exec(); + if(ans==QMessageBox::NoToAll){ Worker->overwrite = 0; } //don't overwrite + else if(ans==QMessageBox::YesToAll){ Worker->overwrite = 1; } //overwrite + else{ qDebug() << " - Cancelled"; Worker->overwrite = -1; ok = false; } //cancel operations + if(DEBUG){ qDebug() << " - Overwrite:" << Worker->overwrite; } + } + } + QApplication::processEvents(); + QApplication::processEvents(); + return ok; +} + +void FODialog::UpdateItem(int cur, int tot, QString oitem, QString nitem){ + ui->progressBar->setRange(0,tot); + ui->progressBar->setValue(cur); + ui->progressBar->setVisible(true); + QString msg; + if(Worker->isRM){ msg = tr("Removing: %1"); } + else if(Worker->isCP){ msg = tr("Copying: %1 to %2"); } + else if(Worker->isRESTORE){ msg = tr("Restoring: %1 as %2"); } + else if(Worker->isMV){ msg = tr("Moving: %1 to %2"); } + if(msg.contains("%2")){ + msg = msg.arg(oitem.section("/",-1), nitem.section("/",-1)); + }else{ + msg = msg.arg(oitem.section("/",-1)); + } + msg = ui->label->fontMetrics().elidedText(msg, Qt::ElideRight, ui->label->width()); + ui->label->setText( msg ); +} + +void FODialog::WorkDone(QStringList errlist){ + if(!errlist.isEmpty()){ + QString msg; + if(Worker->isRM){ msg = tr("Could not remove these files:"); } + else if(Worker->isCP){ msg = tr("Could not copy these files:"); } + else if(Worker->isRESTORE){ msg = tr("Could not restore these files:"); } + else if(Worker->isMV){ msg = tr("Could not move these files:"); } + ScrollDialog dlg(this); + dlg.setWindowTitle(tr("File Errors")); + dlg.setText( msg+"\n\n"+errlist.join("\n") ); + dlg.exec(); + } + noerrors = errlist.isEmpty(); + this->close(); +} + +void FODialog::on_push_stop_clicked(){ + Worker->stopped = true; +} + +// =================== +// ==== FOWorker Class ==== +// =================== +QStringList FOWorker::subfiles(QString dirpath, bool dirsfirst){ + //NOTE: dirpath (input) is always the first/last item in the output as well! + QStringList out; + if(dirsfirst){ out << dirpath; } + if( QFileInfo(dirpath).isDir() ){ + QDir dir(dirpath); + if(dirsfirst){ + //Now recursively add any subdirectories and their contents + QStringList subdirs = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot | QDir::Hidden, QDir::NoSort); + for(int i=0; i - + ---Calculating--- ---Skaičiuojama--- - + Read/Write Skaityti/Rašyti - + Read Only TIk skaityti - + Write Only Tik rašyti - + No Access Nėra prieigos - + XDG Shortcut XDG šaukinys - + Directory Katalogas - + Binary Dvejetainė - + Hidden %1 Paslėptas %1 - + URL: URL: - + Save Application File Įrašyti programos failą - + Application Registrations (*.desktop) Programų įrašai (*.desktop) - + Select a binary Pasirinkti dvejetainę - + Error Klaida - + Invalid selection: Not a valid executable Neteisingas pasirinkimas: Neteisingas vykdomasis - + Select a directory Pasirinkti katalogą - + Select an icon Pasirinkti piktogramą - + Images (%1);; All Files (*) Paveikslai (%1);; Visi failai (*) - - + + Folders: Aplankai: - - + + Files: Failai: - + Calculating... Skaičiuojama... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lv.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lv.ts index 9a2d2362..cdd3c3bd 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lv.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lv.ts @@ -6,7 +6,7 @@ - + File Information Informācija par failu @@ -57,7 +57,7 @@ - + Edit Shortcut Labot saīsni @@ -117,111 +117,179 @@ Aizvērt - + ---Calculating--- ---Izskaitļo--- - + Read/Write Lasīt/Rakstīt - + Read Only Tikai lasīt - + Write Only Tikai rakstīt - + No Access Nav piekļuves - + XDG Shortcut XDG saīsne - + Directory Katalogs - + Binary Binārs - + Hidden %1 Paslēpts %1 - + URL: URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary Izvēlieties bināru - + Error Kļūda - + Invalid selection: Not a valid executable Nederīga izvēle: Nav izpildāms - + Select a directory Izvēlieties katalogu - + Select an icon Izvēlieties ikonu - + Images (%1);; All Files (*) Attēli (%1);; Visi faili (*) - - + + Folders: Mapes: - - + + Files: Faili: - + Calculating... Aprēķina... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mk.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mk.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mk.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mk.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mn.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mn.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mn.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mn.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ms.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ms.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ms.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ms.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mt.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mt.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mt.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mt.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nb.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nb.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nb.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nb.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nl.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nl.ts index 1ae0d6c8..b46aa12b 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nl.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nl.ts @@ -6,7 +6,7 @@ - + File Information Bestandsinformatie @@ -57,7 +57,7 @@ - + Edit Shortcut Sneltoets bewerken @@ -117,111 +117,179 @@ Sluiten - + ---Calculating--- ---Bezig met berekenen--- - + Read/Write Lezen/Schrijven - + Read Only Alleen-lezen - + Write Only Alleen-schrijven - + No Access Geen toegang - + XDG Shortcut XDG-sneltoets - + Directory Map - + Binary Uitvoerbaar bestand - + Hidden %1 Verborgen %1 - + URL: URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary Selecteer een uitvoerbaar bestand - + Error Fout - + Invalid selection: Not a valid executable Ongeldige selectie: ongeldig uitvoerbaar bestand - + Select a directory Selecteer een map - + Select an icon Selecteer een pictogram - + Images (%1);; All Files (*) Afbeeldingen (%1);; Alle bestanden (*) - - + + Folders: Mappen: - - + + Files: Bestanden: - + Calculating... Bezig met berekenen... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pa.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pa.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pa.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pa.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pl.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pl.ts index cb00f0df..4b573e43 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pl.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pl.ts @@ -6,7 +6,7 @@ - + File Information Informacje o pliku @@ -57,7 +57,7 @@ - + Edit Shortcut Edytuj skrót @@ -117,112 +117,180 @@ Zamknij - + ---Calculating--- moze szacowanie bedzie lepsze? ---Obliczanie--- - + Read/Write odczyt/zapis - + Read Only Tylko do odczytu - + Write Only Tylko do zapisu - + No Access Brak dostępu - + XDG Shortcut Skrót XDG - + Directory Katalog - + Binary Plik binarny - + Hidden %1 Ukryty %1 - + URL: URL: - + Save Application File Zapisz plik aplikacji - + Application Registrations (*.desktop) Rejestracje aplikacji (*.desktop) - + Select a binary Wybierz plik binarny - + Error Błąd - + Invalid selection: Not a valid executable Nieprawidłowy wybór: To nie jest prawidłowy plik binarny - + Select a directory Wybierz katalog - + Select an icon Wybierz ikonę - + Images (%1);; All Files (*) Obrazy (%1);; Wszystkie pliki (*) - - + + Folders: Katalogi: - - + + Files: Pliki: - + Calculating... Szacowanie... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts index f570ff9f..b29fc41b 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts @@ -6,7 +6,7 @@ - + File Information Informações do arquivo @@ -57,7 +57,7 @@ - + Edit Shortcut Editar atalho @@ -117,111 +117,179 @@ Fechar - + ---Calculating--- ---Calculando--- - + Read/Write Leitura/Escrita - + Read Only Somente leitura - + Write Only Somente escrita - + No Access Sem acesso - + XDG Shortcut Atalho XDG - + Directory Diretório - + Binary Binário - + Hidden %1 Ocultar %1 - + URL: URL: - + Save Application File Salvar arquivo de aplicativo - + Application Registrations (*.desktop) Registros de aplicativos (* .desktop) - + Select a binary Selecionar um binário - + Error Erro - + Invalid selection: Not a valid executable Seleção inválida: Não é um executável válido - + Select a directory Selecionar um diretório - + Select an icon Selecionar um ícone - + Images (%1);; All Files (*) Imagens (%1);; Todos os arquivos (*) - - + + Folders: Pasta: - - + + Files: Arquivos: - + Calculating... Calculando... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ro.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ro.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ro.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ro.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ru.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ru.ts index 833dfdf2..d61edff4 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ru.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ru.ts @@ -6,7 +6,7 @@ - + File Information Информация о Файле @@ -57,7 +57,7 @@ - + Edit Shortcut Изменить ссылку @@ -117,111 +117,179 @@ Закрыть - + ---Calculating--- ---Вычисление--- - + Read/Write Чтение/Запись - + Read Only Только чтение - + Write Only Только запись - + No Access Нет доступа - + XDG Shortcut XDG ссылка - + Directory Папка - + Binary Бинарный - + Hidden %1 Скрытый %1 - + URL: URL: - + Save Application File Сохранить файл приложения - + Application Registrations (*.desktop) Регистрация приложения (* .desktop) - + Select a binary Выбрать бинарный - + Error Ошибка - + Invalid selection: Not a valid executable Неверный выбор: Не является выполняемым - + Select a directory Выбрать каталог - + Select an icon Выбрать иконку - + Images (%1);; All Files (*) Изображений (%1);; Все файлы (*) - - + + Folders: Папки: - - + + Files: Файлы: - + Calculating... Вычисление... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sk.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sk.ts index cfaf1625..f2ee6480 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sk.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sk.ts @@ -6,7 +6,7 @@ - + File Information Informácia o súbore @@ -57,7 +57,7 @@ - + Edit Shortcut Upraviť skratky @@ -117,111 +117,179 @@ Zatvoriť - + ---Calculating--- --Vypocitavanie-- - + Read/Write Čítanie/Zápis - + Read Only Len na čítanie - + Write Only Len na zápis - + No Access Žiadny prístup - + XDG Shortcut XDG skratka - + Directory Priečinok - + Binary Binárny - + Hidden %1 Skrytý %1 - + URL: URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary Vyberte binárny - + Error Chyba - + Invalid selection: Not a valid executable Neplatný výber: nemožno ho spustiť - + Select a directory Vyberte priečinok - + Select an icon Vyberte ikonu - + Images (%1);; All Files (*) Obrázky (%1);;Všetky súbory (*) - - + + Folders: Priečinok: - - + + Files: Súbory: - + Calculating... Vypočítava sa... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sl.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sl.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sl.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sl.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sr.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sr.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sr.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sr.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sv.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sv.ts index 411d69bb..0bde9b12 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sv.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sv.ts @@ -6,7 +6,7 @@ - + File Information Filinformation @@ -57,7 +57,7 @@ - + Edit Shortcut Redigera genväg @@ -117,111 +117,179 @@ Stäng - + ---Calculating--- ---Beräknar--- - + Read/Write Läs/Skriv - + Read Only Skrivskyddad - + Write Only Endast skriva - + No Access Ingen åtkomst - + XDG Shortcut XDG Genväg - + Directory Katalog - + Binary Binär - + Hidden %1 Dold %1 - + URL: URL: - + Save Application File Spara programfil - + Application Registrations (*.desktop) Applikationsregistreringar (*.desktop) - + Select a binary Välj en binär - + Error Fel - + Invalid selection: Not a valid executable Ogiltigt val: Inte giltig körbar fil - + Select a directory Välj en katalog - + Select an icon Välj en ikon - + Images (%1);; All Files (*) Bilder (%1);; Alla filer (*) - - + + Folders: Mappar: - - + + Files: Filer: - + Calculating... Beräknar... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sw.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sw.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sw.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sw.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ta.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ta.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ta.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ta.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tg.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tg.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tg.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tg.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_th.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_th.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_th.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_th.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tr.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tr.ts index 01ee9c4c..0bbceba7 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tr.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tr.ts @@ -6,7 +6,7 @@ - + File Information Dosya Bilgisi @@ -57,7 +57,7 @@ - + Edit Shortcut Kısayolu Düzenle @@ -117,111 +117,179 @@ Kapat - + ---Calculating--- ---Hesaplanıyor--- - + Read/Write Oku/Yaz - + Read Only Salt Okunur - + Write Only Salt Yazılır - + No Access Erişim yok - + XDG Shortcut XDG Kısayolu - + Directory Dizin - + Binary İkili - + Hidden %1 Gizli %1 - + URL: URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary Bir ikili seç - + Error Hata - + Invalid selection: Not a valid executable Geçersiz seçim: Geçerli bir yürütülebilir değil - + Select a directory Bir dizin seç - + Select an icon Bir simge seç - + Images (%1);; All Files (*) Görüntüler (%1);; Tüm Dosyalar (*) - - + + Folders: Klasörler: - - + + Files: Dosyalar: - + Calculating... Hesaplanıyor... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uk.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uk.ts index 949c517d..fd19ed3f 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uk.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uk.ts @@ -6,7 +6,7 @@ - + File Information Інформація про файл @@ -57,7 +57,7 @@ - + Edit Shortcut Редагувати скорочення @@ -117,111 +117,179 @@ Закрити - + ---Calculating--- --- Обчислення --- - + Read/Write Читання/запис - + Read Only Лише для читання - + Write Only Лише запис - + No Access Немає доступу - + XDG Shortcut XDG адреса - + Directory Тека - + Binary Двійковий - + Hidden %1 Прихований %1 - + URL: URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary Вибрати бінарний - + Error Помилка - + Invalid selection: Not a valid executable Некоректний вибір: Не є виконуваним - + Select a directory Виберіть каталог - + Select an icon Вибрати піктограму - + Images (%1);; All Files (*) Зображень (%1);; Всі файли (*) - - + + Folders: Папки: - - + + Files: Файли: - + Calculating... Обчислення... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uz.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uz.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uz.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uz.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_vi.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_vi.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_vi.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_vi.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts index 93f1e889..4c0220d6 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts @@ -6,7 +6,7 @@ - + File Information 文件信息 @@ -57,7 +57,7 @@ - + Edit Shortcut 编辑快捷方式 @@ -117,111 +117,179 @@ 关闭 - + ---Calculating--- ---计算中--- - + Read/Write 读/写 - + Read Only 只读 - + Write Only 只写 - + No Access 无访问权 - + XDG Shortcut XDG 快捷方式 - + Directory 目录 - + Binary 二进制文件 - + Hidden %1 隐藏 %1 - + URL: URL: - + Save Application File 保存应用程序文件 - + Application Registrations (*.desktop) 应用注册 (*.desktop) - + Select a binary 选择一个程序 - + Error 错误 - + Invalid selection: Not a valid executable 无效选择: 不是可执行文件 - + Select a directory 选择目录 - + Select an icon 选择图标 - + Images (%1);; All Files (*) 图像 (%1);; 所有文件 (*) - - + + Folders: 目录: - - + + Files: 文件: - + Calculating... 计算中... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zu.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zu.ts index 92593090..0d2ad9fc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zu.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zu.ts @@ -6,7 +6,7 @@ - + File Information @@ -57,7 +57,7 @@ - + Edit Shortcut @@ -117,111 +117,179 @@ - + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + Save Application File - + Application Registrations (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Folders: - - + + Files: - + Calculating... + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts index 01f84c54..c39affbf 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Мултимедия + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts index 27835dd5..bcf3719f 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts @@ -165,7 +165,7 @@ Select Action - Seleccioneu l'acció + Seleccioneu l'acció @@ -175,7 +175,7 @@ Single column view - Vista d'una columna + Vista d'una columna @@ -213,7 +213,7 @@ The document could not be created. Please ensure that you have the proper permissions. - No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. + No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. @@ -267,7 +267,7 @@ The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. + No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. @@ -292,7 +292,7 @@ Application Launcher - Llançador d'aplicacions + Llançador d'aplicacions @@ -346,8 +346,8 @@ - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. @@ -415,7 +415,7 @@ Note: It will just add a number to the filename otherwise. - Nota: si no, només s'afegirà un número al nom del fitxer. + Nota: si no, només s'afegirà un número al nom del fitxer. @@ -455,22 +455,22 @@ Could not remove these files: - No s'han pogut suprimir aquests fitxers: + No s'han pogut suprimir aquests fitxers: Could not copy these files: - No s'han pogut copiar aquests fitxers: + No s'han pogut copiar aquests fitxers: Could not restore these files: - No s'han pogut restaurar aquests fitxers: + No s'han pogut restaurar aquests fitxers: Could not move these files: - No s'han pogut moure aquests fitxers: + No s'han pogut moure aquests fitxers: @@ -491,7 +491,7 @@ Old Location: %1 New Location: %2 - No és possible moure un directori a dins de si mateix. Si us plau, en comptes d'això, feu-ne una còpia. + No és possible moure un directori a dins de si mateix. Si us plau, en comptes d'això, feu-ne una còpia. Localització antiga: %1 Localització nova: %2 @@ -512,7 +512,7 @@ Localització nova: %2 This wizard will guide you through the process of downloading a GIT repository from the internet. - Aquest assistent us guiarà a través del procés de baixada d'un repositori GIT des d'Internet. + Aquest assistent us guiarà a través del procés de baixada d'un repositori GIT des d'Internet. @@ -537,7 +537,7 @@ Localització nova: %2 Type of Access - Tipus d'accés + Tipus d'accés @@ -552,7 +552,7 @@ Localització nova: %2 Username - Nom d'usuari + Nom d'usuari @@ -591,8 +591,8 @@ Localització nova: %2 - Click "Next" to start downloading the repository - Cliqueu a "Següent" per començar a baixar el repositori + Click "Next" to start downloading the repository + Cliqueu a "Següent" per començar a baixar el repositori @@ -640,7 +640,7 @@ Localització nova: %2 Bookmarks - Adreces d'interès + Adreces d'interès @@ -665,7 +665,7 @@ Localització nova: %2 Show Image Previews - Mostra previsualitzacions d'imatges + Mostra previsualitzacions d'imatges @@ -715,7 +715,7 @@ Localització nova: %2 Add Bookmark - Afegeix una adreça d'interès + Afegeix una adreça d'interès @@ -755,12 +755,12 @@ Localització nova: %2 Show Directory Tree Window - Mostra la finestra de l'arbre de directoris + Mostra la finestra de l'arbre de directoris Show Directory Tree Pane - Mostra el plafó de l'arbre de directoris + Mostra el plafó de l'arbre de directoris @@ -800,12 +800,12 @@ Localització nova: %2 Manage Bookmarks - Gestiona les adreces d'interès / marcadors + Gestiona les adreces d'interès / marcadors Show Action Buttons - Mostra els botons d'acció + Mostra els botons d'acció @@ -880,7 +880,7 @@ Localització nova: %2 The following directories are invalid and could not be opened: - Els directoris següents no són vàlids i no s'han pogut obrir: + Els directoris següents no són vàlids i no s'han pogut obrir: @@ -910,7 +910,7 @@ Localització nova: %2 New Bookmark - Adreça d'interès nova + Adreça d'interès nova @@ -925,7 +925,7 @@ Localització nova: %2 This bookmark name already exists. Please choose another. - Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. + Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. @@ -1077,7 +1077,7 @@ Localització nova: %2 File Operation Errors - Errors d'operacions de fitxers + Errors d'operacions de fitxers @@ -1100,17 +1100,17 @@ Localització nova: %2 Delete this image file - Suprimeix aquest fitxer d'imatge + Suprimeix aquest fitxer d'imatge Rotate this image file counter-clockwise - Gira aquest fitxer d'imatge cap a l'esquerra + Gira aquest fitxer d'imatge cap a l'esquerra Rotate this image file clockwise - Gira aquest fitxer d'imatge cap a la dreta + Gira aquest fitxer d'imatge cap a la dreta @@ -1203,7 +1203,7 @@ Localització nova: %2 Errors during operation. Click to view details - Hi ha hagut errors durant l'operació. Cliqueu per veure'n els detalls. + Hi ha hagut errors durant l'operació. Cliqueu per veure'n els detalls. @@ -1211,4 +1211,72 @@ Localització nova: %2 Tasques noves en execució + + XDGDesktopList + + + Multimedia + Multimèdia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts index 0bf26f10..2adb8520 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts @@ -346,8 +346,8 @@ - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. @@ -591,7 +591,7 @@ Nové umístění: %2 - Click "Next" to start downloading the repository + Click "Next" to start downloading the repository Kliknutím na Další zahajte stahování repozitáře @@ -1211,4 +1211,72 @@ Nové umístění: %2 Nové spuštěné úlohy + + XDGDesktopList + + + Multimedia + Multimédia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts index 57665f08..4e44fbf2 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts @@ -1211,4 +1211,72 @@ Ny placering: %2 Nye opgaver kører + + XDGDesktopList + + + Multimedia + Multimedie + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts index 17c20b94..12a38e93 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts @@ -1212,4 +1212,72 @@ Neue Position: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts index 9c61a20b..cab8c065 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts index 71f0e09f..6202ce7a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts index 6217b683..a7dfe78f 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts index f1146216..b0e7a352 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts @@ -1211,4 +1211,72 @@ Ubicación Nueva: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts index 8c352b94..e0d22943 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts @@ -1211,4 +1211,72 @@ Uus asukoht: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts index 23ad4778..54400caa 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts index 958f7e2d..a431b362 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts @@ -1211,4 +1211,72 @@ Uusi sijainti: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts index b83a3ad8..ffd4db08 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimédia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts index 94cd402e..6d09647f 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts @@ -1209,4 +1209,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts index fcbed9b7..ab296089 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + मल्टीमीडिया + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts index f19279cb..8e910698 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimédia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts index 7b4f5219..bdc27e29 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts index 91baeaa3..a3a23c77 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts @@ -1211,4 +1211,72 @@ Nuova posizione: %2 + + XDGDesktopList + + + Multimedia + Multimediale + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts index c4801995..3ccd5e92 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts @@ -1228,4 +1228,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + マルチメディア + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts index 7ee47599..fe4c0c2f 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + 멀티미디어 + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts index 239d94be..91e2ad2d 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts @@ -1211,4 +1211,72 @@ Nauja vieta: %2 Vykdomos naujos užduotys + + XDGDesktopList + + + Multimedia + Multimedija + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts index 405d5afd..2428ba71 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts @@ -1211,4 +1211,72 @@ Jaunā atrašanās vieta: %2 + + XDGDesktopList + + + Multimedia + Multivide + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts index 0d82faeb..cc1be904 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts @@ -1211,4 +1211,72 @@ Nieuwe locatie: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts index f4edfae9..c9ffa17d 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts @@ -1211,4 +1211,72 @@ Nowa lokalizacja: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts index ce01b030..5c462489 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts @@ -1211,4 +1211,72 @@ Nova Localização: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts index c1b06d8e..4020e80f 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts @@ -346,8 +346,8 @@ - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - O "lumina-fileinfo" não pode ser encontrado no sistema. Por favor, instale-o... + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + O "lumina-fileinfo" não pode ser encontrado no sistema. Por favor, instale-o... @@ -591,8 +591,8 @@ Nova Localização: %2 - Click "Next" to start downloading the repository - Clique em "Avançar" para iniciar o download do repositório + Click "Next" to start downloading the repository + Clique em "Avançar" para iniciar o download do repositório @@ -1211,4 +1211,72 @@ Nova Localização: %2 + + XDGDesktopList + + + Multimedia + Multimídia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts index f7bf3f77..4ac45482 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts @@ -1210,4 +1210,72 @@ New Location: %2 Выполнение новых задач + + XDGDesktopList + + + Multimedia + Мультимедиа + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts index 684d755e..691e2413 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimédiá + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts index c4c087ad..35940ec0 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts @@ -1211,4 +1211,72 @@ Ny Plats: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts index 74629e4c..4cbe9ccc 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts @@ -1211,4 +1211,72 @@ Yeni Konum: %2 + + XDGDesktopList + + + Multimedia + Multimedya + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts index 3909fd90..b7ef7f8d 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Мультимедіа + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts index cf8e4d81..665d9fd5 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts @@ -1221,4 +1221,72 @@ New Location: %2 新任务运行中 + + XDGDesktopList + + + Multimedia + 多媒体 + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts index bd5171d2..fe0d752a 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_af.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_af.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_af.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_af.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_az.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_az.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_az.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_az.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts index 01f84c54..de983a8f 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Назад - - + + Go back to previous directory Връщане към предишната директория - + Up Нагоре - - + + Go to parent directory Отиване в родителската директория - + Home Домашна директория - - + + Go to home directory Отиване в домашната директория - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Ограничен достъп) - - + + New Document Нов документ - - - + + + Name: Име: - + Error Creating Document Грешка при създаване на документа - + The document could not be created. Please ensure that you have the proper permissions. Документа не може да бъде създаден. Моля, уверете се, че разполагате с необходимите права. - + New Directory Нова директория - - - + + + Invalid Name Неправилно име - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл или директория с това име вече съществува! Моля, изберете друго име. - + Error Creating Directory Грешка при създаване на директория - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Директорията не може да бъде създадена. Моля, уверете се, че разполагате с необходимите права да променяте текущата директория. - + Current Текуща - + Create... - + File Файл - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Контролни суми на файла: - + Missing Utility Липсващ инструмент - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Инструментът "lumina-fileinfo" не може да бъде намерен на системата. Моля, първо го инсталирайте. - + Open Отваряне - + Rename... Преименуване... - + Cut Selection Изрязване на избраното - + Copy Selection Копиране на избраното - + Paste Поставяне - + Delete Selection Изтриване на избраното @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Мултимедия + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts index 27835dd5..68d32404 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts @@ -120,262 +120,262 @@ Augmenta la mida de les icones - + Decrease Icon Sizes Disminueix la mida de les icones - + Back Enrere - - + + Go back to previous directory Torna al directori anterior - + Up Amunt - - + + Go to parent directory Vés al directori principal - + Home Inici - - + + Go to home directory Vés al directori principal - + Menu Menú - + Select Action - Seleccioneu l'acció + Seleccioneu l'acció - + Single Column Columna simple - + Single column view - Vista d'una columna + Vista d'una columna - + Dual Column Dues columnes - + Dual Column View Vista de dues columnes - + (Limited Access) (Accés limitat) - - + + New Document Document nou - - - + + + Name: Nom: - + Error Creating Document Error en crear el document - + The document could not be created. Please ensure that you have the proper permissions. - No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. + No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. - + New Directory Directori nou - - - + + + Invalid Name El nom no és vàlid - + File Operations Operacions de fitxers - + Auto-Extract Extreu automàticament - + Directory Operations Operacions de directoris - + Other... Altres... - + Loading... Carregant... - - - + + + A file or directory with that name already exists! Please pick a different name. Ja existeix un fitxer o un directori amb este mateix nom, utilitzeu-ne un altre. - + Error Creating Directory Error en crear el directori - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. + No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. - + Current Actual - + Create... Crea... - + File Fitxer - + Directory Directori - + Application Launcher - Llançador d'aplicacions + Llançador d'aplicacions - + Launch... Obre... - + Terminal Terminal - + SlideShow Presentació - + Multimedia Player Reproductor multimèdia - + Open with... Obre amb... - + View Files... Mostra els fitxers... - + Checksums Sumes de verificació - + Properties Propietats - + File Checksums: Sumes de verificació del fitxer: - + Missing Utility Utilitat no present - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. - + Open Obre - + Rename... Reanomena... - + Cut Selection Talla la selecció - + Copy Selection Copia la selecció - + Paste Enganxa - + Delete Selection Suprimeix la selecció @@ -415,7 +415,7 @@ Note: It will just add a number to the filename otherwise. - Nota: si no, només s'afegirà un número al nom del fitxer. + Nota: si no, només s'afegirà un número al nom del fitxer. @@ -455,22 +455,22 @@ Could not remove these files: - No s'han pogut suprimir aquests fitxers: + No s'han pogut suprimir aquests fitxers: Could not copy these files: - No s'han pogut copiar aquests fitxers: + No s'han pogut copiar aquests fitxers: Could not restore these files: - No s'han pogut restaurar aquests fitxers: + No s'han pogut restaurar aquests fitxers: Could not move these files: - No s'han pogut moure aquests fitxers: + No s'han pogut moure aquests fitxers: @@ -491,7 +491,7 @@ Old Location: %1 New Location: %2 - No és possible moure un directori a dins de si mateix. Si us plau, en comptes d'això, feu-ne una còpia. + No és possible moure un directori a dins de si mateix. Si us plau, en comptes d'això, feu-ne una còpia. Localització antiga: %1 Localització nova: %2 @@ -512,7 +512,7 @@ Localització nova: %2 This wizard will guide you through the process of downloading a GIT repository from the internet. - Aquest assistent us guiarà a través del procés de baixada d'un repositori GIT des d'Internet. + Aquest assistent us guiarà a través del procés de baixada d'un repositori GIT des d'Internet. @@ -537,7 +537,7 @@ Localització nova: %2 Type of Access - Tipus d'accés + Tipus d'accés @@ -552,7 +552,7 @@ Localització nova: %2 Username - Nom d'usuari + Nom d'usuari @@ -591,8 +591,8 @@ Localització nova: %2 - Click "Next" to start downloading the repository - Cliqueu a "Següent" per començar a baixar el repositori + Click "Next" to start downloading the repository + Cliqueu a "Següent" per començar a baixar el repositori @@ -640,7 +640,7 @@ Localització nova: %2 Bookmarks - Adreces d'interès + Adreces d'interès @@ -665,7 +665,7 @@ Localització nova: %2 Show Image Previews - Mostra previsualitzacions d'imatges + Mostra previsualitzacions d'imatges @@ -715,7 +715,7 @@ Localització nova: %2 Add Bookmark - Afegeix una adreça d'interès + Afegeix una adreça d'interès @@ -755,12 +755,12 @@ Localització nova: %2 Show Directory Tree Window - Mostra la finestra de l'arbre de directoris + Mostra la finestra de l'arbre de directoris Show Directory Tree Pane - Mostra el plafó de l'arbre de directoris + Mostra el plafó de l'arbre de directoris @@ -800,12 +800,12 @@ Localització nova: %2 Manage Bookmarks - Gestiona les adreces d'interès / marcadors + Gestiona les adreces d'interès / marcadors Show Action Buttons - Mostra els botons d'acció + Mostra els botons d'acció @@ -880,7 +880,7 @@ Localització nova: %2 The following directories are invalid and could not be opened: - Els directoris següents no són vàlids i no s'han pogut obrir: + Els directoris següents no són vàlids i no s'han pogut obrir: @@ -910,7 +910,7 @@ Localització nova: %2 New Bookmark - Adreça d'interès nova + Adreça d'interès nova @@ -925,7 +925,7 @@ Localització nova: %2 This bookmark name already exists. Please choose another. - Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. + Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. @@ -1077,7 +1077,7 @@ Localització nova: %2 File Operation Errors - Errors d'operacions de fitxers + Errors d'operacions de fitxers @@ -1100,17 +1100,17 @@ Localització nova: %2 Delete this image file - Suprimeix aquest fitxer d'imatge + Suprimeix aquest fitxer d'imatge Rotate this image file counter-clockwise - Gira aquest fitxer d'imatge cap a l'esquerra + Gira aquest fitxer d'imatge cap a l'esquerra Rotate this image file clockwise - Gira aquest fitxer d'imatge cap a la dreta + Gira aquest fitxer d'imatge cap a la dreta @@ -1203,7 +1203,7 @@ Localització nova: %2 Errors during operation. Click to view details - Hi ha hagut errors durant l'operació. Cliqueu per veure'n els detalls. + Hi ha hagut errors durant l'operació. Cliqueu per veure'n els detalls. @@ -1211,4 +1211,72 @@ Localització nova: %2 Tasques noves en execució + + XDGDesktopList + + + Multimedia + Multimèdia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts index 0bf26f10..2ec6178a 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts @@ -120,262 +120,262 @@ Zvětšit velikost ikon - + Decrease Icon Sizes Zmenšit velikost ikon - + Back Zpět - - + + Go back to previous directory Zpět do předchozí složky - + Up Nahoru - - + + Go to parent directory Přejít do nadřazené složky - + Home Domů - - + + Go to home directory Přejít do domovské složky - + Menu Nabídka - + Select Action Vybrat akci - + Single Column Jeden sloupec - + Single column view Pohled s jedním sloupcem - + Dual Column Dva sloupce - + Dual Column View Pohled se dvěma sloupci - + (Limited Access) (Omezený přístup) - - + + New Document Nový dokument - - - + + + Name: Název: - + Error Creating Document Chyba při vytváření dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokument se nepodařilo vytvořit. Ověřte že máte potřebná oprávnění. - + New Directory Nová složka - - - + + + Invalid Name Neplatný název - + File Operations Operace se soubory - + Auto-Extract Automatické rozbalení - + Directory Operations Operace se složkami - + Other... Ostatní… - + Loading... Načítání… - - - + + + A file or directory with that name already exists! Please pick a different name. Soubor nebo složka se stejným názvem už existuje! Použijte jiný. - + Error Creating Directory Chyba při vytváření složky - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Složku se nepodařilo vytvořit. Ověřte že máte potřebná oprávnění k úpravám ve stávající složce. - + Current Stávající - + Create... Vytvořit… - + File Soubor - + Directory Složka - + Application Launcher Spouštěč aplikací - + Launch... Spustit… - + Terminal Terminál - + SlideShow Promítání - + Multimedia Player Přehrávač - + Open with... Otevřít s… - + View Files... Zobrazit soubory... - + Checksums Kontrolní součty - + Properties Vlastnosti - + File Checksums: Kontrolní součty souborů: - + Missing Utility Chybějící nástroj - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. - + Open Otevřít - + Rename... Přejmenovat… - + Cut Selection Vyjmout výběr - + Copy Selection Kopírovat výběr - + Paste Vložit - + Delete Selection Smazat výběr @@ -591,7 +591,7 @@ Nové umístění: %2 - Click "Next" to start downloading the repository + Click "Next" to start downloading the repository Kliknutím na Další zahajte stahování repozitáře @@ -1211,4 +1211,72 @@ Nové umístění: %2 Nové spuštěné úlohy + + XDGDesktopList + + + Multimedia + Multimédia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts index 399ec95a..a086ad6a 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts @@ -120,262 +120,262 @@ Større ikoner - + Decrease Icon Sizes Mindre ikoner - + Back Tilbage - - + + Go back to previous directory Gå tilbage til den forrige mappe - + Up Op - - + + Go to parent directory Til overmappe - + Home Hjem - - + + Go to home directory Gå til hjemmemappe - + Menu Menu - + Select Action Vælg handling - + Single Column Enkel kolonne - + Single column view Enkelkolonnevisning - + Dual Column Dobbeltkolonne - + Dual Column View Dobbeltkolonnevisning - + (Limited Access) (begrænset adgang) - - + + New Document Nyt dokument - - - + + + Name: Navn: - + Error Creating Document Kunne ikke oprette dokument - + The document could not be created. Please ensure that you have the proper permissions. Dokumentet kunne ikke oprettes. Sørg venligst for at du har de korrekte tilladelser. - + New Directory Ny mappe - - - + + + Invalid Name Ugyldigt navn - + File Operations Filhandlinger - + Auto-Extract Automatisk udpakning - + Directory Operations Mappehandlinger - + Other... Andet... - + Loading... Indlæser ... - - - + + + A file or directory with that name already exists! Please pick a different name. En fil eller mappe med det samme navn eksisterer allerede. Vælg venligst et andet navn. - + Error Creating Directory Fejl ved oprettelse af mappe - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Mappen kunne ikke oprettes. Sørg venligst for at du har de fornødne tilladelser til at ændre den aktuelle mappe. - + Current Aktuelle - + Create... Opret ... - + File Fil - + Directory Mappe - + Application Launcher Programstarter - + Launch... Start ... - + Terminal Terminal - + SlideShow Diasshow - + Multimedia Player Multimedieafspiller - + Open with... Åbn med... - + View Files... Vis filer ... - + Checksums Tjeksummer - + Properties Egenskaber - + File Checksums: Fil-tjeksummer: - + Missing Utility Manglende redskab - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Kunne ikke finde "lumina-fileinfo"-redskabet på systemet. Installér det venligst først. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Kunne ikke finde "lumina-fileinfo"-redskabet på systemet. Installér det venligst først. - + Open Åbn - + Rename... Omdøb ... - + Cut Selection Klip valgte - + Copy Selection Kopiér valgte - + Paste Indsæt - + Delete Selection Slet valgte @@ -591,8 +591,8 @@ Ny placering: %2 - Click "Next" to start downloading the repository - Klik på "Næste" for at starte download af arkivet + Click "Next" to start downloading the repository + Klik på "Næste" for at starte download af arkivet @@ -1211,4 +1211,72 @@ Ny placering: %2 Nye opgaver kører + + XDGDesktopList + + + Multimedia + Multimedie + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_de.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_de.ts index 17c20b94..40e54e96 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_de.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_de.ts @@ -121,262 +121,262 @@ Symbolgrößen erhöhen - + Decrease Icon Sizes Symbolgrößen verringern - + Back Zurück - - + + Go back to previous directory Zurück zum vorherigen Verzeichnis - + Up hoch - - + + Go to parent directory Zum übergeordneten Verzeichnis wechseln - + Home Persönlicher Ordner - - + + Go to home directory Gehe zum persönlichen Verzeichnis - + Menu Menü - + Select Action Aktion auswählen - + Single Column - + Single column view Einzelspaltenansicht - + Dual Column Doppelspalte - + Dual Column View Doppelspaltenansicht - + (Limited Access) (Beschränkter Zugriff) - - + + New Document Neues Dokument - - - + + + Name: Name: - + Error Creating Document Fehler beim Erstellen des Dokuments - + The document could not be created. Please ensure that you have the proper permissions. Das Dokument konnte nicht erstellt werden. Bitte stelle sicher, dass du die korrekten Dateirechte hast. - + New Directory Neues Verzeichnis - - - + + + Invalid Name Ungültiger Name - + File Operations Dateioperationen - + Auto-Extract - + Directory Operations Verzeichnisoperationen - + Other... - + Loading... Ladevorgang... - - - + + + A file or directory with that name already exists! Please pick a different name. Eine Datei oder ein Ordner mit diesem Namen existiert bereits! Bitte einen neuen Namen auswählen. - + Error Creating Directory Fehler beim Erstellen des Verzeichnisses - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Das Verzeichnis konnte nicht erstellt werden. Bitte sicherstellen, dass du die nötigen Rechte zum modifizieren des Verzeichnisses hast. - + Current Aktuell - + Create... Erstellen... - + File Datei - + Directory Verzeichnis - + Application Launcher Anwendungsstarter - + Launch... Starten... - + Terminal Terminal - + SlideShow - + Multimedia Player Multimedia-Abspieler - + Open with... - + View Files... Dateien ansehen... - + Checksums Prüfsummen - + Properties Eigenschaften - + File Checksums: Datei-Prüfsummen - + Missing Utility Fehlendes Dienstprogramm - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Das "lumina-fileinfo" Dienstprogramm konnte nicht gefunden werden. Bitte erst installieren. - + Open Öffnen - + Rename... Umbenennen … - + Cut Selection Auswahl ausschneiden - + Copy Selection Auswahl kopieren - + Paste Einfügen - + Delete Selection Auswahl löschen @@ -1212,4 +1212,72 @@ Neue Position: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_el.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_el.ts index 9c61a20b..a74f1ff7 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_el.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_el.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: Όνομα: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Μη έγκυρο όνομα - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File Αρχείο - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_AU.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_AU.ts index 71f0e09f..32e73d19 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_AU.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Back - - + + Go back to previous directory Go back to previous directory - + Up Up - - + + Go to parent directory Go to parent directory - + Home Home - - + + Go to home directory Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Limited Access) - - + + New Document New Document - - - + + + Name: Name: - + Error Creating Document Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. The document could not be created. Please ensure that you have the proper permissions. - + New Directory New Directory - - - + + + Invalid Name Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Current - + Create... - + File File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: File Checksums: - + Missing Utility Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Open - + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_GB.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_GB.ts index 6217b683..9edf3707 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_GB.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Back - - + + Go back to previous directory Go back to previous directory - + Up Up - - + + Go to parent directory Go to parent directory - + Home Home - - + + Go to home directory Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Limited Access) - - + + New Document New Document - - - + + + Name: Name: - + Error Creating Document Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. The document could not be created. Please ensure that you have the proper permissions. - + New Directory New Directory - - - + + + Invalid Name Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Current - + Create... - + File File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: File Checksums: - + Missing Utility Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Open - + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_ZA.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_ZA.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_ZA.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_es.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_es.ts index f1146216..09bfef7d 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_es.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_es.ts @@ -120,262 +120,262 @@ Aumentar los tamaños de iconos - + Decrease Icon Sizes Disminuir los tamaños de iconos - + Back Atrás - - + + Go back to previous directory Ir al directorio anterior - + Up Arriba - - + + Go to parent directory Ir al directorio superior - + Home Inicio - - + + Go to home directory Ir a la carpeta personal - + Menu Menú - + Select Action Elegir acción - + Single Column Única Columna - + Single column view Vista de columna única - + Dual Column Columna doble - + Dual Column View Vista de columna doble - + (Limited Access) (Acceso Limitado) - - + + New Document Nuevo Documento - - - + + + Name: Nombre: - + Error Creating Document Error Al Crear El Documento - + The document could not be created. Please ensure that you have the proper permissions. El documento no pudo ser creado. Por favor, asegúrese de tener los permisos requeridos. - + New Directory Nuevo Directorio - - - + + + Invalid Name Nombre No Válido - + File Operations Operaciones de archivo - + Auto-Extract Auto-Extraer - + Directory Operations Operaciones de directorio - + Other... Otro... - + Loading... Cargando... - - - + + + A file or directory with that name already exists! Please pick a different name. Un archivo o directorio con ese nombre ya existe! Por favor use un nombre diferente. - + Error Creating Directory Error al Crear el Directorio - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. EL directorio no pudo ser creado. Por favor asegúrese de tener los permisos requeridos para modificar el directorio actual. - + Current Actual - + Create... Crear... - + File Archivo - + Directory Directorio - + Application Launcher Aplicación Iniciador - + Launch... Iniciar... - + Terminal Terminal - + SlideShow Presentación - + Multimedia Player Reproductor Multimedia - + Open with... Abrir con... - + View Files... Ver archivos... - + Checksums Suma de verificación - + Properties Propiedades - + File Checksums: Suma de Verificación del Archivo: - + Missing Utility Utilería Faltante - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. La utilería "lumina-fileinfo" no se puede encontrar en el sistema. Por favor instálelo primero. - + Open Abrir - + Rename... Renombrar... - + Cut Selection Cortar Selección - + Copy Selection Copiar Selección - + Paste Pegar - + Delete Selection Eliminar Selección @@ -1211,4 +1211,72 @@ Ubicación Nueva: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_et.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_et.ts index 8c352b94..3706fd81 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_et.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_et.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Tagasi - - + + Go back to previous directory Mine tagasi eelmisesse kausta - + Up Üles - - + + Go to parent directory Mine ülemkausta - + Home Kodu - - + + Go to home directory Mine kodukausta - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Piiratud ligipääs) - - + + New Document Uus dokument - - - + + + Name: Nimi: - + Error Creating Document Viga dokumendi loomisel - + The document could not be created. Please ensure that you have the proper permissions. Dokumenti ei õnnestunud luua. Veendu, et selleks on olemas vastavad load. - + New Directory Uus kaust - - - + + + Invalid Name Vigane nimi - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Sama nimega fail või kaust on juba olemas. Palun kasuta mõnda teist nime. - + Error Creating Directory Viga kausta loomisel - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Kausta ei õnnestunud luua. Veendu, et selleks on olemas vastavad load. - + Current Praegune - + Create... - + File Fail - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Faili kontrollsummad: - + Missing Utility Puuduv tööriist - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Programmi "lumina-fileinfo" ei leitud. Palun paigalda see. - + Open Ava - + Rename... Nimeta ümber... - + Cut Selection Lõika valik - + Copy Selection Kopeeri valik - + Paste Aseta - + Delete Selection Kustuta valik @@ -1211,4 +1211,72 @@ Uus asukoht: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts index 23ad4778..f6980011 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: Izena: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Izen baliogabea - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts index 958f7e2d..f1d9de20 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Takaisin - - + + Go back to previous directory Palaa edelliseen kansioon - + Up Ylemmäs - - + + Go to parent directory Siirry yläkansioon - + Home Koti - - + + Go to home directory Siirry kotikansioon - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Rajallinen käyttöoikeus) - - + + New Document Uusi asiakirja - - - + + + Name: Nimi: - + Error Creating Document Virhe luotaessa asiakirjaa - + The document could not be created. Please ensure that you have the proper permissions. Asiakirjaa ei voitu luoda. Varmista, että oikeutesi ovat riittävät. - + New Directory Uusi kansio - - - + + + Invalid Name Virheellinen nimi - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Saman niminen tiedosto tai kansio on jo olemassa! Valitse toinen nimi. - + Error Creating Directory Virhe luotaessa kansiota - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Kansiota ei voitu luoda. Varmista, että sinulla on tarvittavat käyttöoikeudet nykyisen kansion muokkaamiseksi. - + Current Nykyinen - + Create... - + File Tiedosto - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Tiedoston tarkistussummat: - + Missing Utility Puuttuva työkalu - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. ”lumina-fileinfo”-työkalua ei löytynyt järjestelmästä. Asenna se ensin. - + Open Avaa - + Rename... Muuta nimeä… - + Cut Selection Leikkaa valinta - + Copy Selection Kopioi valinta - + Paste Liitä - + Delete Selection Poista valinta @@ -1211,4 +1211,72 @@ Uusi sijainti: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts index b83a3ad8..77b7ea3d 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts @@ -120,262 +120,262 @@ Augmenter les Tailles des Icônes - + Decrease Icon Sizes Diminuer les Tailles des Icônes - + Back Retour - - + + Go back to previous directory Retour au répertoire précédent - + Up Haut - - + + Go to parent directory Aller au répertoire parent - + Home Accueil - - + + Go to home directory Aller au répertoire personnel - + Menu Menu - + Select Action Sélectionnez l'Action - + Single Column Seule Colonne - + Single column view Affichage à une seule colonne - + Dual Column - + Dual Column View - + (Limited Access) (Accès limité) - - + + New Document Nouveau document - - - + + + Name: Nom: - + Error Creating Document Erreur à la création du document - + The document could not be created. Please ensure that you have the proper permissions. Le document ne peut pas être créé. Assurez vous d'avoir les permissions adéquates. - + New Directory Nouveau répertoire - - - + + + Invalid Name Nom invalide - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Un fichier ou répertoire du même nom existe déjà. Veuillez utiliser un autre nom. - + Error Creating Directory Erreur à la création du répertoire - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Le répertoire ne peut pas être créé. Veuillez vous assurer d'avoir les permissions adéquates pour modifier le répertoire actuel. - + Current Actuel - + Create... - + File Fichier - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Somme de Contrôle de Fichier: - + Missing Utility Utilitaires manquant - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. L'utilitaire "lumina-fileinfo" est introuvable. Veuillez l'installer. - + Open Ouvrir - + Rename... Renommer... - + Cut Selection Couper la sélection - + Copy Selection Copier la sélection - + Paste Coller - + Delete Selection Supprimer la sélection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimédia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr_CA.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr_CA.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr_CA.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_he.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_he.ts index 94cd402e..c2bc9d7e 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_he.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_he.ts @@ -121,262 +121,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home בית - - + + Go to home directory עבור לספריית בית - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: שם: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory ספרייה חדשה - - - + + + Invalid Name שם לא חוקי - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File קובץ - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: סכומי ביקורת קובץ: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open פתח - + Rename... שנה שם... - + Cut Selection גזור בחירה - + Copy Selection העתק בחירה - + Paste הדבק - + Delete Selection מחק בחירה @@ -1209,4 +1209,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts index fcbed9b7..94865834 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back वापस - - + + Go back to previous directory पिछली डायरेक्टरी ए वापस जाएँ - + Up ऊपर - - + + Go to parent directory मुख्य डायरेक्टरी में जाएँ - + Home होम - - + + Go to home directory होम डायरेक्टरी में जाएँ - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (सीमित पहुँच) - - + + New Document न्य डॉक्यूमेंट - - - + + + Name: नाम: - + Error Creating Document डॉक्यूमेंट बनाने में त्रुटि - + The document could not be created. Please ensure that you have the proper permissions. डॉक्यूमेंट नहीं बनाया जा सकता - + New Directory नई डायरेक्टरी - - - + + + Invalid Name अवैध नाम - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. इस नाम की फाइल या डायरेक्टरी हले से ही मौजूद है|कृपया अलग नाम चुनें| - + Error Creating Directory डायरेक्टरी निर्माण में त्रुटि - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. ये डायरेक्टरी नहीं बनाई जा सकती | कृपया पहले सुनिश्चित कर लीजिये कि आपको तत्कालीन डायरेक्टरी में बदलाव की अनुमति है या नहीं| - + Current तत्कालीन - + Create... - + File फाइल - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: फाइल अवरोध: - + Missing Utility सुविधा उपलब्ध नहीं है - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "लुमिना-फाइलइन्फो" नमक सुविधा उपकरण में नहीं है|कृपया पहले इनस्टॉल करें| - + Open खोलें - + Rename... नाम दोबारा तय... - + Cut Selection चुने हुए भाग को कट करें - + Copy Selection चुने हुए भाग को कॉपी करें - + Paste चिपकाएँ - + Delete Selection चुने हुए भाग हो डिलीट करे @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + मल्टीमीडिया + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts index f19279cb..c3254fca 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Vissza - - + + Go back to previous directory Vissza az előző könyvtárra - + Up Fel - - + + Go to parent directory Ugrás a szülő könyvtárba - + Home Saját mappa - - + + Go to home directory Ugrás a saját könyvtárba - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document Új dokumentum - - - + + + Name: Név: - + Error Creating Document Hiba a dokumentum létrehozásakor - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory Új könyvtár - - - + + + Invalid Name Érvénytelen név - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Egy ugyanilyen nevű fájl vagy könyvtár már létezik. Használjon más nevet. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Jelenlegi - + Create... - + File Fájl - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Fájl-ellenőrzőösszegek: - + Missing Utility Hiányzó segédeszköz - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. A "lumina-fileinfo" segédeszköz nem található. Kérem telepítse. - + Open Megnyitás - + Rename... Átnevezés… - + Cut Selection Kijelölés kivágása - + Copy Selection Kijelölés másolása - + Paste Beillesztés - + Delete Selection Kijelölés törlése @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimédia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_id.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_id.ts index 7b4f5219..0a16c863 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_id.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_id.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Kembali - - + + Go back to previous directory Kembali ke direktori sebelumnya - + Up Naik - - + + Go to parent directory Ke direktori atasnya - + Home Beranda - - + + Go to home directory Ke direktori home - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Akses terbatas) - - + + New Document Dokumen Baru - - - + + + Name: Nama: - + Error Creating Document Galat saat membuat dokument - + The document could not be created. Please ensure that you have the proper permissions. Dokumen tidak dapat dibuat. Pastikan bahwa Anda memiliki izin yang tepat. - + New Directory Direktori Baru - - - + + + Invalid Name Nama Tak Valid - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Sebuah berkas / direktori dengan nama yang sama sudah ada. Coba gunakan nama yang lain. - + Error Creating Directory Galat sewaktu membuat direktori - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Direktori tidak dapat dibuat. Pastikan bahwa Anda memiliki izin yang tepat untuk memodifikasi direktori saat ini. - + Current Saat Ini - + Create... - + File Berkas - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Checksum Berkas: - + Missing Utility Hilang Utilitas - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "Lumina-Fileinfo" utilitas tidak dapat ditemukan pada sistem. Silahkan install terlebih dahulu. - + Open Buka - + Rename... Ganti Nama… - + Cut Selection Potong data terpilih - + Copy Selection Salin pilihan - + Paste Pasta - + Delete Selection Hapus Seleksi @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_is.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_is.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_is.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_is.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_it.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_it.ts index 91baeaa3..f0c594a2 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_it.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_it.ts @@ -120,262 +120,262 @@ Aumentare le dimensioni Icona - + Decrease Icon Sizes Ridurre le dimensioni Icona - + Back Indietro - - + + Go back to previous directory Torna alla directory precedente - + Up Su - - + + Go to parent directory Vai alla directory superiore - + Home Home - - + + Go to home directory Vai alla Home directory - + Menu Menù - + Select Action Selezionare Azione - + Single Column - + Single column view Vista colonna singola - + Dual Column Colonna doppia - + Dual Column View Vista colonna doppia - + (Limited Access) (Accesso Limitato) - - + + New Document Nuovo Documento - - - + + + Name: Nome: - + Error Creating Document Errore Creazione Documento - + The document could not be created. Please ensure that you have the proper permissions. Impossibile creare il documento. Verifica di avere i permessi giusti. - + New Directory Nuova Directory - - - + + + Invalid Name Nome non valido - + File Operations Operazioni su file - + Auto-Extract - + Directory Operations Operazioni su Cartella - + Other... - + Loading... Caricamento... - - - + + + A file or directory with that name already exists! Please pick a different name. Un file o una directory con questo nome esiste già! Per favore scegli un altro nome. - + Error Creating Directory Errore Creazione Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. La directory non può essere creata. Verifica di avere le autorizzazioni appropriate per modificare la directory corrente. - + Current Attuale - + Create... Creando... - + File File - + Directory Cartella - + Application Launcher Applicazione di Avvio - + Launch... Avviando... - + Terminal Terminale - + SlideShow Presentazione - + Multimedia Player Riproduttore multimediale - + Open with... - + View Files... Vista Files... - + Checksums Controlli - + Properties Proprietà - + File Checksums: Controllo dei File: - + Missing Utility Utilità mancante - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. L'utilità "lumina-fileinfo" non e' stata trovata sul sistema. Per favore installala. - + Open Apri - + Rename... Rinomina... - + Cut Selection Taglia Selezione - + Copy Selection Copia Selezione - + Paste Incolla - + Delete Selection Elimina selezione @@ -1211,4 +1211,72 @@ Nuova posizione: %2 + + XDGDesktopList + + + Multimedia + Multimediale + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts index c4801995..075665b3 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts @@ -123,263 +123,263 @@ アイコンサイズを大きくする - + Decrease Icon Sizes アイコンサイズを小さくする - + Back 戻る - - + + Go back to previous directory 前のディレクトリーに戻る - + Up 上へ - - + + Go to parent directory 親ディレクトリーへ移動します - + Home ホーム - - + + Go to home directory ホームディレクトリーへ移動します - + Menu メニュー - + Select Action アクションを選択します - + Single Column - + Single column view 一列で表示 - + Dual Column 二列表示 - + Dual Column View 二列で表示 - + (Limited Access) (アクセス制限あり) - - + + New Document 新しいドキュメント - - - + + + Name: 名前: - + Error Creating Document ドキュメントの作成中にエラーが発生しました - + The document could not be created. Please ensure that you have the proper permissions. ドキュメントを作成できません。パーミッション設定を確認してください。 - + New Directory 新しいディレクトリー - - - + + + Invalid Name 名前が無効です - + File Operations ファイル操作 - + Auto-Extract - + Directory Operations ディレクトリー操作 - + Other... - + Loading... ロードしています... - - - + + + A file or directory with that name already exists! Please pick a different name. 同名のファイルまたはディレクトリーが存在します。別の名前にしてください。 - + Error Creating Directory ディレクトリーの作成時にエラーが発生しました - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. ディレクトリーを作成できません。現在作業中のディレクトリーの書き込みパーミッション設定を確認してください。 - + Current スナップショットが存在する場合にはスナップショット名が入る 現行版 - + Create... 作成... - + File ファイル - + Directory ディレクトリー - + Application Launcher アプリケーションの起動 - + Launch... 起動... - + Terminal 端末 - + SlideShow スライドショー - + Multimedia Player マルチメディアプレイヤー - + Open with... - + View Files... ファイルの情報を表示... - + Checksums チェックサム - + Properties プロパティー - + File Checksums: ファイルのチェックサム: - + Missing Utility ユーティリティーがありません - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" ユーティリティーはシステムに存在しません。先にインストールしてください。 - + Open 開く - + Rename... 名前の変更... - + Cut Selection 選択したアイテムを切り取る - + Copy Selection 選択したアイテムをコピー - + Paste 貼り付け - + Delete Selection 選択したアイテムを削除 @@ -1228,4 +1228,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + マルチメディア + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts index 7ee47599..f2bce842 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back 뒤로 - - + + Go back to previous directory 이전 디렉터리로 돌아가기 - + Up 위로 - - + + Go to parent directory 상위 디렉터리로 가기 - + Home - - + + Go to home directory 홈 디렉터리로 가기 - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (제한된 접근) - - + + New Document 새 문서 - - - + + + Name: 이름: - + Error Creating Document 문서 만드는 중 오류 - + The document could not be created. Please ensure that you have the proper permissions. 문서를 만들 수 없습니다. 필요한 권한이 있는지 확인하십시오. - + New Directory 새 디렉터리 - - - + + + Invalid Name 잘못된 이름 - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. 같은 이름의 파일이나 디렉터리가 이미 있습니다! 다른 이름을 선택하십시오. - + Error Creating Directory 디렉터리 만드는 중 오류 - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. 디렉터리를 만들 수 없습니다. 현재 디렉터리를 변경할 권한이 있는지 확인하십시오. - + Current 현재 - + Create... - + File 파일 - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: 파일 체크섬: - + Missing Utility 유틸리티 없음 - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" 유틸리티가 시스템에 없습니다. 먼저 설치하십시오. - + Open 열기 - + Rename... - + Cut Selection 선택 항목 삭제 - + Copy Selection 선택 항목 복사 - + Paste 붙여 넣기 - + Delete Selection 선택 항목 삭제 @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + 멀티미디어 + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts index 8ab07d7e..c13d043c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts @@ -120,262 +120,262 @@ Padidinti piktogramų dydį - + Decrease Icon Sizes Sumažinti piktogramų dydį - + Back Atgal - - + + Go back to previous directory Grįžti į ankstesnį katalogą - + Up Aukštyn - - + + Go to parent directory Pereiti į virškatalogį - + Home Namai - - + + Go to home directory Pereiti į namų katalogą - + Menu Meniu - + Select Action Pasirinkti veiksmą - + Single Column Vienas stulpelis - + Single column view Vieno stulpelio rodinys - + Dual Column Dvigubas stulpelis - + Dual Column View Dvigubo stulpelio rodinys - + (Limited Access) (Prieiga apribota) - - + + New Document Naujas dokumentas - - - + + + Name: Pavadinimas: - + Error Creating Document Klaida, kuriant dokumentą - + The document could not be created. Please ensure that you have the proper permissions. Dokumento sukurti nepavyko. Įsitikinkite, kad turite tinkamus leidimus. - + New Directory Naujas katalogas - - - + + + Invalid Name Netinkamas pavadinimas - + File Operations Failų operacijos - + Auto-Extract Automatiškai išskleisti - + Directory Operations Katalogų operacijos - + Other... Kita... - + Loading... Įkeliama... - - - + + + A file or directory with that name already exists! Please pick a different name. Failas ar katalogas tokiu pavadinimu jau yra! Prašome pasirinkti kitą pavadinimą. - + Error Creating Directory Klaida, kuriant katalogą - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Katalogo sukurti nepavyko. Įsitikinkite, kad turite tinkamus leidimus tam, kad keistumėte esamą katalogą. - + Current Esamas - + Create... Sukurti... - + File Failą - + Directory Katalogą - + Application Launcher Programos leistuką - + Launch... Paleisti... - + Terminal Terminalą - + SlideShow Skaidrių rodymą - + Multimedia Player Multimedijos grotuvą - + Open with... Atverti naudojant... - + View Files... Rodyti failų... - + Checksums Kontrolinės sumos - + Properties Savybės - + File Checksums: Failų kontrolinės sumos: - + Missing Utility Trūksta paslaugų programos - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Sistemoje nepavyko rasti "lumina-fileinfo" paslaugų programos. Prašome, iš pradžių, ją įdiegti. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Sistemoje nepavyko rasti "lumina-fileinfo" paslaugų programos. Prašome, iš pradžių, ją įdiegti. - + Open Atverti - + Rename... Pervadinti... - + Cut Selection Iškirpti žymėjimą - + Copy Selection Kopijuoti žymėjimą - + Paste Įdėti - + Delete Selection Ištrinti žymėjimą @@ -591,8 +591,8 @@ Nauja vieta: %2 - Click "Next" to start downloading the repository - Spustelėkite "Kitas", kad pradėtumėte saugyklos atsisiuntimą + Click "Next" to start downloading the repository + Spustelėkite "Kitas", kad pradėtumėte saugyklos atsisiuntimą @@ -1211,4 +1211,72 @@ Nauja vieta: %2 Vykdomos naujos užduotys + + XDGDesktopList + + + Multimedia + Multimedija + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts index 405d5afd..f1694f1a 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Atpakaļ - - + + Go back to previous directory Atgriezties iepriekšējā katalogā - + Up Augšup - - + + Go to parent directory Iet uz vecāku katalogu - + Home Mājas - - + + Go to home directory Iet uz mājas katalogu - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Ierobežota piekļuve) - - + + New Document Jauns dokuments - - - + + + Name: Vārds: - + Error Creating Document Kļūda, veidojot dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokumentu nevar izveidot. Lūdzu, pārliecinieties, ka ir pietiekamas tiesības. - + New Directory Jauns katalogs - - - + + + Invalid Name Nederīgs nosaukums - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Fails vai katalogs ar šādu nosaukumu jau eksistē! Lūdzu, izvēlieties citu. - + Error Creating Directory Kļūda, veidojot katalogu - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Katalogu nevar izveidot. Lūdzu, pārliecinieties, ka ir pietiekamas tiesības modificēt pašreizējo katalogu. - + Current Pašreizējais - + Create... - + File Fails - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Failu kontrolsummas: - + Missing Utility Trūkstoša utilīta - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Utilīta "lumina-fileinfo" sistēmā nav atrodama. Lūdzu, vispirms to uzstādiet. - + Open Atvērt - + Rename... Pārsaukt... - + Cut Selection Izgriezt atlasi - + Copy Selection Kopēt atlasi - + Paste Ielīmēt - + Delete Selection Dzēst atlasi @@ -1211,4 +1211,72 @@ Jaunā atrašanās vieta: %2 + + XDGDesktopList + + + Multimedia + Multivide + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts index 0d82faeb..133fdf53 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Terug - - + + Go back to previous directory Ga terug naar vorige map - + Up Omhoog - - + + Go to parent directory Ga naar bovenliggende map - + Home Persoonlijke map - - + + Go to home directory Ga naar persoonlijke map - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Beperkte toegang) - - + + New Document Nieuw document - - - + + + Name: Naam: - + Error Creating Document Fout bij creëren van document - + The document could not be created. Please ensure that you have the proper permissions. Het document kan niet worden gecreëerd. Zorg ervoor dat u beschikt over de juiste rechten. - + New Directory Nieuwe map - - - + + + Invalid Name Ongeldige naam - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Er bestaat al een bestand of map met dezelfde naam. Kies een andere naam. - + Error Creating Directory Fout bij creëren van map - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. De map kan niet worden gecreëerd. Zorg ervoor dat u beschikt over de juiste rechten om de huidige map te mogen bewerken. - + Current Huidig - + Create... - + File Bestand - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Bestandscontrolesommen: - + Missing Utility Ontbrekend hulpmiddel - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Het "lumina-fileinfo"-hulpmiddel kan niet worden gevonden. Installeer het. - + Open Openen - + Rename... Naam wijzigen... - + Cut Selection Selectie knippen - + Copy Selection Selectie kopiëren - + Paste Plakken - + Delete Selection Selectie verwijderen @@ -1211,4 +1211,72 @@ Nieuwe locatie: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts index f4edfae9..959062ee 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts @@ -120,262 +120,262 @@ Zwiększ rozmiar ikon - + Decrease Icon Sizes Zmniejsz rozmiar ikon - + Back Wstecz - - + + Go back to previous directory Wróć do poprzedniego katalogu - + Up W górę - - + + Go to parent directory Przejdź do katalogu nadrzędnego - + Home Katalog domowy - - + + Go to home directory Przejdź do katalogu domowego - + Menu Menu - + Select Action Wybierz działanie - + Single Column - + Single column view Widok kolumny pojedynczej - + Dual Column Kolumna podwójna - + Dual Column View Widok kolumny podwójnej - + (Limited Access) (Ograniczony dostęp) - - + + New Document Nowy dokument - - - + + + Name: Nazwa: - + Error Creating Document Błąd podczas tworzenia dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Nie udało się utworzyć dokumentu. Upewnij się czy masz właściwe uprawnienia. - + New Directory Nowy katalog - - - + + + Invalid Name Nieprawidłowa nazwa - + File Operations Operacje na plikach - + Auto-Extract - + Directory Operations Operacje na katalogach - + Other... - + Loading... Wczytywanie... - - - + + + A file or directory with that name already exists! Please pick a different name. Plik lub katalog o podanej nazwie już istnieje! Proszę wybrać inną nazwę. - + Error Creating Directory Błąd podczas tworzenia katalogu - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Nie udało się stworzyć katalogu. Proszę upewnij się czy masz właściwe uprawnienia by móc modyfikować ten katalog. - + Current Bieżący - + Create... Utwórz... - + File Plik - + Directory Katalog - + Application Launcher Aplikację - + Launch... Uruchom... - + Terminal Terminal - + SlideShow Pokaz slajdów - + Multimedia Player Odtwarzacz multimedialny - + Open with... - + View Files... Podgląd... - + Checksums Suma kontrolna - + Properties Właściwości - + File Checksums: Suma kontrolna: - + Missing Utility Brak odpowiedniego narzędzia - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Nie udało się w systemie odnaleźć narzędzia "lumina-fileinfo". Proszę je najpierw zainstalować. - + Open Otwórz - + Rename... Zmień nazwę... - + Cut Selection Wytnij - + Copy Selection Kopiuj - + Paste Wklej - + Delete Selection Usuń @@ -1211,4 +1211,72 @@ Nowa lokalizacja: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts index ce01b030..7ea83ecc 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Voltar - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: Nome: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Nome Inválido - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File Arquivo - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Abrir - + Rename... - + Cut Selection Cortar a seleção - + Copy Selection Copiar a selecção - + Paste Colar - + Delete Selection Remover a Selecção @@ -1211,4 +1211,72 @@ Nova Localização: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt_BR.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt_BR.ts index c1b06d8e..82713926 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt_BR.ts @@ -120,262 +120,262 @@ Aumentar o tamanho dos ícones - + Decrease Icon Sizes Diminuir tamanhos de ícones - + Back Voltar - - + + Go back to previous directory Voltar para a pasta anterior - + Up Acima - - + + Go to parent directory Ir para pasta-pai - + Home Inicio - - + + Go to home directory Ir para a pasta inicial - + Menu Menu - + Select Action Selecione Ação - + Single Column - + Single column view Vista de coluna única - + Dual Column Coluna dupla - + Dual Column View Vista de coluna dupla - + (Limited Access) (Acesso limitado) - - + + New Document Novo Documento - - - + + + Name: Nome: - + Error Creating Document Erro ao Criar Documento - + The document could not be created. Please ensure that you have the proper permissions. O documento não pode ser criado. Por favor, certifique-se que possuí permissão necessária. - + New Directory Novo Diretório - - - + + + Invalid Name Nome Inválido - + File Operations Operações de Arquivo - + Auto-Extract - + Directory Operations Operações de diretório - + Other... - + Loading... Carregando... - - - + + + A file or directory with that name already exists! Please pick a different name. Já existe um arquivo ou pasta com este nome. Por favor, use um nome diferente. - + Error Creating Directory Erro ao Criar Pasta - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. A pasta não pode ser criada. Por favor, verifique suas permissões. - + Current Atual - + Create... Criar... - + File Arquivo - + Directory Diretório - + Application Launcher Iniciador de Aplicativos - + Launch... Lançamento... - + Terminal Terminal - + SlideShow ApresentaçãodeSlides - + Multimedia Player Leitor Multimidia - + Open with... - + View Files... Ver arquivos... - + Checksums Verificação de somas - + Properties Propriedades - + File Checksums: Arquivo checksum: - + Missing Utility Utilitário faltando - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - O "lumina-fileinfo" não pode ser encontrado no sistema. Por favor, instale-o... + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + O "lumina-fileinfo" não pode ser encontrado no sistema. Por favor, instale-o... - + Open Abrir - + Rename... Renomear... - + Cut Selection Cortar seleção - + Copy Selection Copiar seleção - + Paste Colar - + Delete Selection Excluir seleção @@ -591,8 +591,8 @@ Nova Localização: %2 - Click "Next" to start downloading the repository - Clique em "Avançar" para iniciar o download do repositório + Click "Next" to start downloading the repository + Clique em "Avançar" para iniciar o download do repositório @@ -1211,4 +1211,72 @@ Nova Localização: %2 + + XDGDesktopList + + + Multimedia + Multimídia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts index f7bf3f77..9b318711 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts @@ -120,262 +120,262 @@ Увеличить размеры иконок - + Decrease Icon Sizes Уменьшить размеры иконок - + Back Назад - - + + Go back to previous directory Вернуться к предыдущему каталогу - + Up Вверх - - + + Go to parent directory Перейти в родительский каталог - + Home Домашний каталог - - + + Go to home directory Перейти в домашний каталог - + Menu Меню - + Select Action Выберите действие - + Single Column - + Single column view Вид в одну колонку - + Dual Column Две колонки - + Dual Column View Вид в две колонки - + (Limited Access) (Ограниченный доступ) - - + + New Document Новый документ - - - + + + Name: Имя: - + Error Creating Document Ошибка создания документа - + The document could not be created. Please ensure that you have the proper permissions. Документ не может быть создан. Пожалуйста, убедитесь, что у вас есть соответствующие права. - + New Directory Новый каталог - - - + + + Invalid Name Недопустимое имя - + File Operations Операции с файлами - + Auto-Extract - + Directory Operations Операции с директориями - + Other... - + Loading... Загрузка... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл или каталог с таким именем уже существует! Пожалуйста, выберите другое имя. - + Error Creating Directory Ошибка создания каталога - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Каталог не может быть создан. Пожалуйста, убедитесь, что у вас есть соответствующие права, чтобы изменить текущий каталог. - + Current Текущий - + Create... Созание... - + File Файл - + Directory Директория - + Application Launcher Загрузчик приложений - + Launch... Загрузка... - + Terminal Терминал - + SlideShow Слайд шоу - + Multimedia Player Мультимедийный плеер - + Open with... - + View Files... Просмотр файлов... - + Checksums Контрольная сумма - + Properties Свойства - + File Checksums: Контрольные суммы файла: - + Missing Utility Утилита не найдена - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Утилита "Lumina-FileInfo" не может быть найдена в системе. Пожалуйста, установите ее в первую очередь. - + Open Открыть - + Rename... Переименовать... - + Cut Selection Вырезать выделенное - + Copy Selection Копировать выделенное - + Paste Вставить - + Delete Selection Удалить выделенное @@ -1210,4 +1210,72 @@ New Location: %2 Выполнение новых задач + + XDGDesktopList + + + Multimedia + Мультимедиа + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts index 684d755e..37498a89 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Späť - - + + Go back to previous directory Vráťte sa do predchádzajúceho adresára - + Up Hore - - + + Go to parent directory Prejdite do nadriadeného adresára - + Home Domovská zložka - - + + Go to home directory Choďte do domovského adresára - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Limitovaný prístup) - - + + New Document Nový dokument - - - + + + Name: Meno: - + Error Creating Document Chyba pri vytvorení dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokument nie je možné vytvoriť. Uistite sa, či máté dostatočné práva. - + New Directory Nový priečinok - - - + + + Invalid Name Neplatné meno - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Súbor alebo adresár s takým istým názvom už existuje. Prosím, použite iný názov. - + Error Creating Directory Chyba pri vytváraní adresára - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Priečinok nemôže byť vytvorený. Prosím uistite sa, či máte dostatočné práva na úpravu aktuálneho adresára. - + Current Aktuálny - + Create... - + File Súbor - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Kontrolný súčet súboru - + Missing Utility Chýbajú utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" utility nie je možné nájsť v systéme. Prosím najprv ju nainštalujte. - + Open Otvoriť - + Rename... - + Cut Selection Vystrihnúť výber - + Copy Selection Kopírovať označené - + Paste Vložiť - + Delete Selection Zmazať výber @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Multimédiá + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts index c4c087ad..a7938bf3 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Bakåt - - + + Go back to previous directory Gå tillbaka till förra katalogen - + Up Upp - - + + Go to parent directory Gå till föräldrakatalog - + Home Hem - - + + Go to home directory Gå till hemkatalog - + Menu Meny - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Begränsad tillgång) - - + + New Document Nytt dokument - - - + + + Name: Namn: - + Error Creating Document Fel när dokument skulle skapas - + The document could not be created. Please ensure that you have the proper permissions. Detta dokument kunde inte skapas. Se till att du har rätt behörigheter. - + New Directory Ny katalog - - - + + + Invalid Name Ogiltigt namn - + File Operations Fil operationer - + Auto-Extract - + Directory Operations Katalog operationer - + Other... - + Loading... Laddar... - - - + + + A file or directory with that name already exists! Please pick a different name. En fil med samma namn finns redan. Använd ett annat namn. - + Error Creating Directory Fel vid skapande av katalog - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Denna katalogen kunde inte skapas. Se till att du har rätt behörigheter att modifera den aktuella katalogen. - + Current Aktuell - + Create... Skapar... - + File Fil - + Directory Katalog - + Application Launcher - + Launch... Startar... - + Terminal Terminal - + SlideShow - + Multimedia Player Multimedia spelare - + Open with... - + View Files... Visa filer... - + Checksums - + Properties Egenskaper - + File Checksums: Filkontrollsummor: - + Missing Utility Saknar Verktyg - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-Fileinfo" verktyget kunde inte hittas på systemet. Installera det först. - + Open Öppna - + Rename... Byt namn... - + Cut Selection Klipp markering - + Copy Selection Kopiera markering - + Paste Klistra in - + Delete Selection Ta bort markering @@ -1211,4 +1211,72 @@ Ny Plats: %2 + + XDGDesktopList + + + Multimedia + Multimedia + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_th.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_th.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_th.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_th.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts index 74629e4c..b2516542 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Geri - - + + Go back to previous directory Önceki dizine geri git - + Up Yukarı - - + + Go to parent directory Üst dizine git - + Home Ev - - + + Go to home directory Ev dizinine git - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Sınırlı Erişim) - - + + New Document Yeni Belge - - - + + + Name: Ad: - + Error Creating Document Belge Oluşturmada Hata - + The document could not be created. Please ensure that you have the proper permissions. Belge oluşturulamadı. Lütfen uygun izinlere sahip olduğunuza emin olun. - + New Directory Yeni Dizin - - - + + + Invalid Name Geçersiz Ad - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Aynı adda bir dosya ya da dizin zaten mevcut! Lütfen farklı bir ad seçin. - + Error Creating Directory Dizin Oluşturmada Hata - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Dizin oluşturulamadı. Lütfen geçerli dizinde değişiklik yapmak için uygun izinlere sahip olduğunuza emin olun. - + Current Geçerli - + Create... - + File Dosya - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Dosya Sağlama Toplamları: - + Missing Utility Eksik Gereç - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Sistemde "lumina-fileinfo" gereci bulunamadı. Lütfen önce gereci yükleyin. - + Open - + Rename... Yeniden adlandır... - + Cut Selection Seçimi Kes - + Copy Selection Seçimi Kopyala - + Paste Yapıştır - + Delete Selection Seçimi Sil @@ -1211,4 +1211,72 @@ Yeni Konum: %2 + + XDGDesktopList + + + Multimedia + Multimedya + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts index 3909fd90..20972879 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back Назад - - + + Go back to previous directory Повернутися до попереднього каталогу - + Up Верх - - + + Go to parent directory В батьківську теку - + Home Домівка - - + + Go to home directory В домашню теку - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Обмежений доступ) - - + + New Document Новий документ - - - + + + Name: Ім'я: - + Error Creating Document Помилка створення документа - + The document could not be created. Please ensure that you have the proper permissions. Цей документ не може бути створений. Будь ласка, впевніться, що у вас є відповідні права. - + New Directory Новий каталог - - - + + + Invalid Name Некоректна назва - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл або каталог з таким іменем вже існує! Будь ласка, виберіть інше ім'я. - + Error Creating Directory Помилка створення каталогу - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Каталог не може бути створений. Будь ласка, впевніться, що у вас є відповідні права, щоб змінити поточний каталог. - + Current Поточний - + Create... - + File Файл - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Контрольні суми файлів: - + Missing Utility Утиліта не знайдена - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Утиліта "Lumina-FileInfo" не може бути знайдена в системі. Будь ласка, встановіть її в першу чергу. - + Open Відкрити - + Rename... Перейменувати... - + Cut Selection Вирізати обране - + Copy Selection Копіювати виділене - + Paste Вставити - + Delete Selection Видалити виділене @@ -1211,4 +1211,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + Мультимедіа + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_CN.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_CN.ts index cf8e4d81..6f6e3797 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_CN.ts @@ -122,262 +122,262 @@ 增加图标大小 - + Decrease Icon Sizes 减小图标大小 - + Back 返回 - - + + Go back to previous directory 返回上一个目录 - + Up 向上 - - + + Go to parent directory 前往上层目录 - + Home 用户目录 - - + + Go to home directory 回到用户目录 - + Menu 菜单 - + Select Action 选择动作 - + Single Column - + Single column view 单列视图 - + Dual Column 双列 - + Dual Column View 双列视图 - + (Limited Access) (有限访问) - - + + New Document 新文档 - - - + + + Name: 名称: - + Error Creating Document 建立文档出错 - + The document could not be created. Please ensure that you have the proper permissions. 无法建立文档。请确定您有适当的权限。 - + New Directory 新目录 - - - + + + Invalid Name 无效的名称 - + File Operations 文件操作 - + Auto-Extract - + Directory Operations 目录操作 - + Other... - + Loading... 载入中... - - - + + + A file or directory with that name already exists! Please pick a different name. 已有相同名字的文件或目录存在!请选择一个不同的名字。 - + Error Creating Directory 创建目录错误 - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. 目录无法被建立。请检查您有更改当前目录的适当权限。 - + Current 当前 - + Create... 创建... - + File 文件 - + Directory 目录 - + Application Launcher 应用程序启动器 - + Launch... 启动... - + Terminal 终端 - + SlideShow 幻灯片 - + Multimedia Player 多媒体播放器 - + Open with... - + View Files... 查看文件... - + Checksums 校验 - + Properties 属性 - + File Checksums: 文件校验值: - + Missing Utility 缺少的工具 - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. 无法在您的系统里找到 "lumina-fileinfo" 工具。请先安装它。 - + Open 打开 - + Rename... 重命名... - + Cut Selection 剪切选中部分 - + Copy Selection 复制选中部分 - + Paste 粘贴 - + Delete Selection 删除选中部分 @@ -1221,4 +1221,72 @@ New Location: %2 新任务运行中 + + XDGDesktopList + + + Multimedia + 多媒体 + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_HK.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_HK.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_HK.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_TW.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_TW.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_TW.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts index bd5171d2..2055ca65 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts @@ -120,262 +120,262 @@ - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1208,4 +1208,72 @@ New Location: %2 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_af.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_af.ts index 9d70a465..584bd823 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_af.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_af.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ar.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ar.ts index 1b1d87ef..4b4aa633 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ar.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ar.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_az.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_az.ts index 5e654938..9f6bec09 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_az.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_az.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bg.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bg.ts index 566b08b4..c9243cfa 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bg.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bg.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bn.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bn.ts index 96fd1939..d75573b9 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bn.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bn.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bs.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bs.ts index 7a72d06e..38d2467c 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bs.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bs.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ca.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ca.ts index 858763ba..fbb56eb3 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ca.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ca.ts @@ -363,4 +363,72 @@ No hi ha coincidències. Si us plau, intenteu un altre terme de cerca. + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Paràmetres + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cs.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cs.ts index 653e1621..bc669d26 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cs.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cs.ts @@ -363,4 +363,72 @@ Nepodařilo se najít nic odpovídajícího. Zkuste hledat jiný výraz + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Nastavení + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cy.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cy.ts index 6c322e33..f33fc060 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cy.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cy.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_da.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_da.ts index 7ae75c0c..13ec7add 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_da.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_da.ts @@ -363,4 +363,72 @@ Kunne ikke finde nogen match. Prøv venligst et andet søgeterm + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Indstillinger + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_de.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_de.ts index 5e04ce59..44e75d30 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_de.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_de.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_el.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_el.ts index 0ffecdec..4c3b09b2 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_el.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_el.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_AU.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_AU.ts index f66515e8..c20a3dd3 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_AU.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_GB.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_GB.ts index 68c998ad..9eb1ef13 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_GB.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_ZA.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_ZA.ts index b300efd1..ed971a17 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_ZA.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_es.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_es.ts index 51d0d6b8..4afe8e1d 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_es.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_es.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_et.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_et.ts index 6083f0cb..924c9953 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_et.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_et.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_eu.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_eu.ts index 6c2f4291..5e58aad4 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_eu.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_eu.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fa.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fa.ts index 2c2defb1..10e17c72 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fa.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fa.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fi.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fi.ts index e4b71c09..ba624171 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fi.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fi.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr.ts index e4e303d2..87d5ec0d 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr_CA.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr_CA.ts index 7672f3fb..94318cc5 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr_CA.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_gl.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_gl.ts index 17953ac5..e107ffb9 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_gl.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_gl.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_he.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_he.ts index 6c7dbbcc..3781b4ed 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_he.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_he.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hi.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hi.ts index 9474ac39..e53f5b89 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hi.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hi.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hr.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hr.ts index 058dfd20..09bc3703 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hr.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hr.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hu.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hu.ts index cca63f53..afeae7a8 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hu.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hu.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_id.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_id.ts index d94f69c7..17619fe2 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_id.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_id.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_is.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_is.ts index bd31571f..c25a1b66 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_is.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_is.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_it.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_it.ts index a8ae8151..d55cc21e 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_it.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_it.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ja.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ja.ts index 329c1296..006ccfc8 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ja.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ja.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ka.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ka.ts index 0ee1430a..927cb0de 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ka.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ka.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ko.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ko.ts index 7ab245f7..83012623 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ko.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ko.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lt.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lt.ts index 61131d01..62ca1df7 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lt.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lt.ts @@ -280,7 +280,7 @@ Please install the `pianobar` utility to enable this functionality - Norėdami įjungti šį funkcionalumą, įdiekite "pianobar" paslaugų programą + Norėdami įjungti šį funkcionalumą, įdiekite "pianobar" paslaugų programą @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Nustatymai + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lv.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lv.ts index 23b44ac3..c725c036 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lv.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lv.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mk.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mk.ts index 9bf6a353..c4a0bf31 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mk.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mk.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mn.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mn.ts index 2a58f1ea..247b9ba6 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mn.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mn.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ms.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ms.ts index 3b2964d7..0b2d2be5 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ms.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ms.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mt.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mt.ts index 0ddfa494..e3d69fea 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mt.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mt.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nb.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nb.ts index eebc3380..58b7cebb 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nb.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nb.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nl.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nl.ts index d6f5ac94..3e7c1068 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nl.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nl.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pa.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pa.ts index 97b08283..13a5ba04 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pa.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pa.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pl.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pl.ts index 42e409b8..3c655dd2 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pl.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pl.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt.ts index cb36371a..64c343d4 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt_BR.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt_BR.ts index 9ac08330..c13c9078 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt_BR.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ro.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ro.ts index 845b5a6b..9220c6ff 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ro.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ro.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ru.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ru.ts index bbf85d7d..9eb16e3f 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ru.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ru.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Настройки + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sk.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sk.ts index cdd24b3a..71b15106 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sk.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sk.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sl.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sl.ts index 22ed083e..d8c2d610 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sl.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sl.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sr.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sr.ts index 219c38a7..b7473591 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sr.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sr.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sv.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sv.ts index 6b14139b..3efc0baa 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sv.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sv.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sw.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sw.ts index e014f419..bb546a05 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sw.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sw.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ta.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ta.ts index a33cc91a..4a4ccf7b 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ta.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ta.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tg.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tg.ts index 281d615a..4514b960 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tg.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tg.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_th.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_th.ts index b5728b93..53f9d54a 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_th.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_th.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tr.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tr.ts index a143c9c3..f9a04242 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tr.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tr.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uk.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uk.ts index e2ffb0c7..e4e55793 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uk.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uk.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uz.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uz.ts index 764f9a21..2e26c73f 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uz.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uz.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_vi.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_vi.ts index 7d8f78c6..e5563d59 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_vi.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_vi.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_CN.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_CN.ts index 322acdab..48c35145 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_CN.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + 设置 + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_HK.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_HK.ts index 9cc99498..852514dd 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_HK.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_TW.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_TW.ts index b9dde176..6dacdf4a 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_TW.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zu.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zu.ts index 21ec31f8..54b342bb 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zu.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zu.ts @@ -362,4 +362,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts index 970850d6..14281ae0 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts index edf65c57..7900cb58 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts index 23a163aa..5e7d0d53 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts index c0474156..37b59d5f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts index 3327a282..58ec50b3 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts index cfdb4870..85b5dec4 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts index 98b9d406..70719193 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts index 9064fc3e..85754bd4 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts index 2f5888d0..c8383f8a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts index 1e12a979..b02a9220 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts index 1c419bcf..87cb14b0 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts index 73e56e51..5d0d3730 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts index e48f89ba..9b01ebbc 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts index 7504624e..7df4d774 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts index da5a078a..91bcca6a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts index 78c3abb8..f4859ed5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts index 0d91f99c..2eb67231 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts index d5c98fdc..6c6774c5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts index 83493ab4..31d272bf 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts index 315d6b98..910bba00 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts index 7a8154c6..86bb5047 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts index 4176c448..57eab0dd 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts index 128fa62e..326772ca 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts index 9b367779..8618406e 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts index 4ffad258..e43064ad 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts index 718cf548..af3be492 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts index 8876e64d..33a50231 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts index a94d0060..f5dcb4ad 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts index 52aaa40f..c1154866 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts index 2e6610f7..a211917a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts index 687a57c0..413cecb2 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts index a5b48cc5..6d6a4af9 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts index 65d5f06f..1ca34a93 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts index 79bb30c2..1de4aa7e 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts index 1c09961f..197586d2 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts index e8230f08..bdf028dd 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts index 532fbd4c..97a55860 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts index 0ad28bc6..19c7785a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts index 3aada77b..fa613161 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts index 64ee7141..7ef9f50f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts index 1ef64924..40e8c3f0 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts index d1e59682..0614dae0 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts index 1348b2c3..ceaaf0fa 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts index 7598e713..70fbeada 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts index 2356106e..270ce968 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts index 2356106e..270ce968 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts index d300d7a9..5f4e3dcc 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts index 136a590a..a54517c5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts index df9dc61e..a09a3e35 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts index 90679392..02a5b0b3 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts index 01a4a4a1..54fca079 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts index bf681ca2..7645e38f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts index a1ed539b..8d135f59 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts index 5375a601..257d39c5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts index 4af5fa93..9768b0de 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts index 36f6902e..72fe08db 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts index b01cf888..a0148386 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts index c72772c1..70a39405 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts index bbb405e5..806fe5b5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts index 82649064..3a012813 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts index 3998129e..5c4f890f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts index bda42a91..e5164c70 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts index cd5d5ef2..0c621541 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts index 6ffa2eee..3300103b 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts index 348cb969..c687d029 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts index 4e77c83e..873d25c1 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts @@ -130,4 +130,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts index 704c82e4..9a38a4b8 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts @@ -212,4 +212,72 @@ PNG файлове (*.png);;Всички файлове (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts index b5c1ac97..22ab19c6 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts @@ -34,7 +34,7 @@ Resize - Canvia'n la mida + Canvia'n la mida @@ -94,7 +94,7 @@ Select Area - Selecciona l'àrea + Selecciona l'àrea @@ -124,7 +124,7 @@ Close Application - Tanca l'aplicació + Tanca l'aplicació @@ -159,12 +159,12 @@ Could not save screenshot - No s'ha pogut desar la captura + No s'ha pogut desar la captura The screenshot could not be saved. Please check directory permissions or pick a different directory - No s'ha pogut desar la captura. Si us plau, comproveu els permisos del directori o trieu-ne un altre + No s'ha pogut desar la captura. Si us plau, comproveu els permisos del directori o trieu-ne un altre @@ -179,7 +179,7 @@ The current screenshot has not been saved yet. Do you want to save or discard your changes? - La captura actual encara no s'ha desat. Voleu desar o descartar els canvis? + La captura actual encara no s'ha desat. Voleu desar o descartar els canvis? @@ -212,4 +212,72 @@ Fitxers PNG (*.png);; Tots els fitxers (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Paràmetres + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts index be930e36..261becae 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts @@ -212,4 +212,72 @@ PNG Soubory (*.png);;Všechny soubory (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Nastavení + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts index 73f76774..2c0693c4 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts @@ -212,4 +212,72 @@ PNG-filer (*.png);;Alle filer (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Indstillinger + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts index 5b1f1289..4a707c95 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts @@ -212,4 +212,72 @@ PNG-Dateien (*.png);;Alle Dateien (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Einstellungen + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts index 7a0813a1..14a667f7 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts @@ -212,4 +212,72 @@ Αρχεία PNG (*.png);;ΌλαΤαΑρχεία (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_AU.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_AU.ts index 9154ef42..ad21dcbe 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_AU.ts @@ -212,4 +212,72 @@ PNG Files (*.png);;AllFiles (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts index 517231d3..6cdbc01d 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts @@ -212,4 +212,72 @@ PNG Files (*.png);;AllFiles (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts index 989a5b7a..d0b06524 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts @@ -212,4 +212,72 @@ Archivos PNG (*.png);;Todos Los Archivos (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts index aae6ba72..f81af5a6 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts @@ -212,4 +212,72 @@ PNG-failid (*.png);;Kõik failid (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts index a8539d4a..8507e35f 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts @@ -212,4 +212,72 @@ PNG fitxategiak (*.png);;Fitxategi guztiak (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts index 42b43ba5..da93ff87 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts @@ -212,4 +212,72 @@ PNG-tiedostot (*.png);;Kaikki tiedostot (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts index 238441b8..908ba94e 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts @@ -212,4 +212,72 @@ Fichiers PNG (*.png);;Tous les fichiers (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts index a8eab7b2..7231605f 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts index c7bd3ee9..c55911aa 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts @@ -212,4 +212,72 @@ पीएनजी फाइलें (*.png);;सभी फाइलें (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts index 8d601ada..870e9dc9 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts @@ -212,4 +212,72 @@ PNG fájlok (*.png);;Minden fájl (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts index d1061f60..f93b1bf1 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts @@ -212,4 +212,72 @@ PNG berkas (*.png);;AllFiles (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts index 7f7fbe31..abdc1c6f 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts @@ -212,4 +212,72 @@ File PNG (*.png);;AllFiles (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts index f41c2bf4..17e13c63 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts @@ -217,4 +217,72 @@ PNG ファイル (*.png);;すべて (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts index e25c496f..7786e6d0 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts @@ -212,4 +212,72 @@ PNG 파일 (*.png);;모든 파일 (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts index 143c440a..c1c6cc84 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts @@ -212,4 +212,72 @@ PNG failai (*.png);;Visi failai (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Nustatymai + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts index 03d50d55..a77d81c7 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts @@ -212,4 +212,72 @@ PNG faili (*.png);;Visi faili (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts index 8a196864..74d4e952 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts @@ -212,4 +212,72 @@ PNG-bestanden(*.png);;Alle bestanden(*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts index 8f70ec0f..0b56fa55 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts @@ -212,4 +212,72 @@ Pliki PNG (*.png);;Wszystkie pliki (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts index c447a695..d3da1686 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts @@ -212,4 +212,72 @@ Ficheiros PNG (*.png);;Todos os Ficheiros (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts index 378099ab..b8cf088f 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts @@ -212,4 +212,72 @@ Arquivos PNG (*.png);;Todos os arquivos (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts index aa07aaac..3c5fe915 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts @@ -212,4 +212,72 @@ PNG Файлы (*.png);;Все Файлы (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Настройки + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts index 0e6c0097..ac5ec8ee 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts @@ -212,4 +212,72 @@ PNG Files (*.png);;AllFiles (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts index 18c2ec50..299fda94 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts @@ -212,4 +212,72 @@ PNG Filer (*.png);; Alla Filer (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + Inställningar + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts index 0155d07e..005bc8ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts @@ -212,4 +212,72 @@ PNG Dosyaları (*.png);;TümDosyalar (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts index 5fd8dc1c..4034b5ea 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts @@ -212,4 +212,72 @@ PNG Файли (*.png);;Всi Файли (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts index 9002ee9e..8e4d4f32 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts @@ -212,4 +212,72 @@ PNG 文件(*.png);;所有文件 (*) + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + 设置 + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts index 17883195..be4d4faf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts @@ -212,4 +212,72 @@ + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts index 68ef5f23..ad8c977b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts index 1f476761..015bdd20 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts @@ -345,4 +345,72 @@ Voleu tancar l'editor tanmateix? Fitxer modificat + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts index 8bef1acf..6fe1a0c9 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts @@ -345,4 +345,72 @@ Přesto chcete editor zavřít? Soubor byl změněn + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index 3e50763c..5b4f7c90 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -345,4 +345,72 @@ Vil du lukke redigeringsprogrammet alligevel? Fil ændret + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts index 9d13a3f2..250d19a5 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts @@ -345,4 +345,72 @@ Möchten Sie den Editor trotzdem schließen? Datei geändert + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts index f2702bc8..89496f7d 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts @@ -345,4 +345,72 @@ Do you want to close the editor anyway? Το Αρχείο Τροποποιήθηκε + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_AU.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_AU.ts index 2a5f1298..3b76ab89 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_AU.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? File Modified + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts index 9fd60155..5c3674b0 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? File Modified + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts index 47fa7901..f43bdd4a 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? Archivo Modificado + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts index acf53e30..4f3d13b4 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts index 5f51b303..d9a226ac 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? Tiedostoa on muutettu + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts index 72911a04..b69710f7 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts @@ -345,4 +345,72 @@ Voulez-vous tout de même fermer l'éditeur ? Fichier Modifié + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts index b90ce962..07281b9d 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts index 4dd162e9..0d4ea8b3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts @@ -345,4 +345,72 @@ Mindenképp bezárod ? Fájl módosítva + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts index 0da59e80..2e5d2d32 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts index 2847ade5..2bca0345 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts @@ -345,4 +345,72 @@ Vuoi chiudere l'editor comunque? File modificato + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts index 6e89c05d..dd4018fd 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts @@ -347,4 +347,72 @@ Do you want to close the editor anyway? ファイルが変更されています + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts index 168bebd7..4e8237c8 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts @@ -345,4 +345,72 @@ Ar vis tiek norite užverti redaktorių? Failas keistas + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts index b3ea52a8..f4a14d07 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? Fails modificēts + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts index c89737e4..50e02241 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? Bestand gewijzigd + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts index 969aba06..b63b6e02 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts @@ -345,4 +345,72 @@ Czy chcesz mimo to zamknąć edytor? Plik zmodyfikowany + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts index c2dc4a9c..62426c7c 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts @@ -345,4 +345,72 @@ Deseja fechar o editor mesmo assim? Arquivo modificado + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts index bed37d6a..606e3ce9 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts @@ -345,4 +345,72 @@ Do you want to close the editor anyway? Файл изменен + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts index 1173c184..8f908348 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts @@ -345,4 +345,72 @@ Vill du stänga editorn ändå? Fil modifierad + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts index c26894da..c79196b9 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts index 00861156..fbf2ddf8 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts index 25b5c196..26bf6cab 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts @@ -345,4 +345,72 @@ Do you want to close the editor anyway? 文件已被修改 + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts index 99d27637..f14721db 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts @@ -339,4 +339,72 @@ Do you want to close the editor anyway? + + XDGDesktopList + + + Multimedia + + + + + Development + + + + + Education + + + + + Games + + + + + Graphics + + + + + Network + + + + + Office + + + + + Science + + + + + Settings + + + + + System + + + + + Utility + + + + + Wine + + + + + Unsorted + + + -- cgit From feb0bfb7f1c012242e126afc5fcc7e0866411003 Mon Sep 17 00:00:00 2001 From: q5sys Date: Tue, 12 Sep 2017 09:47:41 -0400 Subject: testing FastTransformation for thumbnail generation in fm-dev --- src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp b/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp index f2bdc178..36cae5f4 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp @@ -60,7 +60,7 @@ void Browser::loadItem(QString info, Browser *obj){ file.close(); pix.loadFromData(bytes); if(pix.width() > 256 || pix.height() > 256 ){ - pix = pix.scaled(256,256, Qt::KeepAspectRatio, Qt::SmoothTransformation); + pix = pix.scaled(256,256, Qt::KeepAspectRatio, Qt::FastTransformation); } } } -- cgit From a9671a98baf769f750f6fc3a85fe184968fbfda8 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 18 Sep 2017 10:46:52 -0400 Subject: Fix up the icon sync on theme change, and change the icon for lumina-mediaplayer to one that exists in more themes --- src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.desktop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.desktop b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.desktop index 1fec4a3a..1d6707f4 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.desktop +++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.desktop @@ -1,6 +1,6 @@ [Desktop Entry] Exec=lumina-mediaplayer %f -Icon=media-playlist-audio +Icon=applications-multimedia Terminal=false Type=Application StartupNotify=true -- cgit From b0fce29a9fedcc1784858a1346f85c0e1f666380 Mon Sep 17 00:00:00 2001 From: Tommi Nieminen Date: Wed, 20 Sep 2017 10:04:05 +0000 Subject: Translated using Weblate (Finnish) Currently translated at 100.0% (20 of 20 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/fi/ --- .../lumina-calculator/i18n/l-calc_fi.ts | 40 +++++++++++----------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts index 4da1daf7..be78766d 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts @@ -7,102 +7,102 @@ Calculator - + Laskin Advanced Operations - + Lisätoiminnot Percentage %1 - + Osuus %1 Power %1 - + Potenssi %1 Base-10 Exponential %1 - + 10-kantainen eksponentti %1 Exponential %1 - + Eksponentti %1 Constant Pi %1 - + Vakio pii %1 Square Root %1 - + Neliöjuuri %1 Logarithm %1 - + Logaritmi %1 Natural Log %1 - + Luonnollinen logaritmi %1 Sine %1 - + Sini %1 Cosine %1 - + Kosini %1 Tangent %1 - + Tangentti %1 Arc Sine %1 - + Arkussini %1 Arc Cosine %1 - + Arkuskosini %1 Arc Tangent %1 - + Arkustangentti %1 Hyperbolic Sine %1 - + Hyperbolinen sini %1 Hyperbolic Cosine %1 - + Hyperbolinen kosini %1 Hyperbolic Tangent %1 - + Hyperbolinen tangentti %1 Save Calculator History - + Tallenna laskimen historia -- cgit From 4867729e9190891cb09cc802aafa12ddf352e14b Mon Sep 17 00:00:00 2001 From: Tommi Nieminen Date: Wed, 20 Sep 2017 10:10:42 +0000 Subject: Translated using Weblate (Finnish) Currently translated at 100.0% (33 of 33 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/fi/ --- .../lumina-calculator/i18n/l-calc_fi.ts | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts index 98d2949d..0d4a273d 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts @@ -6,67 +6,67 @@ Multimedia - + Multimedia Development - + Kehitys Education - + Kasvatus Games - + Pelit Graphics - + Grafiikka Network - + Verkko Office - + Toimisto Science - + Tiede Settings - + Asetukset System - + Järjestelmä Utility - + Työkalut Wine - + Wine Unsorted - + Lajittelematta -- cgit From 22387bf6f3ab740630955caa8f2170db8a1f954c Mon Sep 17 00:00:00 2001 From: Tommi Nieminen Date: Wed, 20 Sep 2017 13:41:55 +0000 Subject: Translated using Weblate (Finnish) Currently translated at 100.0% (88 of 88 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/fi/ --- .../lumina-archiver/i18n/l-archiver_fi.ts | 176 ++++++++++----------- 1 file changed, 88 insertions(+), 88 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts index eace2dca..e1832938 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts @@ -6,22 +6,22 @@ Could not read archive - + Arkistoa ei voitu lukea Archive Loaded - + Arkisto ladattu Extraction Finished - + Purku valmis Modification Finished - + Muutos valmis @@ -29,307 +29,307 @@ Archive: - + Arkisto: File - + Tiedosto Edit - + Muokkaa Burn to Disk - + Polta levylle &Open Archive - + &Avaa arkisto Open archive - + Avaa arkisto &New Archive - + &Uusi arkisto New archive - + Uusi arkisto &Quit - + &Lopeta Add File(s) - + Lisää tiedostoja Add files to archive - + Lisää arkistoon tiedostoja Remove File(s) - + Poista tiedostoja Remove selection from archive - + Poista arkistosta tiedostoja Extract All - + Pura kaikki Extract archive into a directory - + Pura arkisto kansioon Add Directory - + Lisää kansio Add directory to archive - + Lisää arkistoon kansio Extract Selection - + Pura valinta Extract Selected Items - + Pura valitut kohteet USB Image - + USB-levykuva Copy an IMG to a USB device (may require admin permission) - + Kopioi IMG-levykuva USB-laitteeseen (voi vaatia ylläpitäjän oikeuksia) Archive Manager - + Arkistonhallinta Admin Mode - + Ylläpitäjän tila CTRL+N - + Ctrl+N CTRL+O - + Ctrl+O CTRL+Q - + Ctrl+Q CTRL+E - + Ctrl+E MimeType - + MIME-tyyppi Size - + Koko Opening Archive... - + Avataan arkistoa... All Types %1 - + Kaikki tyypit %1 Uncompressed Archive (*.tar) - + Pakkaamaton arkisto (*.tar) GZip Compressed Archive (*.tar.gz *.tgz) - + GZip-pakattu arkisto (*.tar.gz *.tgz) BZip Compressed Archive (*.tar.bz *.tbz) - + BZip-pakattu arkisto (*.tar.bz *.tbz) BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - + BZip2-pakattu arkisto (*.tar.bz2 *.tbz2) LMZA Compressed Archive (*.tar.lzma *.tlz) - + LMZA-pakattu arkisto (*.tar.lzma *.tlz) XZ Compressed Archive (*.tar.xz *.txz) - + XZ-pakattu arkisto (*.tar.xz *.txz) CPIO Archive (*.cpio) - + CPIO-arkisto (*.cpio) PAX Archive (*.pax) - + PAX-arkisto (*.pax) AR Archive (*.ar) - + AR-arkisto (*.ar) SHAR Archive (*.shar) - + SHAR-arkisto (*.shar) Zip Archive (*.zip) - + Zip-arkisto (*.zip) 7-Zip Archive (*.7z) - + 7-Zip-arkisto (*.7z) All Known Types %1 - + Kaikki tunnetut tyypit %1 READ-ONLY: ISO image (*.iso *.img) - + VAIN LUKU: ISO-levykuva (*.iso *.img) READ-ONLY: XAR archive (*.xar) - + VAIN LUKU: XAR-arkisto (*.xar) READ-ONLY: Java archive (*.jar) - + VAIN LUKU: Java-arkisto (*.jar) READ-ONLY: RedHat Package (*.rpm) - + VAIN LUKU: RedHat-paketti (*.rpm) Show All Files (*) - + Näytä kaikki tiedostot (*) Create Archive - + Luo arkisto Error - + Virhe Could not overwrite file: - + Ei voitu korvata tiedostoa: Open Archive - + Avaa arkisto Add to Archive - + Lisää arkistoon Adding Items... - + Lisätään kohteita... Removing Items... - + Poistetaan kohteita... Extract Into Directory - + Pura kansioon @@ -337,12 +337,12 @@ Extracting... - + Puretaan... Link To: %1 - + Linkki kohteeseen: %1 @@ -350,127 +350,127 @@ Burn IMG to device - + Polta IMG-levykuva laitteelle IMG File - + IMG-tiedosto Block Size - + Lohkokoko USB Device - + USB-laite Refresh Device List - + Virkistä laiteluettelo Wipe all extra space on device (conv = sync) - + Pyyhi laitteen kaikki ylimääräinen tila (conv=sync) Burning to USB: - + Poltetaan USB:lle: Time Elapsed: - + Aikaa kulunut: Cancel - + Peru Start - + Käynnistä Burn IMG to Device - + Polta IMG-levykuva laitteelle Admin Mode - + Ylläpitäjän tila Kilobyte(s) - + kilotavu(a) Megabyte(s) - + megatavu(a) Gigabyte(s) - + gigatavu(a) Cancel Image Burn? - + Perutaanko levykuvan poltto? Do you wish to stop the current IMG burn process? - + Haluatko pysäyttää käynnissä olevan IMG-levykuvan polton? Warning: This will leave the USB device in an inconsistent state - + Varoitus: Tämä jättää USB-laitteesi epävakaaseen tilaan Administrator Permissions Needed - + Ylläpitäjäoikeudet vaaditaan This operation requires administrator priviledges. - + Tämä toiminto vaatii ylläpitäjän oikeuksia. Would you like to enable these priviledges? - + Haluatko ottaa nämä oikeudet käyttöön? ERROR - + VIRHE The process could not be completed: - + Toimenpidettä ei saatu loppuun: SUCCESS - + ONNISTUI The image was successfully burned to the USB device - + Levykuva poltettiin ongelmitta USB-laitteelle -- cgit From c1d7a162fa79b8f1c30ef519fbd631ceaffa5261 Mon Sep 17 00:00:00 2001 From: Moo Date: Sat, 26 Aug 2017 11:23:18 +0000 Subject: Translated using Weblate (Lithuanian) Currently translated at 96.5% (85 of 88 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/lt/ --- src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts index bfe38ea6..f04b12a6 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts @@ -445,12 +445,12 @@ This operation requires administrator priviledges. - + Ši operacija reikalauja administratoriaus teisių. Would you like to enable these priviledges? - + Ar norėtumėte leisti šias teises? -- cgit From 2c91b1cb93893d427e5890092aae2a48c57cee35 Mon Sep 17 00:00:00 2001 From: Davidmp Date: Wed, 20 Sep 2017 14:55:34 +0000 Subject: Translated using Weblate (Catalan) Currently translated at 100.0% (101 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/ca/ --- .../lumina-archiver/i18n/l-archiver_ca.ts | 66 +++++++++++----------- 1 file changed, 33 insertions(+), 33 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts index 98930879..f39823f0 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts @@ -6,7 +6,7 @@ Could not read archive - No s'ha pogut llegir l'arxiu + No s'ha pogut llegir l'arxiu @@ -81,7 +81,7 @@ Add files to archive - Afegiu fitxers a l'arxiu + Afegiu fitxers a l'arxiu @@ -91,7 +91,7 @@ Remove selection from archive - Elimina la selecció de l'arxiu + Elimina la selecció de l'arxiu @@ -101,7 +101,7 @@ Extract archive into a directory - Extreu l'arxiu en un directori + Extreu l'arxiu en un directori @@ -111,7 +111,7 @@ Add directory to archive - Afegeix un directori a l'arxiu + Afegeix un directori a l'arxiu @@ -131,17 +131,17 @@ Copy an IMG to a USB device (may require admin permission) - Copia una IMG en un dispositiu USB (pot caldre permís d'administrador) + Copia una IMG en un dispositiu USB (pot caldre permís d'administrador) Archive Manager - Gestor d'arxius + Gestor d'arxius Admin Mode - Mode d'administrador + Mode d'administrador @@ -179,7 +179,7 @@ Opening Archive... - S'obre l'arxiu... + S'obre l'arxiu... @@ -301,7 +301,7 @@ Could not overwrite file: - No s'ha pogut sobreescriure el fitxer: + No s'ha pogut sobreescriure el fitxer: @@ -312,18 +312,18 @@ Add to Archive - Afegeix a l'arxiu + Afegeix a l'arxiu Adding Items... - S'afegeixen elements... + S'afegeixen elements... Removing Items... - S'eliminen elements... + S'eliminen elements... @@ -337,7 +337,7 @@ Extracting... - S'extreu... + S'extreu... @@ -350,67 +350,67 @@ Multimedia - + Multimèdia Development - + Desenvolupament Education - + Educació Games - + Jocs Graphics - + Gràfics Network - + Xarxa Office - + Oficina Science - + Ciència Settings - + Configuració System - + Sistema Utility - + Utilitat Wine - + Wine Unsorted - + Sense classificar @@ -443,7 +443,7 @@ Wipe all extra space on device (conv = sync) - Neteja tot l'espai extra al dispositiu (conv = sync) + Neteja tot l'espai extra al dispositiu (conv = sync) @@ -473,7 +473,7 @@ Admin Mode - Mode d'administrador + Mode d'administrador @@ -508,12 +508,12 @@ Administrator Permissions Needed - Calen permisos d'administrador + Calen permisos d'administrador This operation requires administrator priviledges. - Aquesta operació requereix privilegis d'administrador. + Aquesta operació requereix privilegis d'administrador. @@ -528,7 +528,7 @@ The process could not be completed: - El procés no s'ha pogut completar: + El procés no s'ha pogut completar: @@ -538,7 +538,7 @@ The image was successfully burned to the USB device - La imatge s'ha gravat correctament al dispositiu USB. + La imatge s'ha gravat correctament al dispositiu USB. -- cgit From c0920fa4f8d8750259c3fa1e0687fa5ba2bd2f6f Mon Sep 17 00:00:00 2001 From: q5sys Date: Wed, 20 Sep 2017 12:09:00 -0400 Subject: fix tab order for text replacement --- src-qt5/desktop-utils/lumina-fm-dev/main.cpp | 3 +++ src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.cpp | 4 ++++ src-qt5/desktop-utils/lumina-textedit/MainUI.ui | 7 ++++++- 3 files changed, 13 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm-dev/main.cpp b/src-qt5/desktop-utils/lumina-fm-dev/main.cpp index 61d2dc95..a4a6244e 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/main.cpp +++ b/src-qt5/desktop-utils/lumina-fm-dev/main.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include "MainUI.h" #include @@ -10,6 +11,7 @@ #include #include "BrowserWidget.h" +QElapsedTimer* timer = 0; int main(int argc, char ** argv) { @@ -27,6 +29,7 @@ int main(int argc, char ** argv) MainUI w; QObject::connect(&a, SIGNAL(InputsAvailable(QStringList)), &w, SLOT(slotSingleInstance(QStringList)) ); //QObject::connect(&themes, SIGNAL(updateIcons()), &w, SLOT(setupIcons()) ); + timer = new QElapsedTimer(); timer->start(); qDebug() << " - Init:" << timer->elapsed(); w.OpenDirs(in); w.show(); diff --git a/src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.cpp index 3790d145..2e837cfd 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.cpp @@ -28,6 +28,8 @@ #define DEBUG 0 +extern QElapsedTimer* timer; + DirWidget::DirWidget(QString objID, QWidget *parent) : QWidget(parent), ui(new Ui::DirWidget){ ui->setupUi(this); //load the designer file ID = objID; @@ -90,6 +92,8 @@ DirWidget::DirWidget(QString objID, QWidget *parent) : QWidget(parent), ui(new U createShortcuts(); createMenus(); line_dir->setCompleter(new QCompleter(dirtreeModel, this)); + qDebug() << " - Fini:" << timer->elapsed(); + } DirWidget::~DirWidget(){ diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.ui b/src-qt5/desktop-utils/lumina-textedit/MainUI.ui index de5c1ee1..fec94a21 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.ui @@ -182,7 +182,7 @@ 0 0 505 - 21 + 28 @@ -437,6 +437,11 @@ + + line_find + line_replace + tool_hideReplaceGroup + -- cgit From 6a574b439adb7836822643c0362cf9a0653e8e58 Mon Sep 17 00:00:00 2001 From: q5sys Date: Wed, 20 Sep 2017 12:17:47 -0400 Subject: set LTE unsaved changes close dialog to follow the industry standard --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index 52a29c01..4c2ce0bd 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -496,11 +496,11 @@ void MainUI::closeEvent(QCloseEvent *ev){ unsaved << tmp->currentFile(); } } - bool quitnow = unsaved.isEmpty(); - if(!quitnow && !ui->actionShow_Popups->isChecked()){ quitnow = true; } - if(!quitnow){ - quitnow = (QMessageBox::Yes == QMessageBox::question(this, tr("Lose Unsaved Changes?"), QString(tr("There are unsaved changes.\nDo you want to close the editor anyway?\n\n%1")).arg(unsaved.join("\n")), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) ); - } - if(quitnow){ QMainWindow::closeEvent(ev); } - else{ ev->ignore(); } + bool savenow = unsaved.isEmpty(); + if(!savenow && !ui->actionShow_Popups->isChecked()){ savenow = true; } + if(!savenow){ + savenow = (QMessageBox::Yes == QMessageBox::question(this, tr("Save Changes before closing?"), QString(tr("There are unsaved changes.\nDo you want save them before you close the editor?\n\n%1")).arg(unsaved.join("\n")), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) ); + } + if(!savenow){ QMainWindow::closeEvent(ev); } + else{ ev->ignore(); SaveFile(); } } -- cgit From 87b64504cec8f071e51a51b853b0bce0cafebb78 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 20 Sep 2017 21:24:28 +0000 Subject: Translated using Weblate (Danish) Currently translated at 100.0% (101 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/da/ --- .../lumina-archiver/i18n/l-archiver_da.ts | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts index de00be03..ad4de0bd 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts @@ -350,67 +350,67 @@ Multimedia - + Multimedie Development - + Udvikling Education - + Uddannelse Games - + Spil Graphics - + Grafik Network - + Netværk Office - + Kontor Science - + Videnskab Settings - + Indstillinger System - + System Utility - + Hjælpeværktøj Wine - + Wine Unsorted - + Usorteret -- cgit From 04cac79681e1b585b31cbdf24f9c58c1195988a0 Mon Sep 17 00:00:00 2001 From: Davidmp Date: Wed, 20 Sep 2017 14:58:11 +0000 Subject: Translated using Weblate (Catalan) Currently translated at 100.0% (101 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/ca/ --- src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts index f39823f0..9e347a2a 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts @@ -390,7 +390,7 @@ Settings - Configuració + Paràmetres -- cgit From 9496ff9024ecb455ef69552f494fab88ca8fa2e1 Mon Sep 17 00:00:00 2001 From: Pavel Borecki Date: Thu, 21 Sep 2017 05:22:48 +0000 Subject: Translated using Weblate (Czech) Currently translated at 100.0% (33 of 33 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/cs/ --- .../lumina-calculator/i18n/l-calc_cs.ts | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cs.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cs.ts index 4bb92c34..c1c731c0 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cs.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cs.ts @@ -6,67 +6,67 @@ Multimedia - + Multimédia Development - + Vývoj Education - + Výuka Games - + Hry Graphics - + Grafika Network - + Sítě Office - + Kancelář Science - + Věda Settings - + Nastavení System - + Systém Utility - + Nástroje Wine - + Wine Unsorted - + Různé -- cgit From a3092fb02a1905345e1311b2e64f4796acdb9f34 Mon Sep 17 00:00:00 2001 From: q5sys Date: Sun, 24 Sep 2017 19:58:16 -0400 Subject: rework video thumbnail code --- .../desktop-utils/lumina-fm/widgets/vidnail.cpp | 33 ++++++++++++++++++++++ src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h | 25 ++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp new file mode 100644 index 00000000..ee7fb9e3 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp @@ -0,0 +1,33 @@ +#include "vidnail.h" +vidnail::vidnail(QWidget *parent) : QMainWindow(parent), mplayer(parent, QMediaPlayer::VideoSurface){ //there is no UI, so not sure how to alter the constructor +} + +vidnail::~vidnail() +{ + +vidnail::grabvideothumbnail(){ + vsurface = new QAbstractVideoSurface(); + mplayer.setVideoOutput(vsurface); + mplayer.setMedia($file); // video file to get thumbnail of + imageCaptured = QPixmap(); + mplayer.setPosition(2000); // time in milliseconds + mplayer.setMuted(true); // just to make sure no sound is emited + mplayer.play(); + + currentFrame = frame; + const QImage::Format imageFormat = QVideoFrame::imageFormatFromPixelFormat(format.pixelFormat()); + const QSize size = format.frameSize(); + + this->imageFormat = imageFormat; + QAbstractVideoSurface::start(format); + QImage image( currentFrame.bits(), currentFrame.width(), currentFrame.height(), currentFrame.bytesPerLine(), imageFormat); + imageCaptured = QPixmap::fromImage(image.copy(image.rect())); + +// Now do scaling with regular thumbnail process to make proper size + + mplayer.stop(); + vsurface.stop(); +} + + + diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h new file mode 100644 index 00000000..ad565749 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h @@ -0,0 +1,25 @@ +#ifndef VIDNAIL_H +#define VIDNAIL_H + +#include +#include +#include "videowidgetsurface.h" +#include +#include +#include +#include +#include + +public: + + void grabvideothumbnail(); + +private: + + QAbstractVideoSurface *vsurface; + QImage::Format imageFormat; + QPixmap imageCaptured; + + +#endif // VIDNAIL_H + -- cgit From e92185222ea652436d0f5a36de25cbbd66347ea1 Mon Sep 17 00:00:00 2001 From: q5sys Date: Sun, 24 Sep 2017 20:25:21 -0400 Subject: prototype webdav functionality for lumina-fm --- .../desktop-utils/lumina-fm/widgets/fmwebdav.cpp | 23 ++++++++++++++ src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.h | 36 ++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.h (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp new file mode 100644 index 00000000..9c82aa3e --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp @@ -0,0 +1,23 @@ +#include "fmwebdav.h" + +fmwebdav::fmwebdav(QObject *parent) : QNetworkAccessManager(parent) ,wdRootPath(), wdUsername(), wdUassword(), wdBaseUrl(), wdCurrentConnectionType(QWebdav::HTTP){ +// typical Qnetwork connection stuff goes here +// probably ssl parts too +} + +fmwebdav::~fmwebdav(){ +} + +QString fmwebdav::hostname() const{ return wdBaseUrl.host(); } + +int fmwebdav::port() const{ return wdBaseUrl.port(); } + +QString fmwebdav::rootPath() const{ return wdRootPath;} + +QString fmwebdav::username() const{ return wdUsername; } + +QString fmwebdav::password() const{ return wdPassword; } + +fmwebdav::QWebdavConnectionType : fmwebdav::connectionType() const{ return wdCurrentConnectionType; } + +bool fmwebdav::isSSL() const{ return (wdCurrentConnectionType==QWebdav::HTTPS); } diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.h b/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.h new file mode 100644 index 00000000..04d29e3b --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.h @@ -0,0 +1,36 @@ +#ifndef FMWEBDAV_H +#define FMWEBDAV_H + +#include +#include +#include + +public: + + enum QWebdavConnectionType {HTTP = 1, HTTPS}; + + QString hostname() const; + int port() const; + QString rootPath() const; + QString username() const; + QString password() const; + QWebdavConnectionType connectionType() const; + bool isSSL() const; + + void setConnectionSettings( const QWebdavConnectionType connectionType, const QString *hostname, const QString *rootPath = "/", const QString *username = "", const QString *password = "", int *port = 0; + + +private: + + QString wdRootPath; + QString wdUsername; + QString wdPassword; + QUrl wdBaseUrl; + QWebdavConnectionType wdCurrentConnectionType; + + + + + + +#endif // FMWEBDAV -- cgit From fb13a95bcb1c88028e74a525c998d419984c3b28 Mon Sep 17 00:00:00 2001 From: q5sys Date: Sun, 24 Sep 2017 20:33:20 -0400 Subject: oops hadn't saved all my changes yet --- src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp index 9c82aa3e..6e65ebaf 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/fmwebdav.cpp @@ -21,3 +21,16 @@ QString fmwebdav::password() const{ return wdPassword; } fmwebdav::QWebdavConnectionType : fmwebdav::connectionType() const{ return wdCurrentConnectionType; } bool fmwebdav::isSSL() const{ return (wdCurrentConnectionType==QWebdav::HTTPS); } + +void QWebdav::setConnectionSettings(const QWebdavConnectionType connectionType, const QString *hostname, const QString *rootPath, const QString *username, const QString *password, int *port){ + wdRootPath = rootPath; + if ((wdRootPath.endsWith("/")){ wdRootPath.chop(1); } + wdCurrentConnectionType = connectionType; + wdBaseUrl.setScheme(); + wdBaseUrl.setHost(hostname); + wdBaseUrl.setPath(rootPath); + if (port != 0) { // use user-defined port number if not 80 or 443 + if ( ! ( ( (port == 80) && (wdCurrentConnectionType==QWebdav::HTTP) ) || ( (port == 443) && (wdCurrentConnectionType==QWebdav::HTTPS) ) ) ){ wdBaseUrl.setPort(port); } + wdUsername = username; + wdPassword = password; +} -- cgit From ebdfec8604b7cf308475c8907d9e70e6b13aeed9 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 26 Sep 2017 14:03:24 -0400 Subject: Fix up the close event handling in lumina-textedit. Now it will actually close when there are no changes to be saved. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index 4c2ce0bd..9e4ce499 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -496,11 +496,14 @@ void MainUI::closeEvent(QCloseEvent *ev){ unsaved << tmp->currentFile(); } } - bool savenow = unsaved.isEmpty(); + if(unsaved.isEmpty()){ QMainWindow::closeEvent(ev); return; } + bool savenow = false; if(!savenow && !ui->actionShow_Popups->isChecked()){ savenow = true; } if(!savenow){ - savenow = (QMessageBox::Yes == QMessageBox::question(this, tr("Save Changes before closing?"), QString(tr("There are unsaved changes.\nDo you want save them before you close the editor?\n\n%1")).arg(unsaved.join("\n")), QMessageBox::Yes | QMessageBox::No, QMessageBox::No) ); + QMessageBox::StandardButton but = QMessageBox::question(this, tr("Save Changes before closing?"), QString(tr("There are unsaved changes.\nDo you want save them before you close the editor?\n\n%1")).arg(unsaved.join("\n")), QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, QMessageBox::No); + savenow = (but == QMessageBox::Yes); + if(but == QMessageBox::Cancel){ ev->ignore(); return; } } - if(!savenow){ QMainWindow::closeEvent(ev); } - else{ ev->ignore(); SaveFile(); } + if(savenow){ SaveFile(); } + QMainWindow::closeEvent(ev); } -- cgit From 711b219a001d0c4fdd61367903696fa1c6ff1a3d Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Tue, 3 Oct 2017 15:24:26 -0400 Subject: Added experimental video thumbnails in lumina-fm and fileinfo --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 25 ++++++++- src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 9 ++-- .../lumina-fileinfo/lumina-fileinfo.pro | 3 +- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 62 ++++++++++++++++++---- src-qt5/desktop-utils/lumina-fm/Browser.h | 10 +++- src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 1 + 6 files changed, 91 insertions(+), 19 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index d82f09ce..4d695ab4 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -8,6 +8,7 @@ #include "MainUI.h" #include "ui_MainUI.h" +#include #include #include @@ -22,12 +23,17 @@ MainUI::MainUI() : QDialog(), ui(new Ui::MainUI){ terminate_thread = false; UpdateIcons(); //Set all the icons in the dialog SetupConnections(); + player = new QMediaPlayer(0, QMediaPlayer::VideoSurface); + surface = new LVideoSurface(); + player->setVideoOutput(surface); INFO = 0; } MainUI::~MainUI(){ terminate_thread = true; this->close(); + delete surface; + delete player; } //============= @@ -86,7 +92,15 @@ void MainUI::LoadFile(QString path, QString type){ ui->label_file_icon->setPixmap( pix.scaledToHeight(64) ); ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); //qDebug() << " - done with image"; - }else{ + }/*else if(INFO->isVideo()){ + player->setMedia(QUrl("file://"+INFO->absoluteFilePath())); + player->play(); + player->setPosition(player->duration() / 2); + connect(surface, SIGNAL(frameReceived(QImage)), this, SLOT(stopVideo(QImage))); + //Pixmap set when video is loaded in stopVideo + //ui->label_file_icon->setPixmap( QPixmap::fromImage(surface->frameImage()).scaledToHeight(64) ); + //ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); + }*/else{ ui->label_file_icon->setPixmap( LXDG::findIcon( INFO->iconfile(), "unknown").pixmap(QSize(64,64)) ); } //Now verify the tab is available in the widget @@ -103,7 +117,7 @@ void MainUI::LoadFile(QString path, QString type){ } //Now load the special XDG desktop info qDebug() << "Check XDG Info:" << type; - //qDebug() << INFO->isDesktopFile() << type; + qDebug() << INFO->isDesktopFile() << type; if(INFO->isDesktopFile() || !type.isEmpty()){ if(INFO->XDG()->type == XDGDesktop::APP){ @@ -296,6 +310,13 @@ void MainUI::getXdgCommand(QString prev){ xdgvaluechanged(); } +/*void MainUI::stopVideo(QImage img) { + static bool flag = true; + if(flag) { player->setPosition(player->duration() / 2); flag = false;} + player->pause(); + ui->label_file_icon->setPixmap( QPixmap::fromImage( img.scaledToHeight(64) )); +}*/ + void MainUI::on_tool_xdg_getDir_clicked(){ //Find a directory QString dir = ui->line_xdg_wdir->text(); diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index cbe23d9e..e1f37425 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -14,11 +14,11 @@ #define _LUMINA_FILE_INFO_MAIN_UI_H #include - +#include #include +#include -namespace Ui{ - class MainUI; +namespace Ui{ class MainUI; }; class MainUI : public QDialog{ @@ -35,6 +35,8 @@ public slots: private: Ui::MainUI *ui; LFileInfo *INFO; + LVideoSurface *surface; + QMediaPlayer *player; bool canwrite; bool terminate_thread; //flag for terminating the GetDirSize task @@ -51,6 +53,7 @@ private slots: //UI Buttons void on_push_close_clicked(); void on_push_save_clicked(); + //void stopVideo(QImage); void getXdgCommand(QString prev = ""); //void on_tool_xdg_getCommand_clicked(QString prev = ""); void on_tool_xdg_getDir_clicked(); diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro index bbaf842e..b53d8cba 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro +++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro @@ -1,7 +1,7 @@ include("$${PWD}/../../OS-detect.pri") QT += core gui -greaterThan(QT_MAJOR_VERSION, 4): QT += widgets concurrent +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets concurrent multimedia TARGET = lumina-fileinfo @@ -13,6 +13,7 @@ target.path = $${L_BINDIR} include(../../core/libLumina/LUtils.pri) #includes LUtils include(../../core/libLumina/LuminaXDG.pri) #include(../../core/libLumina/LuminaSingleApplication.pri) +include(../../core/libLumina/LVideoSurface.pri) include(../../core/libLumina/LuminaThemes.pri) SOURCES += main.cpp\ diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index f2bdc178..e57b6aed 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -16,10 +16,13 @@ Browser::Browser(QObject *parent) : QObject(parent){ watcher = new QFileSystemWatcher(this); connect(watcher, SIGNAL(fileChanged(const QString&)), this, SLOT(fileChanged(QString)) ); - connect(watcher, SIGNAL(directoryChanged(const QString&)), this, SLOT(dirChanged(QString)) ); + connect(watcher, SIGNAL(directoryChanged(const QString&)), this, SLOT(dirChanged(QString)) ); showHidden = false; showThumbs = false; imageFormats = LUtils::imageExtensions(false); //lowercase suffixes + videoFormats = LUtils::videoExtensions(); //lowercase suffixes + //connect(surface, SIGNAL(frameReceived(QImage)), this, SLOT(captureFrame(QImage))); + //connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); connect(this, SIGNAL(threadDone(QString, QImage)), this, SLOT(futureFinished(QString, QImage))); //will always be between different threads } @@ -60,12 +63,11 @@ void Browser::loadItem(QString info, Browser *obj){ file.close(); pix.loadFromData(bytes); if(pix.width() > 256 || pix.height() > 256 ){ - pix = pix.scaled(256,256, Qt::KeepAspectRatio, Qt::SmoothTransformation); + pix = pix.scaled(256,256, Qt::KeepAspectRatio); } } } - - //qDebug() << " - done with item:" << info; + qDebug() << " - done with item:" << info; obj->emit threadDone(info, pix); } @@ -92,22 +94,60 @@ void Browser::dirChanged(QString dir){ else if(dir.startsWith(currentDir)){ QtConcurrent::run(this, &Browser::loadItem, dir, this ); } } +/*void Browser::stopVideo(QMediaPlayer *player, QMediaPlayer::MediaStatus status) { + qDebug() << status; + if(status == QMediaPlayer::BufferedMedia) { + qDebug() << "stoppingVideo" << player << player->currentMedia().canonicalUrl(); + player->setPosition(player->duration() / 2); + player->pause(); + } +} + +void Browser::captureFrame(QImage pix) { + qDebug() << "grabbing frame"; + videoFrame = pix.scaledToHeight(64); + emit frameChanged(); +}*/ + void Browser::futureFinished(QString name, QImage icon){ //Note: this will be called once for every item that loads QIcon ico; - //LFileInfo info(name); LFileInfo *info = new LFileInfo(name); if(!icon.isNull() && showThumbs){ - //qDebug() << " -- Data:"; QPixmap pix = QPixmap::fromImage(icon); ico.addPixmap(pix); - //}else if(info->isDir()){ - //qDebug() << " -- Folder:"; - //ico = loadIcon("folder"); } if(ico.isNull()){ - //qDebug() << " -- MimeType:" << info.fileName() << info.mimetype(); - ico = loadIcon(info->iconfile()); + if(videoFormats.contains(name.section(".",-1).toLower())) { + qDebug() << "Loading Video for" << name; + qDebug() << "VIDEO" << info; + //qDebug() << obj << this << QThread::currentThread(); + QMediaPlayer *player = new QMediaPlayer(0, QMediaPlayer::VideoSurface); + qDebug() << " - created player"; + LVideoSurface *surface = new LVideoSurface(); + qDebug() << " - Create objects"; + //connect(surface, SIGNAL(frameReceived(QImage)), this, SLOT(captureFrame(QImage))); + //connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); + player->setVideoOutput(surface); + player->setVolume(0); + player->setMedia(QUrl("file://"+info->absoluteFilePath())); + player->play(); + qDebug() << "Wait for buffer"; + while(player->mediaStatus()!=QMediaPlayer::BufferedMedia){ + QCoreApplication::processEvents(); + } + player->pause(); + player->setPosition(player->duration()/2); + while(!surface->frameReady()) { + QCoreApplication::processEvents(); + } + qDebug() << "Load Frame"; + ico.addPixmap(QPixmap::fromImage(surface->currentFrame())); + delete player; + delete surface; + }else { + ico = loadIcon(info->iconfile()); + } } this->emit itemDataAvailable( ico, info); //qDebug() << " -- done:" << name; diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.h b/src-qt5/desktop-utils/lumina-fm/Browser.h index 94f6ba3f..7ccb5199 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.h +++ b/src-qt5/desktop-utils/lumina-fm/Browser.h @@ -15,6 +15,8 @@ #include //#include +#include +#include #include /*class FileItem{ public: @@ -43,8 +45,9 @@ public: private: QString currentDir; QFileSystemWatcher *watcher; + //QImage videoFrame; bool showHidden, showThumbs; - QStringList imageFormats, oldFiles; + QStringList imageFormats, videoFormats, oldFiles; QHash mimeIcons; //cache for quickly re-using QIcons void loadItem(QString info, Browser *obj); //this is the main loader class - multiple instances each run in a separate thread @@ -53,7 +56,8 @@ private: private slots: void fileChanged(QString); //tied into the watcher - for file change notifications void dirChanged(QString); // tied into the watcher - for new/removed files in the current dir - + //void captureFrame(QImage); + //void stopVideo(QMediaPlayer*, QMediaPlayer::MediaStatus); void futureFinished(QString, QImage); public slots: @@ -70,6 +74,8 @@ signals: //Internal signal for the alternate threads void threadDone(QString, QImage); + + //void frameChanged(); }; #endif diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index 6c340e14..6cb4a537 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -15,6 +15,7 @@ include(../../core/libLumina/LuminaXDG.pri) include(../../core/libLumina/LuminaSingleApplication.pri) include(../../core/libLumina/LuminaThemes.pri) include(../../core/libLumina/ExternalProcess.pri) +include(../../core/libLumina/LVideoSurface.pri) SOURCES += main.cpp \ MainUI.cpp \ -- cgit From 2f6d29bf06e77b45daa742a5c6c65a5ed0624dab Mon Sep 17 00:00:00 2001 From: q5sys Date: Tue, 3 Oct 2017 15:25:46 -0400 Subject: Revert "rework video thumbnail code" This reverts commit a3092fb02a1905345e1311b2e64f4796acdb9f34. --- .../desktop-utils/lumina-fm/widgets/vidnail.cpp | 33 ---------------------- src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h | 25 ---------------- 2 files changed, 58 deletions(-) delete mode 100644 src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp deleted file mode 100644 index ee7fb9e3..00000000 --- a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp +++ /dev/null @@ -1,33 +0,0 @@ -#include "vidnail.h" -vidnail::vidnail(QWidget *parent) : QMainWindow(parent), mplayer(parent, QMediaPlayer::VideoSurface){ //there is no UI, so not sure how to alter the constructor -} - -vidnail::~vidnail() -{ - -vidnail::grabvideothumbnail(){ - vsurface = new QAbstractVideoSurface(); - mplayer.setVideoOutput(vsurface); - mplayer.setMedia($file); // video file to get thumbnail of - imageCaptured = QPixmap(); - mplayer.setPosition(2000); // time in milliseconds - mplayer.setMuted(true); // just to make sure no sound is emited - mplayer.play(); - - currentFrame = frame; - const QImage::Format imageFormat = QVideoFrame::imageFormatFromPixelFormat(format.pixelFormat()); - const QSize size = format.frameSize(); - - this->imageFormat = imageFormat; - QAbstractVideoSurface::start(format); - QImage image( currentFrame.bits(), currentFrame.width(), currentFrame.height(), currentFrame.bytesPerLine(), imageFormat); - imageCaptured = QPixmap::fromImage(image.copy(image.rect())); - -// Now do scaling with regular thumbnail process to make proper size - - mplayer.stop(); - vsurface.stop(); -} - - - diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h deleted file mode 100644 index ad565749..00000000 --- a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef VIDNAIL_H -#define VIDNAIL_H - -#include -#include -#include "videowidgetsurface.h" -#include -#include -#include -#include -#include - -public: - - void grabvideothumbnail(); - -private: - - QAbstractVideoSurface *vsurface; - QImage::Format imageFormat; - QPixmap imageCaptured; - - -#endif // VIDNAIL_H - -- cgit From 62805a2e99df692201c8a0885e8b8e785949b634 Mon Sep 17 00:00:00 2001 From: q5sys Date: Tue, 3 Oct 2017 15:29:19 -0400 Subject: add libav video thumbnail code back to project --- .../desktop-utils/lumina-fm/widgets/vidnail.cpp | 61 ++++++++++++++++++++++ src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h | 13 +++++ 2 files changed, 74 insertions(+) create mode 100644 src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp new file mode 100644 index 00000000..ee76a8dc --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp @@ -0,0 +1,61 @@ +#ifndef VIDNAIL_H +#define VIDNAIL_H + +extern "C" { +#include +#include +} + +class VidNail; + +struct vFrame { + vFrame() : *width(0), *height(0) {} + vFrame(int *width, int *height : width(width), height(height) {} + int *width; + int *height; +}; + +public: + + QString getCodec(); + void goto(int timeInSeconds); + void readVideoFrame(); + void getScaledVideoFrame(int scaledSize, vFrame& vFrame); + + int getWidth(); + int getHeight(); + int getLength(); + + void makeThumbnail(const QString& videoFile, QImage &image); + void setThumbnailSize(int size); + void setPercentage(int percent); + void setTime(const QString& Time); + + void writeVidNail(vFrame& frame, QImage& image); + + + private: + + bool readVideoPacket(); + bool getVideoPacket(); + void scaleVideo(int scaledSize, int& scaledWidth, int& scaledHeight); + void createVFrame(AVFrame *vFrame, quint8 *frameBuffer, int width, int height); + void calculateDimensions(int size); + void generateThumbnail(const QString& videoFile, ImageWriter& imageWriter, QImage& +image); + QString getMimeType(const QString& videoFile); + QString getExtension(const QString& videoFilename); + + + private: + int videoStream; + AVFormatContext *inputVideoFormatContext; + AVCodecContext *inputvideoCodecContext; + AVCodec *inputVideoCodec; + AVStream *inputVideoStream; + AVFrame *inputVideoFrame; + quint8 *inputFrameBuffer; + AVPacket *videoPacket; + + +#endif // VIDNAIL_H diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h new file mode 100644 index 00000000..e13894e1 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.h @@ -0,0 +1,13 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2017, q5sys +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#include "vidnail.h" + +VidNail::VidNail(QObject *parent) : QObject(parent){ +} + +VidNail::~VidNail(){ +} -- cgit From 3005f7ab6b19cabf423b85ec7c3845d840c7cb18 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Tue, 3 Oct 2017 18:36:51 -0400 Subject: Reworked the VideoSurface subclass --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 37 ++++++++++++---------- src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 4 ++- .../desktop-utils/lumina-fm/widgets/vidnail.cpp | 6 ++-- 3 files changed, 26 insertions(+), 21 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index 4d695ab4..40d2d544 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -23,17 +23,20 @@ MainUI::MainUI() : QDialog(), ui(new Ui::MainUI){ terminate_thread = false; UpdateIcons(); //Set all the icons in the dialog SetupConnections(); - player = new QMediaPlayer(0, QMediaPlayer::VideoSurface); - surface = new LVideoSurface(); + player = new QMediaPlayer(this, QMediaPlayer::VideoSurface); + surface = new LVideoSurface(this); player->setVideoOutput(surface); + player->setMuted(true); + connect(player, SIGNAL(mediaStatusChanged(QMediaPlayer::MediaStatus)), this, SLOT(setDuration(QMediaPlayer::MediaStatus))); + connect(surface, SIGNAL(frameReceived(QPixmap)), this, SLOT(stopVideo(QPixmap))); INFO = 0; } MainUI::~MainUI(){ terminate_thread = true; + surface->deleteLater(); + player->deleteLater(); this->close(); - delete surface; - delete player; } //============= @@ -92,15 +95,12 @@ void MainUI::LoadFile(QString path, QString type){ ui->label_file_icon->setPixmap( pix.scaledToHeight(64) ); ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); //qDebug() << " - done with image"; - }/*else if(INFO->isVideo()){ + }else if(INFO->isVideo()){ player->setMedia(QUrl("file://"+INFO->absoluteFilePath())); player->play(); - player->setPosition(player->duration() / 2); - connect(surface, SIGNAL(frameReceived(QImage)), this, SLOT(stopVideo(QImage))); + player->pause(); //Pixmap set when video is loaded in stopVideo - //ui->label_file_icon->setPixmap( QPixmap::fromImage(surface->frameImage()).scaledToHeight(64) ); - //ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); - }*/else{ + }else{ ui->label_file_icon->setPixmap( LXDG::findIcon( INFO->iconfile(), "unknown").pixmap(QSize(64,64)) ); } //Now verify the tab is available in the widget @@ -117,7 +117,7 @@ void MainUI::LoadFile(QString path, QString type){ } //Now load the special XDG desktop info qDebug() << "Check XDG Info:" << type; - qDebug() << INFO->isDesktopFile() << type; + //qDebug() << INFO->isDesktopFile() << type; if(INFO->isDesktopFile() || !type.isEmpty()){ if(INFO->XDG()->type == XDGDesktop::APP){ @@ -310,12 +310,17 @@ void MainUI::getXdgCommand(QString prev){ xdgvaluechanged(); } -/*void MainUI::stopVideo(QImage img) { - static bool flag = true; - if(flag) { player->setPosition(player->duration() / 2); flag = false;} +void MainUI::stopVideo(QPixmap img) { + ui->label_file_icon->setPixmap( img.scaledToHeight(64) ); player->pause(); - ui->label_file_icon->setPixmap( QPixmap::fromImage( img.scaledToHeight(64) )); -}*/ +} + +void MainUI::setDuration(QMediaPlayer::MediaStatus status) { + if(status == QMediaPlayer::BufferedMedia) { + player->setPosition(player->duration() / 2); + player->play(); + } +} void MainUI::on_tool_xdg_getDir_clicked(){ //Find a directory diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index e1f37425..5ce7b01a 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -37,6 +37,7 @@ private: LFileInfo *INFO; LVideoSurface *surface; QMediaPlayer *player; + bool flag; bool canwrite; bool terminate_thread; //flag for terminating the GetDirSize task @@ -53,7 +54,8 @@ private slots: //UI Buttons void on_push_close_clicked(); void on_push_save_clicked(); - //void stopVideo(QImage); + void stopVideo(QPixmap); + void setDuration(QMediaPlayer::MediaStatus); void getXdgCommand(QString prev = ""); //void on_tool_xdg_getCommand_clicked(QString prev = ""); void on_tool_xdg_getDir_clicked(); diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp index ee76a8dc..d0ecdecf 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/vidnail.cpp @@ -18,7 +18,7 @@ struct vFrame { public: QString getCodec(); - void goto(int timeInSeconds); + void skipTo(int timeInSeconds); void readVideoFrame(); void getScaledVideoFrame(int scaledSize, vFrame& vFrame); @@ -35,14 +35,12 @@ public: private: - bool readVideoPacket(); bool getVideoPacket(); void scaleVideo(int scaledSize, int& scaledWidth, int& scaledHeight); void createVFrame(AVFrame *vFrame, quint8 *frameBuffer, int width, int height); void calculateDimensions(int size); - void generateThumbnail(const QString& videoFile, ImageWriter& imageWriter, QImage& -image); + void generateThumbnail(const QString& videoFile, ImageWriter& imageWriter, QImage& image); QString getMimeType(const QString& videoFile); QString getExtension(const QString& videoFilename); -- cgit From 2a9d6daa5afa326cc9769d23a64345efeb891ea7 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Tue, 3 Oct 2017 18:44:22 -0400 Subject: Reworked the video thumnail system with lumina-fm --- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 29 ++++++++++------------------- src-qt5/desktop-utils/lumina-fm/Browser.h | 9 ++++----- 2 files changed, 14 insertions(+), 24 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index e57b6aed..bebb92e7 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -94,8 +94,8 @@ void Browser::dirChanged(QString dir){ else if(dir.startsWith(currentDir)){ QtConcurrent::run(this, &Browser::loadItem, dir, this ); } } -/*void Browser::stopVideo(QMediaPlayer *player, QMediaPlayer::MediaStatus status) { - qDebug() << status; +void Browser::stopVideo(QMediaPlayer *player, QMediaPlayer::MediaStatus status) { + //qDebug() << status; if(status == QMediaPlayer::BufferedMedia) { qDebug() << "stoppingVideo" << player << player->currentMedia().canonicalUrl(); player->setPosition(player->duration() / 2); @@ -103,11 +103,11 @@ void Browser::dirChanged(QString dir){ } } -void Browser::captureFrame(QImage pix) { +void Browser::captureFrame(QPixmap pix) { qDebug() << "grabbing frame"; videoFrame = pix.scaledToHeight(64); emit frameChanged(); -}*/ +} void Browser::futureFinished(QString name, QImage icon){ //Note: this will be called once for every item that loads @@ -120,29 +120,20 @@ void Browser::futureFinished(QString name, QImage icon){ if(ico.isNull()){ if(videoFormats.contains(name.section(".",-1).toLower())) { qDebug() << "Loading Video for" << name; - qDebug() << "VIDEO" << info; - //qDebug() << obj << this << QThread::currentThread(); + //qDebug() << "VIDEO" << info; QMediaPlayer *player = new QMediaPlayer(0, QMediaPlayer::VideoSurface); qDebug() << " - created player"; LVideoSurface *surface = new LVideoSurface(); qDebug() << " - Create objects"; - //connect(surface, SIGNAL(frameReceived(QImage)), this, SLOT(captureFrame(QImage))); - //connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); + connect(surface, SIGNAL(frameReceived(QPixmap)), this, SLOT(captureFrame(QPixmap))); + connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); player->setVideoOutput(surface); - player->setVolume(0); + player->setMuted(true); player->setMedia(QUrl("file://"+info->absoluteFilePath())); player->play(); - qDebug() << "Wait for buffer"; - while(player->mediaStatus()!=QMediaPlayer::BufferedMedia){ - QCoreApplication::processEvents(); - } player->pause(); - player->setPosition(player->duration()/2); - while(!surface->frameReady()) { - QCoreApplication::processEvents(); - } - qDebug() << "Load Frame"; - ico.addPixmap(QPixmap::fromImage(surface->currentFrame())); + //ico.addPixmap(videoFrame); + ico = loadIcon(info->iconfile()); delete player; delete surface; }else { diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.h b/src-qt5/desktop-utils/lumina-fm/Browser.h index 7ccb5199..2dfae0be 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.h +++ b/src-qt5/desktop-utils/lumina-fm/Browser.h @@ -45,7 +45,7 @@ public: private: QString currentDir; QFileSystemWatcher *watcher; - //QImage videoFrame; + QPixmap videoFrame; bool showHidden, showThumbs; QStringList imageFormats, videoFormats, oldFiles; QHash mimeIcons; //cache for quickly re-using QIcons @@ -56,13 +56,12 @@ private: private slots: void fileChanged(QString); //tied into the watcher - for file change notifications void dirChanged(QString); // tied into the watcher - for new/removed files in the current dir - //void captureFrame(QImage); - //void stopVideo(QMediaPlayer*, QMediaPlayer::MediaStatus); + void captureFrame(QPixmap); + void stopVideo(QMediaPlayer*, QMediaPlayer::MediaStatus); void futureFinished(QString, QImage); public slots: void loadDirectory(QString dir = ""); - signals: //Main Signals void itemRemoved(QString item); //emitted if a file was removed from the underlying @@ -75,7 +74,7 @@ signals: //Internal signal for the alternate threads void threadDone(QString, QImage); - //void frameChanged(); + void frameChanged(); }; #endif -- cgit From 7de2db7ab54f9c82eaa8b2a494a745c37923f4db Mon Sep 17 00:00:00 2001 From: Coupon Date: Tue, 3 Oct 2017 20:45:30 -0400 Subject: Further lumina-fm changes for video thumbnails --- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 27 ++++++++++++++++----------- src-qt5/desktop-utils/lumina-fm/Browser.h | 4 ++-- 2 files changed, 18 insertions(+), 13 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index bebb92e7..211ef8d0 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -71,12 +71,12 @@ void Browser::loadItem(QString info, Browser *obj){ obj->emit threadDone(info, pix); } -QIcon Browser::loadIcon(QString icon){ +QIcon* Browser::loadIcon(QString icon){ if(!mimeIcons.contains(icon)){ mimeIcons.insert(icon, LXDG::findIcon(icon, "unknown")); } - return mimeIcons[icon]; + return &mimeIcons[icon]; } @@ -103,21 +103,21 @@ void Browser::stopVideo(QMediaPlayer *player, QMediaPlayer::MediaStatus status) } } -void Browser::captureFrame(QPixmap pix) { +void Browser::captureFrame(QPixmap pix, QIcon *ico) { qDebug() << "grabbing frame"; - videoFrame = pix.scaledToHeight(64); + *ico = pix.scaledToHeight(64); emit frameChanged(); } void Browser::futureFinished(QString name, QImage icon){ //Note: this will be called once for every item that loads - QIcon ico; + QIcon *ico = new QIcon(); LFileInfo *info = new LFileInfo(name); if(!icon.isNull() && showThumbs){ QPixmap pix = QPixmap::fromImage(icon); - ico.addPixmap(pix); + ico->addPixmap(pix); } - if(ico.isNull()){ + if(ico->isNull()){ if(videoFormats.contains(name.section(".",-1).toLower())) { qDebug() << "Loading Video for" << name; //qDebug() << "VIDEO" << info; @@ -125,22 +125,27 @@ void Browser::futureFinished(QString name, QImage icon){ qDebug() << " - created player"; LVideoSurface *surface = new LVideoSurface(); qDebug() << " - Create objects"; - connect(surface, SIGNAL(frameReceived(QPixmap)), this, SLOT(captureFrame(QPixmap))); + connect(surface, &LVideoSurface::frameReceived, this, [&] (QPixmap pix) { captureFrame(pix, ico); }); connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); player->setVideoOutput(surface); player->setMuted(true); player->setMedia(QUrl("file://"+info->absoluteFilePath())); player->play(); player->pause(); - //ico.addPixmap(videoFrame); - ico = loadIcon(info->iconfile()); + + QEventLoop loop; + connect(this, SIGNAL(frameChanged()), &loop, SLOT(quit())); + loop.exec(); + + ico->addPixmap(videoFrame); + //ico = loadIcon(info->iconfile()); delete player; delete surface; }else { ico = loadIcon(info->iconfile()); } } - this->emit itemDataAvailable( ico, info); + this->emit itemDataAvailable( *ico, info); //qDebug() << " -- done:" << name; } diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.h b/src-qt5/desktop-utils/lumina-fm/Browser.h index 2dfae0be..379753ab 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.h +++ b/src-qt5/desktop-utils/lumina-fm/Browser.h @@ -51,12 +51,12 @@ private: QHash mimeIcons; //cache for quickly re-using QIcons void loadItem(QString info, Browser *obj); //this is the main loader class - multiple instances each run in a separate thread - QIcon loadIcon(QString icon); //simplification for using/populating the mimIcons cache + QIcon* loadIcon(QString icon); //simplification for using/populating the mimIcons cache private slots: void fileChanged(QString); //tied into the watcher - for file change notifications void dirChanged(QString); // tied into the watcher - for new/removed files in the current dir - void captureFrame(QPixmap); + void captureFrame(QPixmap, QIcon*); void stopVideo(QMediaPlayer*, QMediaPlayer::MediaStatus); void futureFinished(QString, QImage); -- cgit From d731985427420c462d845b4279b14238e5527cae Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 4 Oct 2017 09:51:31 -0400 Subject: Finish up the auto archive/extract within lumina-archiver (with JT) --- src-qt5/desktop-utils/lumina-archiver/MainUI.cpp | 75 ++++++++++++++-------- src-qt5/desktop-utils/lumina-archiver/MainUI.h | 17 ++--- .../desktop-utils/lumina-archiver/TarBackend.cpp | 5 +- src-qt5/desktop-utils/lumina-archiver/TarBackend.h | 2 +- 4 files changed, 59 insertions(+), 40 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp index 9d220824..215fc64e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp @@ -20,7 +20,11 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ ui->setupUi(this); - auto_extract_close = false; + delayClose = new QTimer(this); + delayClose->setInterval(500); + delayClose->setSingleShot(true); + connect(delayClose, SIGNAL(timeout()), this, SLOT(close()) ); + QString title = tr("Archive Manager"); if( getuid()==0){ title.append(" ("+tr("Admin Mode")+")"); } this->setWindowTitle(title); @@ -70,33 +74,34 @@ MainUI::~MainUI(){ } void MainUI::LoadArguments(QStringList args){ - bool burnIMG = false; - bool autoExtract = false; - //bool autoArchive = false; + int action = -1; // 0: burnIMG, 1: autoExtract, 2: autoArchive + QStringList files; for(int i=0; ilabel_progress->setText(tr("Opening Archive...")); - if(autoExtract){ - connect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); - connect(BACKEND, SIGNAL(ExtractSuccessful()), this, SLOT(close()) ); - } - BACKEND->loadFile(args[i]); - ui->actionUSB_Image->setEnabled(args[i].simplified().endsWith(".img")); - if(burnIMG){ BurnImgToUSB(); } //Go ahead and launch the burn dialog right away - break; + if(args[i].startsWith("--") ){ + if(action>=0){ break; } + else if(args[i]=="--burn-img"){ action = 0; continue; } + else if(args[i]=="--ax"){ action = 1; continue; } + else if(args[i]=="--aa"){ action = 2; continue; } + }else{ + files << args[i]; } - //if(autoArchive){ - //get rest of arguments - //for(int i=1; ilabel_progress->setText(tr("Opening Archive...")); + if(action==1){ + connect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); + connect(BACKEND, SIGNAL(ExtractSuccessful()), delayClose, SLOT(start()) ); + }else if(action==2){ + aaFileList.clear(); + for(int j=1; jloadFile(files[0]); + ui->actionUSB_Image->setEnabled(files[0].simplified().endsWith(".img")); + if(action==0){ BurnImgToUSB(); } //Go ahead and launch the burn dialog right away + } void MainUI::loadIcons(){ @@ -258,13 +263,27 @@ void MainUI::autoextractFiles(){ disconnect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); QString dir = BACKEND->currentFile().section("/",0,-2); //parent directory of the archive if(dir.isEmpty()){ return; } + QDir tmp(dir); + QString name = BACKEND->currentFile().section("/",-1).section(".",0,0); + if(QFile::exists(dir+"/"+name)){ + int num = 1; + while( QFile::exists(dir+"/"+name+"_"+QString::number(num))){ num++; } + name = name+"_"+QString::number(num); + } + if(tmp.mkdir(name) ){ + dir.append("/"+name); //created sub directory + } ui->label_progress->setText(tr("Extracting...")); BACKEND->startExtract(dir, true); } -/* -void MainUI::autoArchiveFiles(aaFileList){ -*/ + +void MainUI::autoArchiveFiles(){ + qDebug() << "Auto Archive Files:" << aaFileList; + ui->label_progress->setText(tr("Adding Items...")); + BACKEND->startAdd(aaFileList); +} + void MainUI::extractSelection(){ if(ui->tree_contents->currentItem()==0){ return; } //nothing selected diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.h b/src-qt5/desktop-utils/lumina-archiver/MainUI.h index a2687895..a16d5862 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.h +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.h @@ -10,6 +10,7 @@ #include #include #include +#include #include "TarBackend.h" @@ -24,20 +25,20 @@ public: ~MainUI(); void LoadArguments(QStringList); - void loadIcons(); - //QStringList aaFileList; + void loadIcons(); private: Ui::MainUI *ui; Backend *BACKEND; - bool auto_extract_close; + QStringList aaFileList; + QTimer *delayClose; QTreeWidgetItem* findItem(QString path, QTreeWidgetItem *start = 0); bool cleanItems(QStringList list, QTreeWidgetItem *start = 0); //returns true if anything gets cleaned //Functions for setting the valid file extensions ("tar" limitations) QString CreateFileTypes(); - QString OpenFileTypes(); + QString OpenFileTypes(); private slots: void NewArchive(); @@ -45,14 +46,14 @@ private slots: void addFiles(); void addDirs(); void remFiles(); - void extractFiles(); - void autoextractFiles(); - //void autoArchiveFiles(QStringList aaFileList); + void extractFiles(); + void autoextractFiles(); + void autoArchiveFiles(); void extractSelection(); void ViewFile(QTreeWidgetItem *it); void UpdateTree(); - void BurnImgToUSB(); + void BurnImgToUSB(); //Backend Handling void ProcStarting(); diff --git a/src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp b/src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp index e0b802a4..f110624b 100644 --- a/src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp @@ -36,7 +36,7 @@ void Backend::loadFile(QString path){ flags.clear(); flags << "-f" << filepath; //add the actual archive path if(QFile::exists(path)){ startList(); qDebug () << "BACKEND LOAD startList has started";} - else{ contents.clear(); emit ProcessFinished(true, ""); } + else{ contents.clear(); emit FileLoaded(); emit ProcessFinished(true, ""); } } bool Backend::canModify(){ @@ -262,8 +262,7 @@ void Backend::procFinished(int retcode, QProcess::ExitStatus){ } } if(args.contains("-x")){ result = tr("Extraction Finished"); emit ExtractSuccessful(); } - //if(args.contains("-aa")){ result = tr("Archival Finished"); emit ArchivalSuccessful(); } - else if(args.contains("-c")){ result = tr("Modification Finished"); } + else if(args.contains("-c")){ result = tr("Modification Finished"); emit ArchivalSuccessful(); } if(needupdate){ startList(); } else{ emit ProcessFinished(retcode==0, result); result.clear(); } } diff --git a/src-qt5/desktop-utils/lumina-archiver/TarBackend.h b/src-qt5/desktop-utils/lumina-archiver/TarBackend.h index d86ecf7c..183cb610 100644 --- a/src-qt5/desktop-utils/lumina-archiver/TarBackend.h +++ b/src-qt5/desktop-utils/lumina-archiver/TarBackend.h @@ -64,7 +64,7 @@ signals: void ProcessStarting(); void ProgressUpdate(int, QString); //percentage, text void ProcessFinished(bool, QString); //success, text - //void ArchivalSuccessful(); + void ArchivalSuccessful(); }; #endif -- cgit From 79fbc99707377264761434b44147281457189691 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Thu, 5 Oct 2017 17:06:58 -0400 Subject: Finished video thumnails for lumina-fm and lumina-fileinfo --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 9 ++- src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 2 + src-qt5/desktop-utils/lumina-fm/Browser.cpp | 97 ++++++++++++++---------- src-qt5/desktop-utils/lumina-fm/Browser.h | 2 +- 4 files changed, 69 insertions(+), 41 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index 40d2d544..0fb736d3 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -25,6 +25,7 @@ MainUI::MainUI() : QDialog(), ui(new Ui::MainUI){ SetupConnections(); player = new QMediaPlayer(this, QMediaPlayer::VideoSurface); surface = new LVideoSurface(this); + qDebug() << surface->surfaceFormat(); player->setVideoOutput(surface); player->setMuted(true); connect(player, SIGNAL(mediaStatusChanged(QMediaPlayer::MediaStatus)), this, SLOT(setDuration(QMediaPlayer::MediaStatus))); @@ -96,7 +97,11 @@ void MainUI::LoadFile(QString path, QString type){ ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); //qDebug() << " - done with image"; }else if(INFO->isVideo()){ - player->setMedia(QUrl("file://"+INFO->absoluteFilePath())); + timer.start(); + QMediaResource video = QMediaResource(QUrl("file://"+INFO->absoluteFilePath())); + video.setResolution(64,64); + player->setMedia(video); + //player->setMedia(QUrl("file://"+INFO->absoluteFilePath())); player->play(); player->pause(); //Pixmap set when video is loaded in stopVideo @@ -313,6 +318,8 @@ void MainUI::getXdgCommand(QString prev){ void MainUI::stopVideo(QPixmap img) { ui->label_file_icon->setPixmap( img.scaledToHeight(64) ); player->pause(); + qDebug() << timer.elapsed(); + qDebug() << player->media().canonicalResource().resolution(); } void MainUI::setDuration(QMediaPlayer::MediaStatus status) { diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index 5ce7b01a..3bc85aae 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -17,6 +17,7 @@ #include #include #include +#include namespace Ui{ class MainUI; }; @@ -38,6 +39,7 @@ private: LVideoSurface *surface; QMediaPlayer *player; bool flag; + QElapsedTimer timer; bool canwrite; bool terminate_thread; //flag for terminating the GetDirSize task diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index 211ef8d0..e0e79d04 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -66,6 +66,8 @@ void Browser::loadItem(QString info, Browser *obj){ pix = pix.scaled(256,256, Qt::KeepAspectRatio); } } + }else if(videoFormats.contains(info.section(".",-1).toLower()) ){ + videoList.push_back(info); } qDebug() << " - done with item:" << info; obj->emit threadDone(info, pix); @@ -97,60 +99,77 @@ void Browser::dirChanged(QString dir){ void Browser::stopVideo(QMediaPlayer *player, QMediaPlayer::MediaStatus status) { //qDebug() << status; if(status == QMediaPlayer::BufferedMedia) { - qDebug() << "stoppingVideo" << player << player->currentMedia().canonicalUrl(); + //qDebug() << "stoppingVideo" << player << player->currentMedia().canonicalUrl(); player->setPosition(player->duration() / 2); player->pause(); } } void Browser::captureFrame(QPixmap pix, QIcon *ico) { - qDebug() << "grabbing frame"; - *ico = pix.scaledToHeight(64); - emit frameChanged(); + static int received = 0; + //qDebug() << "grabbing frame" << received+1; + *ico = pix/*.scaledToHeight(64)*/; + if(++received == videoList.size()) { + emit frameChanged(); + received = 0; + } } void Browser::futureFinished(QString name, QImage icon){ //Note: this will be called once for every item that loads - QIcon *ico = new QIcon(); - LFileInfo *info = new LFileInfo(name); - if(!icon.isNull() && showThumbs){ - QPixmap pix = QPixmap::fromImage(icon); - ico->addPixmap(pix); - } - if(ico->isNull()){ - if(videoFormats.contains(name.section(".",-1).toLower())) { - qDebug() << "Loading Video for" << name; - //qDebug() << "VIDEO" << info; - QMediaPlayer *player = new QMediaPlayer(0, QMediaPlayer::VideoSurface); - qDebug() << " - created player"; - LVideoSurface *surface = new LVideoSurface(); - qDebug() << " - Create objects"; - connect(surface, &LVideoSurface::frameReceived, this, [&] (QPixmap pix) { captureFrame(pix, ico); }); - connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); - player->setVideoOutput(surface); - player->setMuted(true); - player->setMedia(QUrl("file://"+info->absoluteFilePath())); - player->play(); - player->pause(); - - QEventLoop loop; - connect(this, SIGNAL(frameChanged()), &loop, SLOT(quit())); - loop.exec(); - - ico->addPixmap(videoFrame); - //ico = loadIcon(info->iconfile()); - delete player; - delete surface; - }else { - ico = loadIcon(info->iconfile()); - } + QIcon *ico = new QIcon(); + LFileInfo *info = new LFileInfo(name); + if(!icon.isNull() && showThumbs){ + QPixmap pix = QPixmap::fromImage(icon); + ico->addPixmap(pix); + } + if(ico->isNull()){ + if(videoFormats.contains(name.section(".",-1).toLower())) { + QElapsedTimer loadingTime; + //qDebug() << videoList; + //videoList.add(name); + //qDebug() << "Loading Video for" << name; + //qDebug() << "VIDEO" << info; + QMediaPlayer *player = new QMediaPlayer(0, QMediaPlayer::VideoSurface); + //qDebug() << " - created player" << player; + LVideoSurface *surface = new LVideoSurface(); + //qDebug() << " - Create objects"; + connect(surface, &LVideoSurface::frameReceived, this, [&] (QPixmap pix) { captureFrame(pix, ico); }); + connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); + player->setVideoOutput(surface); + player->setMuted(true); + QMediaResource video = QMediaResource(QUrl("file://"+info->absoluteFilePath())); + video.setResolution(QSize(64, 64)); + player->setMedia(video); + //player->setMedia(QUrl("file://"+info->absoluteFilePath())); + player->play(); + player->pause(); + + //qDebug() << "Started loop"; + loadingTime.start(); + QTimer timeout; + timeout.setSingleShot(true); + timeout.setInterval(5000); + QEventLoop loop; + connect(this, SIGNAL(frameChanged()), &loop, SLOT(quit()), Qt::DirectConnection); + connect(&timeout, SIGNAL(timeout()), &loop, SLOT(quit())); + loop.exec(); + //qDebug() << "Exited loop"; + + qDebug() << loadingTime.elapsed(); + delete player; + delete surface; + }else { + ico = loadIcon(info->iconfile()); } - this->emit itemDataAvailable( *ico, info); - //qDebug() << " -- done:" << name; + } + this->emit itemDataAvailable( *ico, info); + //qDebug() << " -- done:" << name; } // PUBLIC SLOTS void Browser::loadDirectory(QString dir){ + videoList.clear(); if(dir.isEmpty()){ dir = currentDir; } //reload current directory if(dir.isEmpty()){ return; } //nothing to do - nothing previously loaded //qDebug() << "Load Directory" << dir; diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.h b/src-qt5/desktop-utils/lumina-fm/Browser.h index 379753ab..004bf046 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.h +++ b/src-qt5/desktop-utils/lumina-fm/Browser.h @@ -45,7 +45,7 @@ public: private: QString currentDir; QFileSystemWatcher *watcher; - QPixmap videoFrame; + QList videoList; bool showHidden, showThumbs; QStringList imageFormats, videoFormats, oldFiles; QHash mimeIcons; //cache for quickly re-using QIcons -- cgit From 860d2ca1863f3838b5575c6efc2151a7270b0d79 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 9 Oct 2017 16:06:38 -0400 Subject: Clean up how the backend of the file manager handles atomic updates to changes in the current directory. This speeds up sequential re-scans considerably. --- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 43 +++++++++++++++------- src-qt5/desktop-utils/lumina-fm/Browser.h | 10 +++-- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 10 ++--- src-qt5/desktop-utils/lumina-fm/BrowserWidget.h | 2 +- .../desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 2 +- 5 files changed, 42 insertions(+), 25 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index e0e79d04..4665ccc4 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -35,6 +35,7 @@ QString Browser::currentDirectory(){ return currentDir; } void Browser::showHiddenFiles(bool show){ if(show !=showHidden){ showHidden = show; + lastcheck = QDateTime(); //reset this timestamp - need to reload all if(!currentDir.isEmpty()){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } } } @@ -45,6 +46,7 @@ bool Browser::showingHiddenFiles(){ void Browser::showThumbnails(bool show){ if(show != showThumbs){ showThumbs = show; + lastcheck = QDateTime(); //reset this timestamp - need to reload all if(!currentDir.isEmpty()){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } } } @@ -69,7 +71,7 @@ void Browser::loadItem(QString info, Browser *obj){ }else if(videoFormats.contains(info.section(".",-1).toLower()) ){ videoList.push_back(info); } - qDebug() << " - done with item:" << info; + //qDebug() << " - done with item:" << info; obj->emit threadDone(info, pix); } @@ -84,15 +86,19 @@ QIcon* Browser::loadIcon(QString icon){ // PRIVATE SLOTS void Browser::fileChanged(QString file){ - if(file.startsWith(currentDir+"/") ){ + //qDebug() << "Got File Changed:" << file; + if(file.section("/",0,-2) == currentDir){ if(QFile::exists(file) ){ QtConcurrent::run(this, &Browser::loadItem, file, this); } //file modified but not removed - else{ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } //file removed - need to update entire dir - }else if(file==currentDir){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } + else if(oldFiles.contains(file) ){ + oldFiles.removeAll(file); + emit itemRemoved(file); + } + }//else if(file==currentDir){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } } void Browser::dirChanged(QString dir){ - - if(dir==currentDir){ QTimer::singleShot(500, this, SLOT(loadDirectory()) ); } + //qDebug() << "Got Dir Changed:" << dir; + if(dir==currentDir){ QTimer::singleShot(10, this, SLOT(loadDirectory()) ); } else if(dir.startsWith(currentDir)){ QtConcurrent::run(this, &Browser::loadItem, dir, this ); } } @@ -109,7 +115,7 @@ void Browser::captureFrame(QPixmap pix, QIcon *ico) { static int received = 0; //qDebug() << "grabbing frame" << received+1; *ico = pix/*.scaledToHeight(64)*/; - if(++received == videoList.size()) { + if(++received == videoList.size()) { emit frameChanged(); received = 0; } @@ -145,7 +151,7 @@ void Browser::futureFinished(QString name, QImage icon){ player->play(); player->pause(); - //qDebug() << "Started loop"; + //qDebug() << "Started loop"; loadingTime.start(); QTimer timeout; timeout.setSingleShot(true); @@ -154,7 +160,7 @@ void Browser::futureFinished(QString name, QImage icon){ connect(this, SIGNAL(frameChanged()), &loop, SLOT(quit()), Qt::DirectConnection); connect(&timeout, SIGNAL(timeout()), &loop, SLOT(quit())); loop.exec(); - //qDebug() << "Exited loop"; + //qDebug() << "Exited loop"; qDebug() << loadingTime.elapsed(); delete player; @@ -168,16 +174,21 @@ void Browser::futureFinished(QString name, QImage icon){ } // PUBLIC SLOTS -void Browser::loadDirectory(QString dir){ +void Browser::loadDirectory(QString dir, bool force){ + if(force){ lastcheck = QDateTime(); } //reset check time to force reloads videoList.clear(); if(dir.isEmpty()){ dir = currentDir; } //reload current directory if(dir.isEmpty()){ return; } //nothing to do - nothing previously loaded //qDebug() << "Load Directory" << dir; + bool dirupdate = true; if(currentDir != dir){ //let the main widget know to clear all current items (completely different dir) oldFiles.clear(); + lastcheck = QDateTime(); //null time emit clearItems(); + dirupdate = false; } currentDir = dir; //save this for later + QDateTime now = QDateTime::currentDateTime(); //clean up the watcher first QStringList watched; watched << watcher->files() << watcher->directories(); if(!watched.isEmpty()){ watcher->removePaths(watched); } @@ -189,15 +200,18 @@ void Browser::loadDirectory(QString dir){ QStringList files; if(showHidden){ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoDotAndDotDot, QDir::NoSort); } else{ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot, QDir::NoSort); } - emit itemsLoading(files.length()); + if(dirupdate){ emit itemsLoading(files.length()); } for(int i=0; iaddPath(directory.absoluteFilePath(files[i])); - //qDebug() << "Future Starting:" << files[i]; QString path = directory.absoluteFilePath(files[i]); - if(old.contains(path)){ old.removeAll(path); } oldFiles << path; //add to list for next time + bool reloaditem = !dirupdate || lastcheck.isNull() || (QFileInfo(path).lastModified() > lastcheck || QFileInfo(path).created() > lastcheck); + //if(dirupdate){ qDebug() << "Reload Item:" << reloaditem << path.section("/",-1); } + //reloaditem = true; + if(old.contains(path)){ old.removeAll(path); } //still in existance //if(showThumbs && imageFormats.contains(path.section(".",-1).toLower())){ - QtConcurrent::run(this, &Browser::loadItem, path, this); + //qDebug() << "Future Starting:" << files[i]; + if(reloaditem){ QtConcurrent::run(this, &Browser::loadItem, path, this); } /*}else{ //No special icon loading - just skip the file read step futureFinished(path, QImage()); //loadItem(path, this); @@ -213,4 +227,5 @@ void Browser::loadDirectory(QString dir){ }else{ emit itemsLoading(0); //nothing to load } + lastcheck = now; // save this for later } diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.h b/src-qt5/desktop-utils/lumina-fm/Browser.h index 004bf046..3254db54 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.h +++ b/src-qt5/desktop-utils/lumina-fm/Browser.h @@ -44,8 +44,9 @@ public: private: QString currentDir; + QDateTime lastcheck; QFileSystemWatcher *watcher; - QList videoList; + QList videoList; bool showHidden, showThumbs; QStringList imageFormats, videoFormats, oldFiles; QHash mimeIcons; //cache for quickly re-using QIcons @@ -56,12 +57,13 @@ private: private slots: void fileChanged(QString); //tied into the watcher - for file change notifications void dirChanged(QString); // tied into the watcher - for new/removed files in the current dir - void captureFrame(QPixmap, QIcon*); - void stopVideo(QMediaPlayer*, QMediaPlayer::MediaStatus); + void captureFrame(QPixmap, QIcon*); + void stopVideo(QMediaPlayer*, QMediaPlayer::MediaStatus); void futureFinished(QString, QImage); public slots: - void loadDirectory(QString dir = ""); + void loadDirectory(QString dir = "", bool force = false); + signals: //Main Signals void itemRemoved(QString item); //emitted if a file was removed from the underlying diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index d5f219bb..d2c07648 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -24,7 +24,7 @@ BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ connect(BROWSER, SIGNAL(itemRemoved(QString)), this, SLOT(itemRemoved(QString)) ); connect(BROWSER, SIGNAL(itemDataAvailable(QIcon, LFileInfo*)), this, SLOT(itemDataAvailable(QIcon, LFileInfo*)) ); connect(BROWSER, SIGNAL(itemsLoading(int)), this, SLOT(itemsLoading(int)) ); - connect(this, SIGNAL(dirChange(QString)), BROWSER, SLOT(loadDirectory(QString)) ); + connect(this, SIGNAL(dirChange(QString, bool)), BROWSER, SLOT(loadDirectory(QString, bool)) ); listWidget = 0; treeWidget = 0; readDateFormat(); @@ -50,7 +50,7 @@ void BrowserWidget::changeDirectory(QString dir){ if( (historyList.isEmpty() || historyList.last()!=cleaned) && !cleaned.isEmpty() ){ historyList << cleaned; } } //qDebug() << "History:" << historyList; - emit dirChange(dir); + emit dirChange(dir, false); } void BrowserWidget::showDetails(bool show){ @@ -81,7 +81,7 @@ void BrowserWidget::showDetails(bool show){ connect(treeWidget, SIGNAL(GotFocus()), this, SLOT(selectionChanged()) ); retranslate(); treeWidget->sortItems(0, Qt::AscendingOrder); - if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange(""); } + if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange("", true); } }else if(!show && listWidget==0){ listWidget = new DDListWidget(this); listWidget->setContextMenuPolicy(Qt::CustomContextMenu); @@ -91,7 +91,7 @@ void BrowserWidget::showDetails(bool show){ connect(listWidget, SIGNAL(customContextMenuRequested(const QPoint&)), this, SIGNAL(contextMenuRequested()) ); connect(listWidget, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(DataDropped(QString, QStringList)) ); connect(listWidget, SIGNAL(GotFocus()), this, SLOT(selectionChanged()) ); - if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange(""); } + if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange("",true); } } //qDebug() << " Done making widget"; } @@ -127,7 +127,7 @@ void BrowserWidget::setThumbnailSize(int px){ } //qDebug() << "Changing Icon Size:" << px << larger; if(BROWSER->currentDirectory().isEmpty() || !larger ){ return; } //don't need to reload icons unless the new size is larger - emit dirChange(""); + emit dirChange("", larger); } int BrowserWidget::thumbnailSize(){ diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h index fafb3746..a9e58bf3 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h @@ -88,7 +88,7 @@ signals: void hasFocus(QString); //ID output //Internal signal - void dirChange(QString); //current dir path + void dirChange(QString, bool); //current dir path, force }; #endif diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 8273d09c..1b00343d 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -59,7 +59,7 @@ DirWidget::DirWidget(QString objID, QSettings *settings, QWidget *parent) : QWid RCBW = 0; //right column browser is unavailable initially BW = new BrowserWidget("", this); ui->browser_layout->addWidget(BW); - connect(BW, SIGNAL(dirChange(QString)), this, SLOT(currentDirectoryChanged()) ); + connect(BW, SIGNAL(dirChange(QString, bool)), this, SLOT(currentDirectoryChanged()) ); connect(BW, SIGNAL(itemsActivated()), this, SLOT(runFiles()) ); connect(BW, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(PasteFiles(QString, QStringList)) ); connect(BW, SIGNAL(contextMenuRequested()), this, SLOT(OpenContextMenu()) ); -- cgit From f649d4976e64cfdf9b32022d55bfd08f39d00a8f Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Wed, 11 Oct 2017 20:51:56 -0400 Subject: Added framework to play video when the mouse is put over them. Breaks picture and video preview for lumina-fileinfo currently --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 39 ++-------------------- src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 3 +- .../lumina-fileinfo/lumina-fileinfo.pro | 2 +- 3 files changed, 5 insertions(+), 39 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index 0fb736d3..4ec8fae7 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -23,20 +23,11 @@ MainUI::MainUI() : QDialog(), ui(new Ui::MainUI){ terminate_thread = false; UpdateIcons(); //Set all the icons in the dialog SetupConnections(); - player = new QMediaPlayer(this, QMediaPlayer::VideoSurface); - surface = new LVideoSurface(this); - qDebug() << surface->surfaceFormat(); - player->setVideoOutput(surface); - player->setMuted(true); - connect(player, SIGNAL(mediaStatusChanged(QMediaPlayer::MediaStatus)), this, SLOT(setDuration(QMediaPlayer::MediaStatus))); - connect(surface, SIGNAL(frameReceived(QPixmap)), this, SLOT(stopVideo(QPixmap))); INFO = 0; } MainUI::~MainUI(){ terminate_thread = true; - surface->deleteLater(); - player->deleteLater(); this->close(); } @@ -91,20 +82,10 @@ void MainUI::LoadFile(QString path, QString type){ ui->label_file_type->setText(ftype); //Now load the icon for the file if(INFO->isImage()){ - //qDebug() << "Set Image:"; - QPixmap pix(INFO->absoluteFilePath()); - ui->label_file_icon->setPixmap( pix.scaledToHeight(64) ); - ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); - //qDebug() << " - done with image"; + ui->label_file_icon = new LVideoLabel(INFO->absoluteFilePath(), false); + //ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); }else if(INFO->isVideo()){ - timer.start(); - QMediaResource video = QMediaResource(QUrl("file://"+INFO->absoluteFilePath())); - video.setResolution(64,64); - player->setMedia(video); - //player->setMedia(QUrl("file://"+INFO->absoluteFilePath())); - player->play(); - player->pause(); - //Pixmap set when video is loaded in stopVideo + ui->label_file_icon = new LVideoLabel(INFO->absoluteFilePath(), true); }else{ ui->label_file_icon->setPixmap( LXDG::findIcon( INFO->iconfile(), "unknown").pixmap(QSize(64,64)) ); } @@ -315,20 +296,6 @@ void MainUI::getXdgCommand(QString prev){ xdgvaluechanged(); } -void MainUI::stopVideo(QPixmap img) { - ui->label_file_icon->setPixmap( img.scaledToHeight(64) ); - player->pause(); - qDebug() << timer.elapsed(); - qDebug() << player->media().canonicalResource().resolution(); -} - -void MainUI::setDuration(QMediaPlayer::MediaStatus status) { - if(status == QMediaPlayer::BufferedMedia) { - player->setPosition(player->duration() / 2); - player->play(); - } -} - void MainUI::on_tool_xdg_getDir_clicked(){ //Find a directory QString dir = ui->line_xdg_wdir->text(); diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index 3bc85aae..8cac813c 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -17,6 +17,7 @@ #include #include #include +#include #include namespace Ui{ class MainUI; @@ -56,8 +57,6 @@ private slots: //UI Buttons void on_push_close_clicked(); void on_push_save_clicked(); - void stopVideo(QPixmap); - void setDuration(QMediaPlayer::MediaStatus); void getXdgCommand(QString prev = ""); //void on_tool_xdg_getCommand_clicked(QString prev = ""); void on_tool_xdg_getDir_clicked(); diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro index b53d8cba..14345f50 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro +++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro @@ -13,7 +13,7 @@ target.path = $${L_BINDIR} include(../../core/libLumina/LUtils.pri) #includes LUtils include(../../core/libLumina/LuminaXDG.pri) #include(../../core/libLumina/LuminaSingleApplication.pri) -include(../../core/libLumina/LVideoSurface.pri) +include(../../core/libLumina/LVideoLabel.pri) include(../../core/libLumina/LuminaThemes.pri) SOURCES += main.cpp\ -- cgit From cd928a79ff4bf6da55689bc100168355ec962b50 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Mon, 16 Oct 2017 21:00:07 -0400 Subject: Updated how video thumbnails are loaded. Now cached to stop crash when resizing. --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 12 +++- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 77 +++++------------------- src-qt5/desktop-utils/lumina-fm/Browser.h | 7 +-- src-qt5/desktop-utils/lumina-fm/BrowserWidget.h | 1 + src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 3 +- 5 files changed, 29 insertions(+), 71 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index 4ec8fae7..58ef8cbd 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -80,12 +80,17 @@ void MainUI::LoadFile(QString path, QString type){ 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 = new LVideoLabel(INFO->absoluteFilePath(), false); - //ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); + QPixmap pix(INFO->absoluteFilePath()); + ui->label_file_icon->setPixmap(pix.scaledToHeight(64)); + ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); }else if(INFO->isVideo()){ - ui->label_file_icon = new LVideoLabel(INFO->absoluteFilePath(), true); + ui->label_file_icon->hide(); + LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), ui->tab_file); + mediaLabel->setShrinkPixmap(true); + ui->formLayout->replaceWidget(ui->label_file_icon, mediaLabel); }else{ ui->label_file_icon->setPixmap( LXDG::findIcon( INFO->iconfile(), "unknown").pixmap(QSize(64,64)) ); } @@ -101,6 +106,7 @@ void MainUI::LoadFile(QString path, QString type){ ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_file) ); } } + //Now load the special XDG desktop info qDebug() << "Check XDG Info:" << type; //qDebug() << INFO->isDesktopFile() << type; diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index 4665ccc4..d829fff0 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -68,8 +68,6 @@ void Browser::loadItem(QString info, Browser *obj){ pix = pix.scaled(256,256, Qt::KeepAspectRatio); } } - }else if(videoFormats.contains(info.section(".",-1).toLower()) ){ - videoList.push_back(info); } //qDebug() << " - done with item:" << info; obj->emit threadDone(info, pix); @@ -79,7 +77,6 @@ QIcon* Browser::loadIcon(QString icon){ if(!mimeIcons.contains(icon)){ mimeIcons.insert(icon, LXDG::findIcon(icon, "unknown")); } - return &mimeIcons[icon]; } @@ -102,72 +99,28 @@ void Browser::dirChanged(QString dir){ else if(dir.startsWith(currentDir)){ QtConcurrent::run(this, &Browser::loadItem, dir, this ); } } -void Browser::stopVideo(QMediaPlayer *player, QMediaPlayer::MediaStatus status) { - //qDebug() << status; - if(status == QMediaPlayer::BufferedMedia) { - //qDebug() << "stoppingVideo" << player << player->currentMedia().canonicalUrl(); - player->setPosition(player->duration() / 2); - player->pause(); - } -} - -void Browser::captureFrame(QPixmap pix, QIcon *ico) { - static int received = 0; - //qDebug() << "grabbing frame" << received+1; - *ico = pix/*.scaledToHeight(64)*/; - if(++received == videoList.size()) { - emit frameChanged(); - received = 0; - } -} - void Browser::futureFinished(QString name, QImage icon){ //Note: this will be called once for every item that loads + //Haven't added the extra files in a directory fix, but that should be easy to do + //Try to load a file with multiple videos and lots of other stuff before any other directory. It crashes for some reason + qDebug() << name << "here"; QIcon *ico = new QIcon(); LFileInfo *info = new LFileInfo(name); if(!icon.isNull() && showThumbs){ QPixmap pix = QPixmap::fromImage(icon); ico->addPixmap(pix); - } - if(ico->isNull()){ - if(videoFormats.contains(name.section(".",-1).toLower())) { - QElapsedTimer loadingTime; - //qDebug() << videoList; - //videoList.add(name); - //qDebug() << "Loading Video for" << name; - //qDebug() << "VIDEO" << info; - QMediaPlayer *player = new QMediaPlayer(0, QMediaPlayer::VideoSurface); - //qDebug() << " - created player" << player; - LVideoSurface *surface = new LVideoSurface(); - //qDebug() << " - Create objects"; - connect(surface, &LVideoSurface::frameReceived, this, [&] (QPixmap pix) { captureFrame(pix, ico); }); - connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); - player->setVideoOutput(surface); - player->setMuted(true); - QMediaResource video = QMediaResource(QUrl("file://"+info->absoluteFilePath())); - video.setResolution(QSize(64, 64)); - player->setMedia(video); - //player->setMedia(QUrl("file://"+info->absoluteFilePath())); - player->play(); - player->pause(); - - //qDebug() << "Started loop"; - loadingTime.start(); - QTimer timeout; - timeout.setSingleShot(true); - timeout.setInterval(5000); - QEventLoop loop; - connect(this, SIGNAL(frameChanged()), &loop, SLOT(quit()), Qt::DirectConnection); - connect(&timeout, SIGNAL(timeout()), &loop, SLOT(quit())); - loop.exec(); - //qDebug() << "Exited loop"; - - qDebug() << loadingTime.elapsed(); - delete player; - delete surface; - }else { - ico = loadIcon(info->iconfile()); + }else if(videoFormats.contains(name.section(".",-1).toLower())) { + if(videoImages.find(name) == videoImages.end()) { + LVideoLabel *mediaLabel = new LVideoLabel(name); + while(mediaLabel->pixmap()->isNull()) { QCoreApplication::processEvents(QEventLoop::AllEvents, 50); } + ico->addPixmap(*(mediaLabel->pixmap())); + videoImages.insert(name, *mediaLabel->pixmap()); + delete mediaLabel; + }else{ + ico->addPixmap(videoImages[name]); } + }else{ + ico = loadIcon(info->iconfile()); } this->emit itemDataAvailable( *ico, info); //qDebug() << " -- done:" << name; @@ -176,12 +129,12 @@ void Browser::futureFinished(QString name, QImage icon){ // PUBLIC SLOTS void Browser::loadDirectory(QString dir, bool force){ if(force){ lastcheck = QDateTime(); } //reset check time to force reloads - videoList.clear(); if(dir.isEmpty()){ dir = currentDir; } //reload current directory if(dir.isEmpty()){ return; } //nothing to do - nothing previously loaded //qDebug() << "Load Directory" << dir; bool dirupdate = true; if(currentDir != dir){ //let the main widget know to clear all current items (completely different dir) + videoImages.clear(); oldFiles.clear(); lastcheck = QDateTime(); //null time emit clearItems(); diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.h b/src-qt5/desktop-utils/lumina-fm/Browser.h index 3254db54..0f4a0abe 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.h +++ b/src-qt5/desktop-utils/lumina-fm/Browser.h @@ -17,6 +17,7 @@ #include #include +#include #include /*class FileItem{ public: @@ -46,7 +47,7 @@ private: QString currentDir; QDateTime lastcheck; QFileSystemWatcher *watcher; - QList videoList; + QMap videoImages; bool showHidden, showThumbs; QStringList imageFormats, videoFormats, oldFiles; QHash mimeIcons; //cache for quickly re-using QIcons @@ -57,8 +58,6 @@ private: private slots: void fileChanged(QString); //tied into the watcher - for file change notifications void dirChanged(QString); // tied into the watcher - for new/removed files in the current dir - void captureFrame(QPixmap, QIcon*); - void stopVideo(QMediaPlayer*, QMediaPlayer::MediaStatus); void futureFinished(QString, QImage); public slots: @@ -75,8 +74,6 @@ signals: //Internal signal for the alternate threads void threadDone(QString, QImage); - - void frameChanged(); }; #endif diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h index a9e58bf3..02fd910d 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h @@ -86,6 +86,7 @@ signals: void contextMenuRequested(); void DataDropped(QString, QStringList); void hasFocus(QString); //ID output + void stopLoop(); //Internal signal void dirChange(QString, bool); //current dir path, force diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index 6cb4a537..e27dad25 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -15,7 +15,8 @@ include(../../core/libLumina/LuminaXDG.pri) include(../../core/libLumina/LuminaSingleApplication.pri) include(../../core/libLumina/LuminaThemes.pri) include(../../core/libLumina/ExternalProcess.pri) -include(../../core/libLumina/LVideoSurface.pri) +#include(../../core/libLumina/LVideoSurface.pri) +include(../../core/libLumina/LVideoLabel.pri) SOURCES += main.cpp \ MainUI.cpp \ -- cgit From e5f8846fd775269314e5be502261284b9183205e Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 18 Oct 2017 12:10:10 -0400 Subject: Make LVideoLabel thread-safe. Couple quick fixes for the Browser class in lumina-fm too (minor cleanup). --- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index d829fff0..a68b8580 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -103,13 +103,13 @@ void Browser::futureFinished(QString name, QImage icon){ //Note: this will be called once for every item that loads //Haven't added the extra files in a directory fix, but that should be easy to do //Try to load a file with multiple videos and lots of other stuff before any other directory. It crashes for some reason - qDebug() << name << "here"; + //qDebug() << name << "here"; QIcon *ico = new QIcon(); LFileInfo *info = new LFileInfo(name); if(!icon.isNull() && showThumbs){ QPixmap pix = QPixmap::fromImage(icon); ico->addPixmap(pix); - }else if(videoFormats.contains(name.section(".",-1).toLower())) { + }else if(info->isVideo() && showThumbs) { if(videoImages.find(name) == videoImages.end()) { LVideoLabel *mediaLabel = new LVideoLabel(name); while(mediaLabel->pixmap()->isNull()) { QCoreApplication::processEvents(QEventLoop::AllEvents, 50); } -- cgit From f7087ae6823c95ff899f35c88fa81516108148f6 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 18 Oct 2017 12:16:50 -0400 Subject: Add a semi-functional "VideoItemWidget" class to lumina-fm sources (not tied to build). This is a mostly-complete implementation of a roll-over video thumbnail widget. --- src-qt5/desktop-utils/lumina-fm/VideoItemWidget.h | 144 ++++++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100644 src-qt5/desktop-utils/lumina-fm/VideoItemWidget.h (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/VideoItemWidget.h b/src-qt5/desktop-utils/lumina-fm/VideoItemWidget.h new file mode 100644 index 00000000..894394d4 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/VideoItemWidget.h @@ -0,0 +1,144 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2016, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#ifndef _LUMINA_VIDEO_ITEM_WIDGET_H +#define _LUMINA_VIDEO_ITEM_WIDGET_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +class RolloverVideoWidget : public QVideoWidget{ + Q_OBJECT +public: + RolloverVideoWidget(QWidget *parent = 0) : QVideoWidget(parent){ + this->setMouseTracking(true); + } +signals: + void OverWidget(); + void NotOverWidget(); + +protected: + /*void mouseMoveEvent(QMouseEvent *ev){ + QWidget::mouseMoveEvent(ev); + qDebug() << "Got video rollover"; + emit OverWidget(); + }*/ + void enterEvent(QEvent *ev){ + QWidget::enterEvent(ev); + qDebug() << "Got video enter"; + emit OverWidget(); + } + void leaveEvent(QEvent *ev){ + QWidget::leaveEvent(ev); + if(!this->underMouse()){ + qDebug() << "Got video leave"; + emit NotOverWidget(); + } + } +}; + +class VideoItemWidget : public QWidget{ + Q_OBJECT +private: + QLabel *textLabel; + QMediaPlayer *mplayer; + LVideoSurface *vwidget; + QString file, text; + QSize fixedsize; + +public: + VideoItemWidget(QString filepath, QWidget *parent = 0) : QWidget(parent){ + file = filepath; + text = filepath.section("/",-1); + textLabel = 0; + mplayer = 0; + vwidget = 0; + this->setMouseTracking(true); + QTimer::singleShot(5, this, SLOT(setupPlayer()) ); //make sure this creation routine is thread-safe + } + ~VideoItemWidget(){ mplayer->stop(); } + + //Optional overloads - it will try to automatically adjust as needed + void setText(QString txt){ + text = txt; + if(textLabel!=0){ + textLabel->setText(txt); + textLabel->setVisible( !txt.isEmpty() ); + } + } + void setIconSize(QSize sz){ + fixedsize = sz; + if(vwidget!=0 && fixedsize.isValid()){ vwidget->setFixedSize(sz); } + } + +private slots: + void setupPlayer(){ + textLabel = new QLabel(this); + vwidget = new LVideoSurface(this); //RolloverVideoWidget(this); + vwidget->setAspectRatioMode(Qt::IgnoreAspectRatio); + if(fixedsize.isValid()){ vwidget->setFixedSize(fixedsize); } + else{ vwidget->setMinimumSize(QSize(16,16)); } + mplayer = new QMediaPlayer(this, QMediaPlayer::VideoSurface); + mplayer->setVideoOutput(vwidget); + mplayer->setPlaybackRate(3); // 3x playback speed + mplayer->setMuted(true); + QHBoxLayout *tmpL = new QHBoxLayout(this); + tmpL->setAlignment(Qt::AlignLeft | Qt::AlignCenter); + tmpL->addWidget(vwidget); + tmpL->addWidget(textLabel); + tmpL->setStretchFactor(textLabel, 1); //make sure this always occupies all extra space + //connect(mplayer, SIGNAL(durationChanged(qint64)), this, SLOT(durationChanged(qint64)) ); + connect(mplayer, SIGNAL(durationChanged(qint64)), this, SLOT(stopVideo()) ); + //connect(vwidget, SIGNAL(OverWidget()), this, SLOT(startVideo()) ); + //connect(vwidget, SIGNAL(NotOverWidget()), this, SLOT(stopVideo()) ); + //Now load the file + textLabel->setText(text); + mplayer->setMedia(QUrl::fromLocalFile(file) ); + mplayer->play(); + } + void durationChanged(qint64 max){ + qDebug() << "Got Duration Changed:" << max; + mplayer->setPosition( qRound(max/2.0)); + } + + void startVideo(){ + if(mplayer==0){ return; } + if(mplayer->state()!=QMediaPlayer::PlayingState){ + qDebug() << "Start Video"; + mplayer->setPosition(0); + mplayer->play(); + } + } + + void stopVideo(){ + if(mplayer==0){ return; } + if(mplayer->state()==QMediaPlayer::PlayingState){ + qDebug() << "Stop Video"; + mplayer->pause(); + mplayer->setPosition( qRound(mplayer->duration()/2.0) ); + } + } + +protected: + void resizeEvent(QResizeEvent *ev){ + if(vwidget!=0 && !fixedsize.isValid()){ vwidget->setFixedSize( QSize(ev->size().height(), ev->size().height()) ); } + } + /*void mouseMoveEvent(QMouseEvent *ev){ + QWidget::mouseMoveEvent(ev); + stopVideo(); //not over the video widget any more + }*/ +}; + +#endif -- cgit From 3a38773ce20620610e87c84c40ebfd6d2f478203 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Sat, 21 Oct 2017 17:48:29 -0400 Subject: Finished video thumbnails and roll over playback for lumina-fm and lumina-fileinfo --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 2 +- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 7 +++-- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 31 ++++++++++++++++++++--- src-qt5/desktop-utils/lumina-fm/BrowserWidget.h | 1 + 4 files changed, 32 insertions(+), 9 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index 58ef8cbd..fb55ad99 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -89,7 +89,7 @@ void MainUI::LoadFile(QString path, QString type){ }else if(INFO->isVideo()){ ui->label_file_icon->hide(); LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), ui->tab_file); - mediaLabel->setShrinkPixmap(true); + mediaLabel->setFixedSize(64,64); ui->formLayout->replaceWidget(ui->label_file_icon, mediaLabel); }else{ ui->label_file_icon->setPixmap( LXDG::findIcon( INFO->iconfile(), "unknown").pixmap(QSize(64,64)) ); diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index a68b8580..10c2567b 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -20,7 +20,6 @@ Browser::Browser(QObject *parent) : QObject(parent){ showHidden = false; showThumbs = false; imageFormats = LUtils::imageExtensions(false); //lowercase suffixes - videoFormats = LUtils::videoExtensions(); //lowercase suffixes //connect(surface, SIGNAL(frameReceived(QImage)), this, SLOT(captureFrame(QImage))); //connect(player, &QMediaPlayer::mediaStatusChanged, this, [&]{ stopVideo(player, player->mediaStatus()); }); connect(this, SIGNAL(threadDone(QString, QImage)), this, SLOT(futureFinished(QString, QImage))); //will always be between different threads @@ -109,7 +108,7 @@ void Browser::futureFinished(QString name, QImage icon){ if(!icon.isNull() && showThumbs){ QPixmap pix = QPixmap::fromImage(icon); ico->addPixmap(pix); - }else if(info->isVideo() && showThumbs) { + /*}else if(info->isVideo() && showThumbs) { if(videoImages.find(name) == videoImages.end()) { LVideoLabel *mediaLabel = new LVideoLabel(name); while(mediaLabel->pixmap()->isNull()) { QCoreApplication::processEvents(QEventLoop::AllEvents, 50); } @@ -118,7 +117,7 @@ void Browser::futureFinished(QString name, QImage icon){ delete mediaLabel; }else{ ico->addPixmap(videoImages[name]); - } + }*/ }else{ ico = loadIcon(info->iconfile()); } @@ -134,7 +133,7 @@ void Browser::loadDirectory(QString dir, bool force){ //qDebug() << "Load Directory" << dir; bool dirupdate = true; if(currentDir != dir){ //let the main widget know to clear all current items (completely different dir) - videoImages.clear(); + //videoImages.clear(); oldFiles.clear(); lastcheck = QDateTime(); //null time emit clearItems(); diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index d2c07648..a7b07b47 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -12,6 +12,7 @@ #include #include +#include BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ //Setup the Widget/UI @@ -38,6 +39,7 @@ BrowserWidget::~BrowserWidget(){ } void BrowserWidget::changeDirectory(QString dir){ + videoMap.clear(); if(BROWSER->currentDirectory()==dir){ return; } //already on this directory //qDebug() << "Change Directory:" << dir << historyList; @@ -125,6 +127,12 @@ void BrowserWidget::setThumbnailSize(int px){ larger = treeWidget->iconSize().height() < px; treeWidget->setIconSize(QSize(px,px)); } + for(QString file : videoMap.uniqueKeys()) { + QTreeWidgetItem *it = videoMap[file]; + LVideoWidget *widget = (LVideoWidget*)treeWidget->itemWidget(it, 0); + widget->setIconSize(treeWidget->iconSize()); + treeWidget->setItemWidget(it, 0, widget); + } //qDebug() << "Changing Icon Size:" << px << larger; if(BROWSER->currentDirectory().isEmpty() || !larger ){ return; } //don't need to reload icons unless the new size is larger emit dirChange("", larger); @@ -326,15 +334,30 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ treeWidget->addTopLevelItem(it); } }else{ - if( ! treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).isEmpty() ){ it = treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).first(); } - else{ + if( ! treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).isEmpty() ) { + it = treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).first(); + }else if(info->isVideo() && videoMap.find(info->absoluteFilePath()) == videoMap.end()){ it = new CQTreeWidgetItem(treeWidget); - it->setText(0, info->fileName() ); //name (0) treeWidget->addTopLevelItem(it); + LVideoWidget *widget = new LVideoWidget(info->absoluteFilePath(), treeWidget->iconSize(), treeWidget); + videoMap.insert(info->absoluteFilePath(), it); + treeWidget->setItemWidget(it, 0, widget); + }else if(info->isVideo()){ + it = videoMap[info->absoluteFilePath()]; + if(treeWidget->itemWidget(it, 0) != 0) { + LVideoWidget *widget = (LVideoWidget*)treeWidget->itemWidget(it, 0); + widget->setIconSize(treeWidget->iconSize()); + treeWidget->setItemWidget(it, 0, widget); + } + }else{ + it = new CQTreeWidgetItem(treeWidget); + treeWidget->addTopLevelItem(it); + it->setText(0, info->fileName() ); //name (0) } } //Now set/update all the data - it->setIcon(0, ico); + if(!info->isVideo()) + it->setIcon(0, ico); it->setText(1, info->isDir() ? "" : LUtils::BytesToDisplaySize(info->size()) ); //size (1) it->setText(2, info->mimetype() ); //type (2) it->setText(3, DTtoString(info->lastModified() )); //modification date (3) diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h index 02fd910d..585aaa82 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h @@ -23,6 +23,7 @@ private: int numItems; //used for checking if all the items have loaded yet QString ID, statustip; QStringList date_format, historyList; + QMap videoMap; bool freshload; //The drag and drop brower widgets -- cgit From 02a68b94cd343d1958438dbfccd7258ee76f7eef Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Sat, 21 Oct 2017 19:30:58 -0400 Subject: Added preliminary code to disable video thumbnails with settings --- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index a7b07b47..dc00e92f 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -334,15 +334,22 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ treeWidget->addTopLevelItem(it); } }else{ + if(!BROWSER->showingThumbnails() && videoMap.size() !=0) { + for(QString file : videoMap.keys()) { + QTreeWidgetItem *it = videoMap[file]; + treeWidget->removeItemWidget(it, 0); + } + videoMap.clear(); + } if( ! treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).isEmpty() ) { it = treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).first(); - }else if(info->isVideo() && videoMap.find(info->absoluteFilePath()) == videoMap.end()){ + }else if(info->isVideo() && videoMap.find(info->absoluteFilePath()) == videoMap.end() && BROWSER->showingThumbnails()){ it = new CQTreeWidgetItem(treeWidget); treeWidget->addTopLevelItem(it); LVideoWidget *widget = new LVideoWidget(info->absoluteFilePath(), treeWidget->iconSize(), treeWidget); videoMap.insert(info->absoluteFilePath(), it); treeWidget->setItemWidget(it, 0, widget); - }else if(info->isVideo()){ + }else if(info->isVideo() && BROWSER->showingThumbnails()){ it = videoMap[info->absoluteFilePath()]; if(treeWidget->itemWidget(it, 0) != 0) { LVideoWidget *widget = (LVideoWidget*)treeWidget->itemWidget(it, 0); @@ -356,7 +363,7 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ } } //Now set/update all the data - if(!info->isVideo()) + if(!info->isVideo() || (info->isVideo() && !BROWSER->showingThumbnails())) it->setIcon(0, ico); it->setText(1, info->isDir() ? "" : LUtils::BytesToDisplaySize(info->size()) ); //size (1) it->setText(2, info->mimetype() ); //type (2) -- cgit From 13e92da7516fed2eb08599924c76b06f5bd8af58 Mon Sep 17 00:00:00 2001 From: q5sys Date: Mon, 23 Oct 2017 17:14:24 -0400 Subject: remove unneeded whitespace --- src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp index 7b34935e..1ad6edcd 100644 --- a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp +++ b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp @@ -1,7 +1,7 @@ //=========================================== // Copyright (c) 2017, q5sys (JT) // Available under the MIT license -// See the LICENSE file for full details +// See the LICENSE file for full details //=========================================== #include "mainwindow.h" -- cgit From 8edbaac8f41029364d68ec3d48183fa43921317c Mon Sep 17 00:00:00 2001 From: q5sys Date: Mon, 23 Oct 2017 17:36:14 -0400 Subject: removing whitespace --- src-qt5/desktop-utils/lumina-archiver/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/main.cpp b/src-qt5/desktop-utils/lumina-archiver/main.cpp index 40cd7967..01e7bda1 100644 --- a/src-qt5/desktop-utils/lumina-archiver/main.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/main.cpp @@ -15,7 +15,7 @@ int main(int argc, char *argv[]) { LTHEME::LoadCustomEnvSettings(); QApplication a(argc, argv); - a.setAttribute(Qt::AA_UseHighDpiPixmaps); + a.setAttribute(Qt::AA_UseHighDpiPixmaps); LUtils::LoadTranslation(&a, "l-archiver"); //Now go ahead and setup the app QStringList args; -- cgit From d60dc4c97dc690a4e49693de052fdf8789b02eb3 Mon Sep 17 00:00:00 2001 From: q5sys Date: Tue, 24 Oct 2017 16:51:09 -0400 Subject: change thumbnail generation to faster method tested in lumina-fm-dev --- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index 10c2567b..29cc5a99 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -64,7 +64,7 @@ void Browser::loadItem(QString info, Browser *obj){ file.close(); pix.loadFromData(bytes); if(pix.width() > 256 || pix.height() > 256 ){ - pix = pix.scaled(256,256, Qt::KeepAspectRatio); + pix = pix.scaled(256,256, Qt::KeepAspectRatio, Qt::FastTransformation); } } } -- cgit From 2065eaea73177ccb66f24c7ba433abe67f11b31c Mon Sep 17 00:00:00 2001 From: q5sys Date: Tue, 24 Oct 2017 17:15:58 -0400 Subject: warning banner for running lumina-fm as root_ --- src-qt5/desktop-utils/lumina-fm/MainUI.cpp | 2 ++ src-qt5/desktop-utils/lumina-fm/MainUI.h | 1 + src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 4 ++++ src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui | 14 ++++++++++++-- 4 files changed, 19 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp index abb99975..50cc110a 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp @@ -25,6 +25,8 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ //qRegisterMetaType< QVector >("QVector"); //qRegisterMetaType< QList >("QList"); waitingToClose = false; + //put if statement here to check if running as root + rootmode = false; ui->setupUi(this); if(DEBUG){ qDebug() << "Initilization:"; } diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.h b/src-qt5/desktop-utils/lumina-fm/MainUI.h index 492ba533..d03ca443 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.h @@ -67,6 +67,7 @@ class MainUI : public QMainWindow{ public: MainUI(); ~MainUI(); + bool rootmode; public slots: void OpenDirs(QStringList); //also called from the main.cpp after initialization diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 1b00343d..93a8fec4 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -30,6 +30,10 @@ DirWidget::DirWidget(QString objID, QSettings *settings, QWidget *parent) : QWidget(parent), ui(new Ui::DirWidget){ ui->setupUi(this); //load the designer file + //if(rootmode = true){ui->label_rootmode->setVisible(true);} + //else{ + ui->label_rootmode->setVisible(false); + //} ID = objID; //Assemble the toolbar for the widget toolbar = new QToolBar(this); diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui index b1ba9d95..b4d8d933 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui @@ -7,7 +7,7 @@ 0 0 400 - 350 + 389 @@ -19,7 +19,17 @@ Form - + + + + + Warning - Running as Root + + + Qt::AlignCenter + + + -- cgit From 11749b3b8eb4665098a0341312104e5b05c6f55c Mon Sep 17 00:00:00 2001 From: q5sys Date: Tue, 24 Oct 2017 17:30:02 -0400 Subject: add logic for launching lumina-fm as root --- src-qt5/desktop-utils/lumina-fm/MainUI.cpp | 6 ++++++ src-qt5/desktop-utils/lumina-fm/MainUI.h | 2 ++ src-qt5/desktop-utils/lumina-fm/MainUI.ui | 5 +++++ src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui | 10 +++++++++- 4 files changed, 22 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp index 50cc110a..2d4cfe84 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp @@ -14,6 +14,7 @@ #include #include +#include #define DEBUG 0 @@ -964,3 +965,8 @@ void MainUI::closeEvent(QCloseEvent *ev){ } QMainWindow::closeEvent(ev); //continue normal close routine } + +void MainUI::on_actionOpen_as_Root_triggered() +{ + ExternalProcess::launch("qsudo lumina-fm"); +} diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.h b/src-qt5/desktop-utils/lumina-fm/MainUI.h index d03ca443..04e8199e 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.h @@ -177,6 +177,8 @@ private slots: void TrayJobsFinished(); + void on_actionOpen_as_Root_triggered(); + signals: void Si_AdaptStatusBar(QFileInfoList fileList, QString path, QString messageFolders, QString messageFiles); diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.ui b/src-qt5/desktop-utils/lumina-fm/MainUI.ui index 744f31a3..56de9b7c 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.ui @@ -434,6 +434,11 @@ Ctrl+P + + + Open as Root + + diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui index b4d8d933..099fd91a 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui @@ -22,8 +22,16 @@ + + + Droid Sans Mono + 75 + false + true + + - Warning - Running as Root + * - FILE MANAGER RUNNING AS ROOT- * Qt::AlignCenter -- cgit From 067a5f38cafc5789af47df06c687f0ddf79219f7 Mon Sep 17 00:00:00 2001 From: q5sys Date: Tue, 24 Oct 2017 20:40:30 -0400 Subject: add extraction method for custom path --- src-qt5/desktop-utils/lumina-archiver/MainUI.cpp | 51 ++++++++++++++++-------- src-qt5/desktop-utils/lumina-archiver/MainUI.h | 4 +- 2 files changed, 38 insertions(+), 17 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp index 215fc64e..20534569 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp @@ -82,6 +82,7 @@ void MainUI::LoadArguments(QStringList args){ else if(args[i]=="--burn-img"){ action = 0; continue; } else if(args[i]=="--ax"){ action = 1; continue; } else if(args[i]=="--aa"){ action = 2; continue; } + else if(args[i]=="--sx"){ action = 3; continue; } }else{ files << args[i]; } @@ -90,6 +91,7 @@ void MainUI::LoadArguments(QStringList args){ //Now go through and do any actions as needed ui->label_progress->setText(tr("Opening Archive...")); if(action==1){ + qDebug() << "blah"; connect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); connect(BACKEND, SIGNAL(ExtractSuccessful()), delayClose, SLOT(start()) ); }else if(action==2){ @@ -97,6 +99,18 @@ void MainUI::LoadArguments(QStringList args){ for(int j=1; jloadFile(files[0]); ui->actionUSB_Image->setEnabled(files[0].simplified().endsWith(".img")); @@ -260,23 +274,29 @@ void MainUI::extractFiles(){ } void MainUI::autoextractFiles(){ - disconnect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); - QString dir = BACKEND->currentFile().section("/",0,-2); //parent directory of the archive - if(dir.isEmpty()){ return; } - QDir tmp(dir); - QString name = BACKEND->currentFile().section("/",-1).section(".",0,0); - if(QFile::exists(dir+"/"+name)){ - int num = 1; - while( QFile::exists(dir+"/"+name+"_"+QString::number(num))){ num++; } - name = name+"_"+QString::number(num); - } - if(tmp.mkdir(name) ){ - dir.append("/"+name); //created sub directory - } - ui->label_progress->setText(tr("Extracting...")); - BACKEND->startExtract(dir, true); + disconnect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); + QString dir = BACKEND->currentFile().section("/",0,-2); //parent directory of the archive + if(dir.isEmpty()){ return; } + QDir tmp(dir); + QString name = BACKEND->currentFile().section("/",-1).section(".",0,0); + if(QFile::exists(dir+"/"+name)){ + int num = 1; + while( QFile::exists(dir+"/"+name+"_"+QString::number(num))){ num++; } + name = name+"_"+QString::number(num); + } + if(tmp.mkdir(name) ){ + dir.append("/"+name); //created sub directory } + ui->label_progress->setText(tr("Extracting...")); + BACKEND->startExtract(dir, true); +} +void MainUI::simpleExtractFiles(){ + disconnect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); + QString dir = sxPath; + ui->label_progress->setText(tr("Extracting...")); + BACKEND->startExtract(dir, true); +} void MainUI::autoArchiveFiles(){ qDebug() << "Auto Archive Files:" << aaFileList; @@ -284,7 +304,6 @@ void MainUI::autoArchiveFiles(){ BACKEND->startAdd(aaFileList); } - void MainUI::extractSelection(){ if(ui->tree_contents->currentItem()==0){ return; } //nothing selected QList sel = ui->tree_contents->selectedItems(); diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.h b/src-qt5/desktop-utils/lumina-archiver/MainUI.h index a16d5862..1a9d287c 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.h +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.h @@ -30,7 +30,8 @@ public: private: Ui::MainUI *ui; Backend *BACKEND; - QStringList aaFileList; + QStringList aaFileList, sxList; + QString sxPath, sxFile; QTimer *delayClose; QTreeWidgetItem* findItem(QString path, QTreeWidgetItem *start = 0); @@ -49,6 +50,7 @@ private slots: void extractFiles(); void autoextractFiles(); void autoArchiveFiles(); + void simpleExtractFiles(); void extractSelection(); void ViewFile(QTreeWidgetItem *it); void UpdateTree(); -- cgit From e72b4cfb324f8c8bb5aebc9382f2344c6ccb6705 Mon Sep 17 00:00:00 2001 From: q5sys Date: Wed, 25 Oct 2017 09:25:44 -0400 Subject: fixed handling of initial arguments --- src-qt5/desktop-utils/lumina-archiver/MainUI.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp index 20534569..c4b35474 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp @@ -101,7 +101,7 @@ void MainUI::LoadArguments(QStringList args){ connect(BACKEND, SIGNAL(ArchivalSuccessful()), delayClose, SLOT(start()) ); }else if(action==3){ sxList.clear(); - for(int j=1; j Date: Wed, 25 Oct 2017 15:06:30 -0400 Subject: Fix an unommented testing line in lumina-fm. This broke the build of lumina-fm since the associated UI file has not been added yet. --- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 93a8fec4..6f1624a4 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -32,7 +32,7 @@ DirWidget::DirWidget(QString objID, QSettings *settings, QWidget *parent) : QWid ui->setupUi(this); //load the designer file //if(rootmode = true){ui->label_rootmode->setVisible(true);} //else{ - ui->label_rootmode->setVisible(false); + //ui->label_rootmode->setVisible(false); //} ID = objID; //Assemble the toolbar for the widget -- cgit From 76eb44f51faee92476ed509b700be9bc30be08a7 Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Wed, 25 Oct 2017 17:09:02 -0400 Subject: Fixed image previews with video thumbnails --- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 42 ++++++++++++----------- src-qt5/desktop-utils/lumina-fm/BrowserWidget.h | 4 ++- 2 files changed, 25 insertions(+), 21 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index dc00e92f..0384d892 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -12,7 +12,6 @@ #include #include -#include BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ //Setup the Widget/UI @@ -39,6 +38,7 @@ BrowserWidget::~BrowserWidget(){ } void BrowserWidget::changeDirectory(QString dir){ + qDebug() << "changing"; videoMap.clear(); if(BROWSER->currentDirectory()==dir){ return; } //already on this directory //qDebug() << "Change Directory:" << dir << historyList; @@ -111,6 +111,18 @@ bool BrowserWidget::hasHiddenFiles(){ } void BrowserWidget::showThumbnails(bool show){ + qDebug() << show << videoMap.size(); + for(QString file : videoMap.uniqueKeys()) { + QTreeWidgetItem *it = videoMap[file].first; + LVideoWidget *widget = videoMap[file].second; + if(show) { + widget->disableIcons(); + treeWidget->setItemWidget(it, 0, widget); + }else{ + widget->enableIcons(); + treeWidget->setItemWidget(it, 0, widget); + } + } BROWSER->showThumbnails(show); } @@ -128,8 +140,8 @@ void BrowserWidget::setThumbnailSize(int px){ treeWidget->setIconSize(QSize(px,px)); } for(QString file : videoMap.uniqueKeys()) { - QTreeWidgetItem *it = videoMap[file]; - LVideoWidget *widget = (LVideoWidget*)treeWidget->itemWidget(it, 0); + QTreeWidgetItem *it = videoMap[file].first; + LVideoWidget *widget = videoMap[file].second; widget->setIconSize(treeWidget->iconSize()); treeWidget->setItemWidget(it, 0, widget); } @@ -334,28 +346,18 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ treeWidget->addTopLevelItem(it); } }else{ - if(!BROWSER->showingThumbnails() && videoMap.size() !=0) { - for(QString file : videoMap.keys()) { - QTreeWidgetItem *it = videoMap[file]; - treeWidget->removeItemWidget(it, 0); - } - videoMap.clear(); - } if( ! treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).isEmpty() ) { it = treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).first(); - }else if(info->isVideo() && videoMap.find(info->absoluteFilePath()) == videoMap.end() && BROWSER->showingThumbnails()){ + }else if(info->isVideo() && videoMap.find(info->absoluteFilePath()) == videoMap.end()) { it = new CQTreeWidgetItem(treeWidget); treeWidget->addTopLevelItem(it); LVideoWidget *widget = new LVideoWidget(info->absoluteFilePath(), treeWidget->iconSize(), treeWidget); - videoMap.insert(info->absoluteFilePath(), it); + videoMap.insert(info->absoluteFilePath(), QPair(it, widget)); treeWidget->setItemWidget(it, 0, widget); - }else if(info->isVideo() && BROWSER->showingThumbnails()){ - it = videoMap[info->absoluteFilePath()]; - if(treeWidget->itemWidget(it, 0) != 0) { - LVideoWidget *widget = (LVideoWidget*)treeWidget->itemWidget(it, 0); - widget->setIconSize(treeWidget->iconSize()); - treeWidget->setItemWidget(it, 0, widget); - } + }else if(info->isVideo()) { + it = videoMap[info->absoluteFilePath()].first; + LVideoWidget *widget = videoMap[info->absoluteFilePath()].second; + widget->setIconSize(treeWidget->iconSize()); }else{ it = new CQTreeWidgetItem(treeWidget); treeWidget->addTopLevelItem(it); @@ -363,7 +365,7 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ } } //Now set/update all the data - if(!info->isVideo() || (info->isVideo() && !BROWSER->showingThumbnails())) + if(!info->isVideo()) it->setIcon(0, ico); it->setText(1, info->isDir() ? "" : LUtils::BytesToDisplaySize(info->size()) ); //size (1) it->setText(2, info->mimetype() ); //type (2) diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h index 585aaa82..f041280c 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h @@ -12,6 +12,8 @@ #include #include +#include + #include "Browser.h" #include "widgets/DDListWidgets.h" @@ -23,7 +25,7 @@ private: int numItems; //used for checking if all the items have loaded yet QString ID, statustip; QStringList date_format, historyList; - QMap videoMap; + QMap> videoMap; bool freshload; //The drag and drop brower widgets -- cgit From 1e4bb99764f6012260adb4192604a392bd62bf0a Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Wed, 25 Oct 2017 18:23:38 -0400 Subject: Fixed issues with previews and LVideoWidget sizing --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 2 +- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index fb55ad99..c712afed 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -88,7 +88,7 @@ void MainUI::LoadFile(QString path, QString type){ ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); }else if(INFO->isVideo()){ ui->label_file_icon->hide(); - LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), ui->tab_file); + LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), true, ui->tab_file); mediaLabel->setFixedSize(64,64); ui->formLayout->replaceWidget(ui->label_file_icon, mediaLabel); }else{ diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index 0384d892..0983a7b4 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -38,7 +38,6 @@ BrowserWidget::~BrowserWidget(){ } void BrowserWidget::changeDirectory(QString dir){ - qDebug() << "changing"; videoMap.clear(); if(BROWSER->currentDirectory()==dir){ return; } //already on this directory //qDebug() << "Change Directory:" << dir << historyList; @@ -116,10 +115,10 @@ void BrowserWidget::showThumbnails(bool show){ QTreeWidgetItem *it = videoMap[file].first; LVideoWidget *widget = videoMap[file].second; if(show) { - widget->disableIcons(); + widget->enableIcons(); treeWidget->setItemWidget(it, 0, widget); }else{ - widget->enableIcons(); + widget->disableIcons(); treeWidget->setItemWidget(it, 0, widget); } } @@ -351,13 +350,14 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ }else if(info->isVideo() && videoMap.find(info->absoluteFilePath()) == videoMap.end()) { it = new CQTreeWidgetItem(treeWidget); treeWidget->addTopLevelItem(it); - LVideoWidget *widget = new LVideoWidget(info->absoluteFilePath(), treeWidget->iconSize(), treeWidget); + LVideoWidget *widget = new LVideoWidget(info->absoluteFilePath(), treeWidget->iconSize(), hasThumbnails(), treeWidget); videoMap.insert(info->absoluteFilePath(), QPair(it, widget)); treeWidget->setItemWidget(it, 0, widget); }else if(info->isVideo()) { it = videoMap[info->absoluteFilePath()].first; LVideoWidget *widget = videoMap[info->absoluteFilePath()].second; widget->setIconSize(treeWidget->iconSize()); + treeWidget->setItemWidget(it, 0, widget); }else{ it = new CQTreeWidgetItem(treeWidget); treeWidget->addTopLevelItem(it); -- cgit From 6defe842e03d25827d3638fda8629236593ebc04 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 25 Oct 2017 18:27:11 -0400 Subject: Re-enable the "Root Mode" warning at the top of lumina-fm, and setup the root detection to work properly. --- src-qt5/desktop-utils/lumina-fm/MainUI.cpp | 3 ++- src-qt5/desktop-utils/lumina-fm/MainUI.h | 2 +- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 7 +++---- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp index 2d4cfe84..87c3a0f8 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp @@ -17,6 +17,7 @@ #include #define DEBUG 0 +bool rootmode = false; MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ //for Signal/slot we must register the Typedef of QFileInfoList @@ -27,7 +28,7 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ //qRegisterMetaType< QList >("QList"); waitingToClose = false; //put if statement here to check if running as root - rootmode = false; + rootmode = (getuid()==0); ui->setupUi(this); if(DEBUG){ qDebug() << "Initilization:"; } diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.h b/src-qt5/desktop-utils/lumina-fm/MainUI.h index 04e8199e..04b80f28 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.h @@ -67,7 +67,7 @@ class MainUI : public QMainWindow{ public: MainUI(); ~MainUI(); - bool rootmode; + //bool rootmode; public slots: void OpenDirs(QStringList); //also called from the main.cpp after initialization diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 6f1624a4..a8cbea2c 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -27,13 +27,12 @@ #include "../ScrollDialog.h" #define DEBUG 0 +extern bool rootmode; DirWidget::DirWidget(QString objID, QSettings *settings, QWidget *parent) : QWidget(parent), ui(new Ui::DirWidget){ ui->setupUi(this); //load the designer file - //if(rootmode = true){ui->label_rootmode->setVisible(true);} - //else{ - //ui->label_rootmode->setVisible(false); - //} + ui->label_rootmode->setVisible(rootmode); + ID = objID; //Assemble the toolbar for the widget toolbar = new QToolBar(this); -- cgit From 76f587abe521794a71604532224b9cf7103ae50e Mon Sep 17 00:00:00 2001 From: ZackaryWelch Date: Wed, 25 Oct 2017 19:02:16 -0400 Subject: Removed debug outputs --- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index 0983a7b4..6229749c 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -110,7 +110,7 @@ bool BrowserWidget::hasHiddenFiles(){ } void BrowserWidget::showThumbnails(bool show){ - qDebug() << show << videoMap.size(); + //qDebug() << show << videoMap.size(); for(QString file : videoMap.uniqueKeys()) { QTreeWidgetItem *it = videoMap[file].first; LVideoWidget *widget = videoMap[file].second; -- cgit From df0a6abc4622e4527fb8ef6f618485bb4fdc4cb1 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 27 Oct 2017 11:09:40 -0400 Subject: Fix the column width resizing for lumina-fm tree widget. --- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index 6229749c..ab25d5e7 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -82,6 +82,7 @@ void BrowserWidget::showDetails(bool show){ connect(treeWidget, SIGNAL(GotFocus()), this, SLOT(selectionChanged()) ); retranslate(); treeWidget->sortItems(0, Qt::AscendingOrder); + treeWidget->setColumnWidth(0, treeWidget->fontMetrics().width("W")*20); if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange("", true); } }else if(!show && listWidget==0){ listWidget = new DDListWidget(this); @@ -384,7 +385,9 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ }else{ if(freshload && treeWidget!=0){ //qDebug() << "Resize Tree Widget Contents"; - for(int i=0; icolumnCount(); i++){ treeWidget->resizeColumnToContents(i); } + //for(int i=treeWidget->columnCount()-1; i>0; i--){ treeWidget->resizeColumnToContents(i); } + treeWidget->resizeColumnToContents(1); + //treeWidget->resizeColumnToContents(0); } freshload = false; //any further changes are updates - not a fresh load of a dir //Done loading items -- cgit From d1fbff37e4cac77ef8ab46ca9148cd21451a43de Mon Sep 17 00:00:00 2001 From: q5sys Date: Tue, 31 Oct 2017 16:39:48 -0400 Subject: finish up integration of launch lumina-fm as root --- src-qt5/desktop-utils/lumina-fm/MainUI.cpp | 2 ++ src-qt5/desktop-utils/lumina-fm/MainUI.ui | 2 ++ src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 13 +++++++++++-- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h | 3 ++- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui | 7 +++++++ 5 files changed, 24 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp index 87c3a0f8..692b7562 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp @@ -116,6 +116,7 @@ QSize orig = settings->value("preferences/MainWindowSize", QSize()).toSize(); TRAY = new TrayUI(this); connect(TRAY, SIGNAL(JobsFinished()), this, SLOT(TrayJobsFinished()) ); if(DEBUG){ qDebug() << " - Done with init"; } + ui->actionOpen_as_Root->setVisible(LUtils::isValidBinary("qsudo")); } MainUI::~MainUI(){ @@ -971,3 +972,4 @@ void MainUI::on_actionOpen_as_Root_triggered() { ExternalProcess::launch("qsudo lumina-fm"); } + diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.ui b/src-qt5/desktop-utils/lumina-fm/MainUI.ui index 56de9b7c..8a635199 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.ui @@ -119,6 +119,8 @@ + + diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index a8cbea2c..83040108 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -284,10 +284,11 @@ void DirWidget::createMenus(){ else{ cOpenMenu->clear(); } cOpenMenu->setTitle(tr("Launch...")); cOpenMenu->setIcon( LXDG::findIcon("quickopen","") ); - cOpenMenu->addAction(LXDG::findIcon("utilities-terminal",""), tr("Terminal"), this, SLOT(openTerminal()), kOpTerm->key()); + cOpenMenu->addAction(LXDG::findIcon("utilities-terminal",""), tr("Open Current Dir in a Terminal"), this, SLOT(openTerminal()), kOpTerm->key()); cOpenMenu->addAction(LXDG::findIcon("media-slideshow",""), tr("SlideShow"), this, SLOT(openInSlideshow()), kOpSS->key()); cOpenMenu->addAction(LXDG::findIcon("media-playback-start-circled","media-playback-start"), tr("Multimedia Player"), this, SLOT(openMultimedia()), kOpMM->key()); -/* + if(LUtils::isValidBinary("qsudo")){ cOpenMenu->addAction(LXDG::findIcon("", ""), tr("Open Current Dir as Root"), this, SLOT(openRootFM())); + /* if(cFModMenu==0){ cFModMenu = new QMenu(this); } else{ cFModMenu->clear(); } cFModMenu->setTitle(tr("Modify Files...")); @@ -322,6 +323,8 @@ void DirWidget::createMenus(){ } +} + BrowserWidget* DirWidget::currentBrowser(){ if(cBID.isEmpty() || RCBW==0){ return BW; } else{ return RCBW; } @@ -883,3 +886,9 @@ void DirWidget::mouseReleaseEvent(QMouseEvent *ev){ ev->ignore(); //not handled here } } + +void DirWidget::openRootFM(){ + rootfmdir = "qsudo lumina-fm -new-instance " + currentDir(); + qDebug() << "rootfmdir" << rootfmdir; + ExternalProcess::launch(rootfmdir); +} diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h index 8dd367df..04af46fc 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h @@ -73,7 +73,7 @@ private: Ui::DirWidget *ui; BrowserWidget *BW, *RCBW; //Main BrowserWidget and right-column browser widget QString ID, cBID; //unique ID assigned by the parent, and currently active browser widget - QString normalbasedir, snapbasedir, snaprelpath; //for maintaining directory context while moving between snapshots + QString normalbasedir, snapbasedir, snaprelpath, rootfmdir; //for maintaining directory context while moving between snapshots QStringList snapshots, needThumbs, tmpSel; QSettings *settings; bool canmodify; @@ -129,6 +129,7 @@ private slots: void fileCheckSums(); void fileProperties(); void openTerminal(); + void openRootFM(); //Browser Functions diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui index 099fd91a..5f980c67 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.ui @@ -25,11 +25,18 @@ Droid Sans Mono + 16 75 false true + + QFrame::Box + + + QFrame::Sunken + * - FILE MANAGER RUNNING AS ROOT- * -- cgit From cbfa5b5d7e17b2f20cc415106513847e06292047 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 1 Nov 2017 12:45:10 -0400 Subject: Add the template for a new model-based backend for lumina-fm. --- src-qt5/desktop-utils/lumina-fm/BrowserModel.cpp | 208 +++++++++++++++++++++ src-qt5/desktop-utils/lumina-fm/BrowserModel.h | 85 +++++++++ .../lumina-fm/widgets/DDListWidgets.h | 34 ++-- 3 files changed, 310 insertions(+), 17 deletions(-) create mode 100644 src-qt5/desktop-utils/lumina-fm/BrowserModel.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm/BrowserModel.h (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserModel.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserModel.cpp new file mode 100644 index 00000000..d79da006 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/BrowserModel.cpp @@ -0,0 +1,208 @@ +//=========================================== +// Lumina Desktop source code +// Copyright (c) 2017, Ken Moore & JT Pennington +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#include "BrowserModel.h" + +BrowserModel::BrowserModel(QObject *parent){ + +} + +BrowserModel::~BrowserModel(){ + +} + +//Virtual overrides +QModelIndex BrowserModel::index(int row, int column, const QModelIndex &parent) const{ + +} + +QModelIndex BrowserModel::parent(const QModelIndex &index) const{ + +} + +// item management +int BrowserModel::rowCount(const QModelIndex &parent) const{ + +} + +bool BrowserModel::insertRows(int row, int count, const QModelIndex &parent){ + +} + +bool BrowserModel::removeRow(int row, const QModelIndex &parent){ + +} + +bool BrowserModel::removeRows(int row, int count, const QModelIndex &parent){ + +} + +int BrowserModel::columnCount(const QModelIndex &parent) const{ + +} + +bool BrowserModel::insertColumns(int column, int count, const QModelIndex &parent){ + +} + +bool BrowserModel::removeColumn(int column, const QModelIndex &parent){ + +} + +bool BrowserModel::removeColumns(int column, int count, const QModelIndex &parent){ + +} + + +//bool BrowserModel::hasChildren(const QModelIndex &parent) const{ + +} + + +// data functions +Qt::ItemFlags BrowserModel::flags(const QModelIndex &index) const{ + +} + +QVariant BrowserModel::data(const QModelIndex &index, int role) const{ + QFileInfo *info = indexToInfo(index); + switch(role){ + case Qt::DisplayRole: + if(index.column()==0){ return QVariant(info->fileName()); } + else if(index.column()==1){ return QVariant(info->fileSize()); } + else if(index.column()==2){ return QVariant(info->mimetype()); } + else if(index.column()==3){ return QVariant(info->lastModified()->toString(Qt::DefaultLocaleShortDate)); } + else if(index.column()==4){ return QVariant(info->created()->toString(Qt::DefaultLocaleShortDate)); } + case Qt::ToolTipRole: + return QVariant(info->absoluteFilePath()); + case Qt::StatusTipRole: + return QVariant(info->absoluteFilePath()); + case Qt::SizeHintRole; + return QVariant(QSize(100,14)); + case Qt::DecorationRole: + return QVariant(LXDG::findIcon(info->iconFile(), "unknown")); + } + return QVariant(); +} + +QVariant BrowserModel::headerData(int section, Qt::Orientation orientation, int role) const{ + if(role == Qt::DisplayRole){ + if(orientation == Qt::Horizontal){ + switch(section){ + case 0: + return QVariant(tr("File Name")); + case 1: + return QVariant("Size"); + case 2: + return QVariant("Type"); + case 3: + return QVariant("Date Modified"); + case 4: + return QVariant("Date Created"); + } + } + } + case Qt::DisplayRole: + return QVariant(tr("File Name"); + /*case Qt::ToolTipRole: + return QVariant("ToolTip"); + case Qt::StatusTipRole: + return QVariant("Status Tip"); + case Qt::SizeHintRole; + return QVariant(QSize(100,14));*/ + case Qt::DecorationRole: + return QVariant("Icon")); + } + return QVariant(); +} + +// data modification functions +bool BrowserModel::setData(const QModelIndex &index, const QVariant &value, int role){ + +} + +bool BrowserModel::setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role){ + +} + + +// drag and drop +//QMimeData* BrowserModel::mimeData(const QModelIndexList &indexes) const{ + +} + +//QStringList BrowserModel::mimeTypes() const{ + +} + +//bool BrowserModel::setItemData(const QModelIndex &index, const QMap &roles){ + +} + +//Qt::DropActions BrowserModel::supportedDropActions() const{ + +} + +//bool BrowserModel::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent){ + +} + +//Special Functions (non virtual replacements) +LFileInfo* BrowserModel::fileInfo(QString name){ + +} + +QString BrowserModel::currentDirectory(){ + return cDir; +} + + +// ============== +// PUBLIC SLOTS +// ============== +void BrowserModel::loadDirectory(QString dir){ + + +} + +void BrowserModel::loadItem(QString itempath){ + LFileInfo *it = new LFileInfo(itempath); + //Determine the row/column that it needs to be + int row, column; + row = 0; + //Now create the index + for(int i=0; i<5; i++){ + QModelIndex index = createIndex(row, i, it); + } +} + + +// ============= +// PRIVATE +// ============= +/*QString BrowserModel::findInHash(QString path){ + QStringList keys = HASH.keys(); + for(int i=0; ifilePath() == path){ return keys[i]; } + } + return ""; +} + +QString BrowserModel::findInHash(QModelIndex index){ + QString id = QString::number(index.row())+"/"+QString::number(index.column()); + if(HASH.contains(id)){ return id; } + return ""; +} + +LFileInfo* BrowserModel::indexToInfo(QString path){ + QString id = findInHash(path); + if(id.isEmpty()){ return 0;} + return HASH[id]; +}*/ + +LFileInfo* BrowserModel::indexToInfo(QModelIndex index){ + return static_cast(index.internalPointer()); +} diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserModel.h b/src-qt5/desktop-utils/lumina-fm/BrowserModel.h new file mode 100644 index 00000000..0968b4d4 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/BrowserModel.h @@ -0,0 +1,85 @@ +//=========================================== +// Lumina Desktop source code +// Copyright (c) 2017, Ken Moore & JT Pennington +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +// This is the main browsing backend for the file manager +//=========================================== +#ifndef _LUMINA_FM_BROWSER_MODEL_BACKEND_H +#define _LUMINA_FM_BROWSER_MODEL_BACKEND_H + +#include +#include +#include +#include +#include +#include + +#include + +class BrowserModel : public QAbstractItemModel { + Q_OBJECT +public: + BrowserModel(QObject *parent = 0); + ~BrowserModel(); + + //Virtual overrides + QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; + QModelIndex parent(const QModelIndex &index) const; + + // item management + int rowCount(const QModelIndex &parent = QModelIndex()) const; + bool insertRows(int row, int count, const QModelIndex &parent = QModelIndex()); + bool removeRow(int row, const QModelIndex &parent = QModelIndex()); + bool removeRows(int row, int count, const QModelIndex &parent = QModelIndex()); + + int columnCount(const QModelIndex &parent = QModelIndex()) const; + bool insertColumns(int column, int count, const QModelIndex &parent = QModelIndex()); + bool removeColumn(int column, const QModelIndex &parent = QModelIndex()); + bool removeColumns(int column, int count, const QModelIndex &parent = QModelIndex()); + + //bool hasChildren(const QModelIndex &parent = QModelIndex()) const; + + // data functions + Qt::ItemFlags flags(const QModelIndex &index) const; + QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; + QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; + // data modification functions + bool setData(const QModelIndex &index, const QVariant &value, int role = Qt::EditRole); + bool setHeaderData(int section, Qt::Orientation orientation, const QVariant &value, int role = Qt::EditRole); + + // drag and drop + //QMimeData* mimeData(const QModelIndexList &indexes) const; + //QStringList mimeTypes() const; + //bool setItemData(const QModelIndex &index, const QMap &roles); + //Qt::DropActions supportedDropActions() const; + //bool dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column, const QModelIndex &parent); + + //Special Functions (non virtual replacements) + LFileInfo* fileInfo(QString name); + QString currentDirectory(); + +public slots: + void loadDirectory(QString dir=""); + void loadItem(QString item); + +private: + QHash HASH; //QString: "row/column" + QString cDir; + //simplification functions + /*QString findInHash(QString path); + QString findInHash(QModelIndex index); + LFileInfo* indexToInfo(QString path);*/ + LFileInfo* indexToInfo(QModelIndex index); + +private slots: + +protected: + +signals: + +}; + +#endif + diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DDListWidgets.h b/src-qt5/desktop-utils/lumina-fm/widgets/DDListWidgets.h index 254362fd..da4131e0 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DDListWidgets.h +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DDListWidgets.h @@ -63,8 +63,8 @@ protected: QList items = this->selectedItems(); if(items.length()<1){ return; } QList urilist; - for(int i=0; iwhatsThis()); + for(int i=0; iwhatsThis()); } //Create the mime data //qDebug() << "Start Drag:" << urilist; @@ -88,7 +88,7 @@ protected: ev->ignore(); } } - + void dragMoveEvent(QDragMoveEvent *ev){ if(ev->mimeData()->hasUrls() && !this->whatsThis().isEmpty() ){ //Change the drop type depending on the data/dir @@ -104,7 +104,7 @@ protected: } this->update(); } - + void dropEvent(QDropEvent *ev){ if(this->whatsThis().isEmpty() || !ev->mimeData()->hasUrls() ){ ev->ignore(); return; } //not supported //qDebug() << "Drop Event:"; @@ -125,7 +125,7 @@ protected: foreach(const QUrl &url, ev->mimeData()->urls()){ const QString filepath = url.toLocalFile(); //If the target file is modifiable, assume a move - otherwise copy - if(QFileInfo(filepath).isWritable() && (filepath.startsWith(home) && dirpath.startsWith(home))){ + if(QFileInfo(filepath).isWritable() && (filepath.startsWith(home) && dirpath.startsWith(home))){ if(filepath.section("/",0,-2)!=dirpath){ files << "cut::::"+filepath; } //don't "cut" a file into the same dir }else{ files << "copy::::"+filepath; } } @@ -133,18 +133,18 @@ protected: if(!files.isEmpty()){ emit DataDropped( dirpath, files ); } this->setCursor(Qt::ArrowCursor); } - + void mouseReleaseEvent(QMouseEvent *ev){ if(ev->button() != Qt::RightButton && ev->button() != Qt::LeftButton){ ev->ignore(); } else{ QListWidget::mouseReleaseEvent(ev); } //pass it along to the widget } void mousePressEvent(QMouseEvent *ev){ if(ev->button() != Qt::RightButton && ev->button() != Qt::LeftButton){ ev->ignore(); } - else{ QListWidget::mousePressEvent(ev); } //pass it along to the widget + else{ QListWidget::mousePressEvent(ev); } //pass it along to the widget } /*void mouseMoveEvent(QMouseEvent *ev){ if(ev->button() != Qt::RightButton && ev->button() != Qt::LeftButton){ ev->ignore(); } - else{ QListWidget::mouseMoveEvent(ev); } //pass it along to the widget + else{ QListWidget::mouseMoveEvent(ev); } //pass it along to the widget }*/ }; @@ -183,8 +183,8 @@ protected: QList items = this->selectedItems(); if(items.length()<1){ return; } QList urilist; - for(int i=0; iwhatsThis(0)); + for(int i=0; iwhatsThis(0)); } //Create the mime data QMimeData *mime = new QMimeData; @@ -205,9 +205,9 @@ protected: ev->acceptProposedAction(); //allow this to be dropped here }else{ ev->ignore(); - } + } } - + void dragMoveEvent(QDragMoveEvent *ev){ if(ev->mimeData()->hasUrls() && !this->whatsThis().isEmpty() ){ //Change the drop type depending on the data/dir @@ -219,7 +219,7 @@ protected: ev->ignore(); } } - + void dropEvent(QDropEvent *ev){ if(this->whatsThis().isEmpty() || !ev->mimeData()->hasUrls() ){ ev->ignore(); return; } //not supported ev->accept(); //handled here @@ -239,25 +239,25 @@ protected: foreach(const QUrl &url, ev->mimeData()->urls()){ const QString filepath = url.toLocalFile(); //If the target file is modifiable, assume a move - otherwise copy - if(QFileInfo(filepath).isWritable() && (filepath.startsWith(home) && dirpath.startsWith(home))){ + if(QFileInfo(filepath).isWritable() && (filepath.startsWith(home) && dirpath.startsWith(home))){ if(filepath.section("/",0,-2)!=dirpath){ files << "cut::::"+filepath; } //don't "cut" a file into the same dir }else{ files << "copy::::"+filepath; } } //qDebug() << "Drop Event:" << dirpath; emit DataDropped( dirpath, files ); } - + void mouseReleaseEvent(QMouseEvent *ev){ if(ev->button() != Qt::RightButton && ev->button() != Qt::LeftButton){ ev->ignore(); } else{ QTreeWidget::mouseReleaseEvent(ev); } //pass it along to the widget } void mousePressEvent(QMouseEvent *ev){ if(ev->button() != Qt::RightButton && ev->button() != Qt::LeftButton){ ev->ignore(); } - else{ QTreeWidget::mousePressEvent(ev); } //pass it along to the widget + else{ QTreeWidget::mousePressEvent(ev); } //pass it along to the widget } /*void mouseMoveEvent(QMouseEvent *ev){ if(ev->button() != Qt::RightButton && ev->button() != Qt::LeftButton){ ev->ignore(); } - else{ QTreeWidget::mouseMoveEvent(ev); } //pass it along to the widget + else{ QTreeWidget::mouseMoveEvent(ev); } //pass it along to the widget }*/ }; -- cgit From ccea2e1130bf1cf54aea58528a493aacadbeda13 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 1 Nov 2017 12:47:19 -0400 Subject: Start working on fixing up lumina-fileinfo --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 28 ++--- src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 11 +- src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui | 132 +++++++++++++++++++---- src-qt5/desktop-utils/lumina-fileinfo/main.cpp | 23 ++-- 4 files changed, 137 insertions(+), 57 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index c712afed..0247e011 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -15,15 +15,13 @@ #include #include -//LFileInfo INFO = LFileInfo(""); - MainUI::MainUI() : QDialog(), ui(new Ui::MainUI){ ui->setupUi(this); //load the designer form canwrite = false; terminate_thread = false; + INFO = new LFileInfo(); UpdateIcons(); //Set all the icons in the dialog SetupConnections(); - INFO = 0; } MainUI::~MainUI(){ @@ -80,7 +78,7 @@ void MainUI::LoadFile(QString path, QString type){ 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()){ QPixmap pix(INFO->absoluteFilePath()); @@ -159,18 +157,20 @@ void MainUI::LoadFile(QString path, QString type){ } 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-page","") ); - 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(),"") ); + //qDebug() << "Reload App Icon:"; + ui->label_xdg_icon->setPixmap( LXDG::findIcon(ui->line_xdg_icon->text(),"").pixmap(64,64) ); + //qDebug() << "Check Desktop File entry"; + if(INFO->iconfile()!=ui->line_xdg_icon->text()){ + xdgvaluechanged(); + } + //qDebug() << "Done with app icon"; } void MainUI::GetDirSize(const QString dirname) const { @@ -225,6 +225,7 @@ void MainUI::GetDirSize(const QString dirname) const { 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_icon, SIGNAL(textChanged(QString)), this, SLOT(ReloadAppIcon()) ); connect(ui->tool_xdg_getCommand, SIGNAL(clicked()), this, SLOT(getXdgCommand()) ); connect(ui->line_xdg_name, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); connect(ui->line_xdg_wdir, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); @@ -262,7 +263,7 @@ void MainUI::on_push_save_clicked(){ 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(); + XDG->icon = ui->line_xdg_icon->text(); //Now do the type-specific fields if(XDG->type == XDGDesktop::APP){ XDG->exec = ui->line_xdg_command->text(); @@ -321,14 +322,15 @@ void MainUI::on_push_xdg_getIcon_clicked(){ for(int i=0; ipush_xdg_getIcon->setWhatsThis(file); + ui->line_xdg_icon->setText(file); ReloadAppIcon(); xdgvaluechanged(); } //XDG Value Changed void MainUI::xdgvaluechanged(){ - if(INFO!=0 && (INFO->isDesktopFile() || INFO->filePath().isEmpty() ) ){ + //qDebug() << "xdgvaluechanged"; + if( INFO->isDesktopFile() || INFO->filePath().isEmpty() ){ ui->push_save->setVisible(true); //Compare the current UI values to the file values ui->push_save->setEnabled(canwrite); //assume changed at this point diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index 8cac813c..089dbe6c 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -33,18 +33,17 @@ public: public slots: void UpdateIcons(); - + void ReloadAppIcon(); private: Ui::MainUI *ui; LFileInfo *INFO; - LVideoSurface *surface; - QMediaPlayer *player; - bool flag; - QElapsedTimer timer; + LVideoSurface *surface; + QMediaPlayer *player; + bool flag; + QElapsedTimer timer; 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: diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui index 51657ba1..d3b88b28 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui @@ -6,13 +6,22 @@ 0 0 - 349 - 354 + 535 + 580 + + + 0 + 0 + + File Information + + + @@ -307,9 +316,24 @@ + + + 0 + 0 + + + + + 16777215 + 42 + + + + + @@ -317,47 +341,107 @@ true + + + 0 + 0 + + + + + 16777215 + 42 + + + + + - - + + + + 0 + 0 + + + - 275 - 16777215 + 64 + 64 - - No Icon - - + 64 64 + + QFrame::StyledPanel + + + + - - - Qt::Horizontal - - - - 40 - 20 - - - + + + + + + 0 + 0 + + + + + 0 + 0 + + + + + 20000 + 42 + + + + + 2 + 2 + + + + + 0 + 0 + + + + + + + + + + + 24 + 24 + + + + @@ -391,6 +475,9 @@ Save + + + QToolButton::InstantPopup @@ -404,6 +491,9 @@ Close + + + QToolButton::DelayedPopup diff --git a/src-qt5/desktop-utils/lumina-fileinfo/main.cpp b/src-qt5/desktop-utils/lumina-fileinfo/main.cpp index a602f290..463f856a 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/main.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/main.cpp @@ -11,36 +11,25 @@ int main(int argc, char ** argv) { LTHEME::LoadCustomEnvSettings(); QApplication a(argc, argv); - a.setAttribute(Qt::AA_UseHighDpiPixmaps); + a.setAttribute(Qt::AA_UseHighDpiPixmaps); LUtils::LoadTranslation(&a, "l-fileinfo"); - //LuminaThemeEngine theme(&a); //Read the input variables QString path = ""; QString flag = ""; for(int i=1; i Date: Wed, 1 Nov 2017 12:47:54 -0400 Subject: Quick cleanup of input parsing in lumina-archiver. --- src-qt5/desktop-utils/lumina-archiver/MainUI.cpp | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp index c4b35474..79c023dc 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp @@ -91,24 +91,18 @@ void MainUI::LoadArguments(QStringList args){ //Now go through and do any actions as needed ui->label_progress->setText(tr("Opening Archive...")); if(action==1){ - qDebug() << "blah"; + //qDebug() << "blah"; connect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); connect(BACKEND, SIGNAL(ExtractSuccessful()), delayClose, SLOT(start()) ); }else if(action==2){ aaFileList.clear(); for(int j=1; j Date: Wed, 1 Nov 2017 15:13:52 -0400 Subject: Rework quite a bit of the lumina-fileinfo backend. Still not quite finished yet, but it is already much more stable/reliable. Just need to add new features. --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 327 +++---- src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 22 +- src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui | 1053 +++++++++++----------- src-qt5/desktop-utils/lumina-fileinfo/main.cpp | 17 +- 4 files changed, 747 insertions(+), 672 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index 0247e011..a990fc29 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -15,13 +15,18 @@ #include #include -MainUI::MainUI() : QDialog(), ui(new Ui::MainUI){ +MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ ui->setupUi(this); //load the designer form canwrite = false; terminate_thread = false; INFO = new LFileInfo(); UpdateIcons(); //Set all the icons in the dialog SetupConnections(); + + //Disable buttons that are not working yet + ui->actionOpen_File->setVisible(false); + ui->actionOpen_Directory->setVisible(false); + ui->menuSave_As->setEnabled(false); } MainUI::~MainUI(){ @@ -37,123 +42,12 @@ void MainUI::LoadFile(QString path, QString type){ //Do the first file information tab qDebug() << "Load File:" << path << type; INFO = new LFileInfo(path); - if(INFO->exists()){ canwrite = INFO->isWritable(); } - else if(!INFO->filePath().isEmpty()){ - //See if the containing directory can be written - //QFileInfo chk(INFO->absolutePath()); - canwrite = (INFO->isDir() && INFO->isWritable()); - }else{ - canwrite = true; //no associated file yet - } - 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 if(!INFO->filePath().isEmpty()){ - 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()){ - QPixmap pix(INFO->absoluteFilePath()); - ui->label_file_icon->setPixmap(pix.scaledToHeight(64)); - ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); - }else if(INFO->isVideo()){ - ui->label_file_icon->hide(); - LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), true, ui->tab_file); - mediaLabel->setFixedSize(64,64); - ui->formLayout->replaceWidget(ui->label_file_icon, mediaLabel); - }else{ - ui->label_file_icon->setPixmap( LXDG::findIcon( INFO->iconfile(), "unknown").pixmap(QSize(64,64)) ); - } - //Now verify the tab is available in the widget - //qDebug() << "Check tab widget"; - if(ui->tabWidget->indexOf(ui->tab_file)<0){ - //qDebug() << "Add File Info Tab"; - ui->tabWidget->addTab(ui->tab_file, tr("File Information")); - } - //qDebug() << "Done with Tab Check"; + SyncFileInfo(); }else{ - if(ui->tabWidget->indexOf(ui->tab_file)>=0){ - ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_file) ); - } + SetupNewFile(); } - - //Now load the special XDG desktop info - qDebug() << "Check XDG Info:" << type; - //qDebug() << INFO->isDesktopFile() << type; - if(INFO->isDesktopFile() || !type.isEmpty()){ - - 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); - //Now ensure the xdg tab exists in the widget - if(ui->tabWidget->indexOf(ui->tab_deskedit)<0){ - qDebug() << "Adding the deskedit tab"; - ui->tabWidget->addTab(ui->tab_deskedit, tr("Edit Shortcut")); - } - }else{ - xdgvaluechanged(); //just do the disables here - //Also remove the xdg tab - if(ui->tabWidget->indexOf(ui->tab_deskedit) >= 0){ - qDebug() << "Removing the deskedit tab"; - ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_deskedit) ); - } - } - //Setup the tab - if(type.isEmpty()){ ui->tabWidget->setCurrentIndex(0); } - else if(ui->tabWidget->count()>1){ ui->tabWidget->setCurrentIndex(1); } - qDebug() << "Done Loading File"; } void MainUI::UpdateIcons(){ @@ -221,8 +115,160 @@ void MainUI::GetDirSize(const QString dirname) const { emit folder_size_changed(filesize, file_number, dir_number, true); } +void MainUI::SyncFileInfo(){ + qDebug() << "Sync File Info"; + if(INFO->filePath().isEmpty()){ return; } + if(INFO->exists()){ canwrite = INFO->isWritable(); } + else{ + //See if the containing directory can be written + QFileInfo chk(INFO->absolutePath()); + canwrite = (chk.isDir() && chk.isWritable()); + } + 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(ftype); } + ui->label_file_type->setText(ftype); + + //Now load the icon for the file + if(INFO->isImage()){ + QPixmap pix(INFO->absoluteFilePath()); + ui->label_file_icon->setPixmap(pix.scaledToHeight(64)); + ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" ); + }else if(INFO->isVideo()){ + ui->label_file_icon->hide(); + LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), true, ui->tab_file); + mediaLabel->setFixedSize(64,64); + ui->formLayout->replaceWidget(ui->label_file_icon, mediaLabel); + }else{ + ui->label_file_icon->setPixmap( LXDG::findIcon( INFO->iconfile(), "unknown").pixmap(QSize(64,64)) ); + } + + //qDebug() << "Check XDG Info:" + //qDebug() << INFO->isDesktopFile() << type; + syncXdgStruct(INFO->XDG()); + //Make sure the right tabs are available + if(ui->tabWidget->indexOf(ui->tab_file)<0){ + //qDebug() << "Add File Info Tab"; + ui->tabWidget->addTab(ui->tab_file, tr("File Information")); + } + if(!INFO->isDesktopFile()){ + if(ui->tabWidget->indexOf(ui->tab_deskedit)>=0){ + ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_deskedit) ); + } + } + ui->tabWidget->setCurrentIndex(ui->tabWidget->indexOf(ui->tab_file) ); +} + +void MainUI::SetupNewFile(){ + //qDebug() << "Setup New File"; + if(!INFO->filePath().isEmpty()){ + INFO = new LFileInfo(); + } + terminate_thread = true; //just in case + canwrite = true; //can always write a new file + syncXdgStruct(INFO->XDG()); + //Make sure the right tabs are enabled + if(ui->tabWidget->indexOf(ui->tab_file)>=0){ + ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_file) ); + } + if(ui->tabWidget->indexOf(ui->tab_deskedit)<0){ + //qDebug() << "Adding the deskedit tab"; + ui->tabWidget->addTab(ui->tab_deskedit, tr("XDG Shortcut")); + } + ui->tabWidget->setCurrentIndex(ui->tabWidget->indexOf(ui->tab_deskedit) ); +} + +void MainUI::syncXdgStruct(XDGDesktop *XDG){ + bool cleanup = false; + if(XDG==0){ XDG = new XDGDesktop(); cleanup = true;} //make sure nothing crashes + if(XDG->type == XDGDesktop::APP){ + ui->line_xdg_command->setText(XDG->exec); + ui->line_xdg_wdir->setText(XDG->path); + ui->check_xdg_useTerminal->setChecked( XDG->useTerminal ); + ui->check_xdg_startupNotify->setChecked( XDG->startupNotify ); + }else if(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( XDG->url ); + ui->tool_xdg_getDir->setVisible(false); //the dir selection button + } + ui->line_xdg_name->setText(XDG->name); + ui->line_xdg_comment->setText(XDG->comment); + ui->line_xdg_icon->setText( XDG->icon ); + ReloadAppIcon(); + ui->actionSave_Shortcut->setVisible(true); + ui->actionSave_Shortcut->setEnabled(false); + if(cleanup){ delete XDG; } +} + +bool MainUI::saveFile(QString path){ + //qDebug() << "Request save file:" << path; + XDGDesktop *XDG = INFO->XDG(); + if(XDG==0){ XDG = new XDGDesktop(); } + if(XDG->type == XDGDesktop::BAD){ XDG->type = XDGDesktop::APP; } + //Update the file path in the data structure + XDG->filePath = path; + //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->line_xdg_icon->text(); + //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 + //qDebug() << "Saving File:" << XDG->filePath; + return XDG->saveDesktopFile(true); //Try to merge the file/structure as necessary +} + // Initialization procedures void MainUI::SetupConnections(){ + connect(ui->actionQuit, SIGNAL(triggered()), this, SLOT(closeApplication()) ); + connect(ui->actionSave_Shortcut, SIGNAL(triggered()), this, SLOT(save_clicked()) ); + connect(ui->actionNew_Shortcut, SIGNAL(triggered()), this, SLOT(SetupNewFile()) ); + connect(ui->actionOpen_File, SIGNAL(triggered()), this, SLOT(open_file()) ); + connect(ui->actionOpen_Directory, SIGNAL(triggered()), this, SLOT(open_dir()) ); connect(ui->line_xdg_command, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); connect(ui->line_xdg_comment, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); connect(ui->line_xdg_icon, SIGNAL(textChanged(QString)), this, SLOT(ReloadAppIcon()) ); @@ -235,55 +281,34 @@ void MainUI::SetupConnections(){ } //UI Buttons -void MainUI::on_push_close_clicked(){ +void MainUI::closeApplication(){ terminate_thread = true; - if(ui->push_save->isEnabled()){ + if(ui->actionSave_Shortcut->isEnabled()){ //Still have unsaved changes //TO-DO - prompt for whether to save the changes } this->close(); } -void MainUI::on_push_save_clicked(){ +void MainUI::save_clicked(){ //Save all the xdg values into the structure - if( (!INFO->isDesktopFile() && !INFO->filePath().isEmpty()) || !canwrite){ return; } - if(INFO->filePath().isEmpty()){ + QString filePath = INFO->filePath(); + if( !filePath.isEmpty() && !INFO->isDesktopFile() ){ return; } + if(filePath.isEmpty() || !canwrite){ //Need to prompt for where to save the file and what to call it QString appdir = QString(getenv("XDG_DATA_HOME"))+"/applications/"; if(!QFile::exists(appdir)){ QDir dir; dir.mkpath(appdir); } - QString filePath = QFileDialog::getSaveFileName(this, tr("Save Application File"), appdir, tr("Application Registrations (*.desktop)") ); + filePath = QFileDialog::getSaveFileName(this, tr("Save Application File"), appdir, tr("XDG Shortcuts (*.desktop)") ); if(filePath.isEmpty()){ return; } if(!filePath.endsWith(".desktop")){ filePath.append(".desktop"); } - //Update the file paths in the data structure - INFO->setFile(filePath); - INFO->XDG()->filePath = filePath; } - 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->line_xdg_icon->text(); - //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 = XDG->saveDesktopFile(true); //Try to merge the file/structure as necessary - qDebug() << "File Saved:" << saved; - ui->push_save->setEnabled( !saved ); + //qDebug() << " -Try Saving File:" << filePath; + bool saved = saveFile(filePath); + //qDebug() << "File Saved:" << saved; + ui->actionSave_Shortcut->setEnabled( !saved ); if(saved){ //Re-load the file info - LoadFile(INFO->absoluteFilePath()); + LoadFile(filePath); } } @@ -331,14 +356,14 @@ void MainUI::on_push_xdg_getIcon_clicked(){ void MainUI::xdgvaluechanged(){ //qDebug() << "xdgvaluechanged"; if( INFO->isDesktopFile() || INFO->filePath().isEmpty() ){ - ui->push_save->setVisible(true); + ui->actionSave_Shortcut->setVisible(true); //Compare the current UI values to the file values - ui->push_save->setEnabled(canwrite); //assume changed at this point + ui->actionSave_Shortcut->setEnabled(canwrite); //assume changed at this point // TO-DO }else{ - ui->push_save->setVisible(false); - ui->push_save->setEnabled(false); + ui->actionSave_Shortcut->setVisible(false); + ui->actionSave_Shortcut->setEnabled(false); } } diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index 089dbe6c..f45e15d7 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -13,17 +13,19 @@ #ifndef _LUMINA_FILE_INFO_MAIN_UI_H #define _LUMINA_FILE_INFO_MAIN_UI_H -#include +#include #include -#include #include #include #include -namespace Ui{ class MainUI; +#include + +namespace Ui{ + class MainUI; }; -class MainUI : public QDialog{ +class MainUI : public QMainWindow{ Q_OBJECT public: MainUI(); @@ -34,6 +36,7 @@ public: public slots: void UpdateIcons(); void ReloadAppIcon(); + private: Ui::MainUI *ui; LFileInfo *INFO; @@ -46,16 +49,23 @@ private: bool terminate_thread; //flag for terminating the GetDirSize task void GetDirSize(const QString dirname) const; //function to get folder size + void SyncFileInfo(); + + void syncXdgStruct(XDGDesktop*); + + bool saveFile(QString path); + signals: void folder_size_changed(quint64 size, quint64 files, quint64 folders, bool finished) const; //Signal for updating the folder size asynchronously private slots: + void SetupNewFile(); //Initialization functions void SetupConnections(); //UI Buttons - void on_push_close_clicked(); - void on_push_save_clicked(); + void closeApplication(); + void save_clicked(); void getXdgCommand(QString prev = ""); //void on_tool_xdg_getCommand_clicked(QString prev = ""); void on_tool_xdg_getDir_clicked(); diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui index d3b88b28..f8414026 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui @@ -1,522 +1,571 @@ MainUI - + 0 0 - 535 - 580 + 800 + 658 - - - 0 - 0 - - File Information - + - - - - - 1 - - - - File Information - - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - - - icon - - - Qt::AlignCenter - - - - - - - - 0 - 0 - - - - Qt::Horizontal - - - - - - - Owner: - - - - - - - - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - Group: - - - - - - - - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - Permissions: - - - - - - - Qt::Horizontal - - - - - - - Created: - - - - - - - Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - - - - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - Last Modified: - - - - - - - Type: - - - - - - - MimeType: - - - - - - - - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - File Size: - - - - - - - - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - - - - true - - - Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse - - - - - - - - Edit Shortcut - - - - 2 - - - 4 - - - 4 - - - 4 - - - 4 - - - - - - - Working Dir: - - - - - - - Use startup notification - - - - - - - true - - - - - - - Icon: - - - - - - - Command: - - - - - - - Comment: - - - - - - - - - - Run in terminal - - - - - - - Name: - - - - - - - Options - - - - - - - - - - - - - - 0 - 0 - - - - - 16777215 - 42 - - - - - - - - - - - - - - true - - - - 0 - 0 - - - - - 16777215 - 42 - - - - - - - - - - - - - - - - - 0 - 0 - - - - - 64 - 64 - - - - - 64 - 64 - - - - QFrame::StyledPanel - - - - - - - - - - - - - - - - 0 - 0 - - - - - 0 - 0 - - - - - 20000 - 42 - - - - - 2 - 2 - - - - - 0 - 0 - - - - - - - - - - - 24 - 24 - - - - - - - - - - Qt::Horizontal - - - - - - - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Save - - - - - - QToolButton::InstantPopup - - - Qt::ToolButtonTextBesideIcon - + + + + + + 1 + + + + File Information + + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + icon + + + Qt::AlignCenter + + + + + + + + 0 + 0 + + + + Qt::Horizontal + + + + + + + Owner: + + + + + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + + + + Group: + + + + + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + + + + Permissions: + + + + + + + Qt::Horizontal + + + + + + + Created: + + + + + + + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + + + + Last Modified: + + + + + + + Type: + + + + + + + MimeType: + + + + + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + + + + File Size: + + + + + + + + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + + + + + + + true + + + Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse + + + + - - - - - Close - - - - - - QToolButton::DelayedPopup - - - Qt::ToolButtonTextBesideIcon - + + + XDG Shortcut + + + + 2 + + + 4 + + + 4 + + + 4 + + + 4 + + + + + + + Working Dir: + + + + + + + Use startup notification + + + + + + + true + + + + + + + Icon: + + + + + + + Command: + + + + + + + Comment: + + + + + + + + + + Run in terminal + + + + + + + Name: + + + + + + + Options + + + + + + + + + + + + + + 0 + 0 + + + + + 16777215 + 42 + + + + + + + + .. + + + + + + + true + + + + 0 + 0 + + + + + 16777215 + 42 + + + + + + + + .. + + + + + + + + + + 0 + 0 + + + + + 64 + 64 + + + + + 64 + 64 + + + + QFrame::StyledPanel + + + + + + + + + + + + + + + + 0 + 0 + + + + + 0 + 0 + + + + + 20000 + 42 + + + + + 2 + 2 + + + + + 0 + 0 + + + + + + + + .. + + + + 24 + 24 + + + + + + + + + + Qt::Horizontal + + + + - - - - + + + + + + + + 0 + 0 + 800 + 39 + + + + + File + + + + Save As + + + + + + + + + + + + + + + + + + + + + + + + + + Open File + + + Ctrl+O + + + Qt::ApplicationShortcut + + + + + + + + Quit + + + Ctrl+Q + + + Qt::ApplicationShortcut + + + + + + + + Save Shortcut + + + Ctrl+S + + + Qt::ApplicationShortcut + + + + + + + + Local Shortcut + + + + + + + + Register Shortcut + + + + + + + + Open Directory + + + + + + + + New Shortcut + + - - - line_xdg_name - line_xdg_comment - line_xdg_command - line_xdg_wdir - check_xdg_startupNotify - check_xdg_useTerminal - tool_xdg_getCommand - tool_xdg_getDir - diff --git a/src-qt5/desktop-utils/lumina-fileinfo/main.cpp b/src-qt5/desktop-utils/lumina-fileinfo/main.cpp index 463f856a..ce62399d 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/main.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/main.cpp @@ -20,26 +20,17 @@ int main(int argc, char ** argv) QString flag = ""; for(int i=1; i Date: Thu, 2 Nov 2017 10:21:06 -0400 Subject: Finish up the large cleanup of lumina-fileinfo. --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 137 +++++++++++++++++++++-- src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 15 ++- src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui | 99 ++++++++++++++-- 3 files changed, 227 insertions(+), 24 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index a990fc29..e64346ae 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -24,9 +24,9 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ SetupConnections(); //Disable buttons that are not working yet - ui->actionOpen_File->setVisible(false); - ui->actionOpen_Directory->setVisible(false); - ui->menuSave_As->setEnabled(false); + //ui->actionOpen_File->setVisible(false); + //ui->actionOpen_Directory->setVisible(false); + //ui->menuSave_As->setEnabled(false); } MainUI::~MainUI(){ @@ -67,6 +67,15 @@ void MainUI::ReloadAppIcon(){ //qDebug() << "Done with app icon"; } +void MainUI::stopDirSize(){ + if(sizeThread.isRunning()){ + terminate_thread = true; + sizeThread.waitForFinished(); + QApplication::processEvents(); //throw away any last signals waiting to be processed + } + terminate_thread = false; +} + void MainUI::GetDirSize(const QString dirname) const { const quint16 update_frequency = 2000; //For reducing the number of folder_size_changed calls quint64 filesize = 0; @@ -117,6 +126,7 @@ void MainUI::GetDirSize(const QString dirname) const { void MainUI::SyncFileInfo(){ qDebug() << "Sync File Info"; + stopDirSize(); if(INFO->filePath().isEmpty()){ return; } if(INFO->exists()){ canwrite = INFO->isWritable(); } else{ @@ -129,7 +139,7 @@ void MainUI::SyncFileInfo(){ 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()); + sizeThread = QtConcurrent::run(this, &MainUI::GetDirSize, INFO->absoluteFilePath()); } ui->label_file_owner->setText(INFO->owner()); ui->label_file_group->setText(INFO->group()); @@ -171,12 +181,14 @@ void MainUI::SyncFileInfo(){ //Make sure the right tabs are available if(ui->tabWidget->indexOf(ui->tab_file)<0){ //qDebug() << "Add File Info Tab"; - ui->tabWidget->addTab(ui->tab_file, tr("File Information")); + ui->tabWidget->insertTab(0, ui->tab_file, tr("File Information")); } if(!INFO->isDesktopFile()){ if(ui->tabWidget->indexOf(ui->tab_deskedit)>=0){ ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_deskedit) ); } + }else if(ui->tabWidget->indexOf(ui->tab_deskedit)<0){ + ui->tabWidget->addTab( ui->tab_deskedit, tr("XDG Shortcut") ); } ui->tabWidget->setCurrentIndex(ui->tabWidget->indexOf(ui->tab_file) ); } @@ -186,7 +198,7 @@ void MainUI::SetupNewFile(){ if(!INFO->filePath().isEmpty()){ INFO = new LFileInfo(); } - terminate_thread = true; //just in case + stopDirSize(); canwrite = true; //can always write a new file syncXdgStruct(INFO->XDG()); //Make sure the right tabs are enabled @@ -230,6 +242,7 @@ void MainUI::syncXdgStruct(XDGDesktop *XDG){ ui->actionSave_Shortcut->setVisible(true); ui->actionSave_Shortcut->setEnabled(false); if(cleanup){ delete XDG; } + checkXDGValidity(); } bool MainUI::saveFile(QString path){ @@ -262,13 +275,47 @@ bool MainUI::saveFile(QString path){ return XDG->saveDesktopFile(true); //Try to merge the file/structure as necessary } +QString MainUI::findOpenDirFile(bool isdir){ + static QList urls; + if(urls.isEmpty()){ + urls << QUrl::fromLocalFile("/"); + QStringList dirs = QString(getenv("XDG_DATA_DIRS")).split(":"); + for(int i=0; iactionQuit, SIGNAL(triggered()), this, SLOT(closeApplication()) ); connect(ui->actionSave_Shortcut, SIGNAL(triggered()), this, SLOT(save_clicked()) ); + connect(ui->actionLocal_Shortcut, SIGNAL(triggered()), this, SLOT(save_as_local_clicked()) ); + connect(ui->actionRegister_Shortcut, SIGNAL(triggered()), this, SLOT(save_as_register_clicked()) ); connect(ui->actionNew_Shortcut, SIGNAL(triggered()), this, SLOT(SetupNewFile()) ); - connect(ui->actionOpen_File, SIGNAL(triggered()), this, SLOT(open_file()) ); - connect(ui->actionOpen_Directory, SIGNAL(triggered()), this, SLOT(open_dir()) ); + connect(ui->actionOpen_File, SIGNAL(triggered()), this, SLOT(open_file_clicked()) ); + connect(ui->actionOpen_Directory, SIGNAL(triggered()), this, SLOT(open_dir_clicked()) ); connect(ui->line_xdg_command, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); connect(ui->line_xdg_comment, SIGNAL(editingFinished()), this, SLOT(xdgvaluechanged()) ); connect(ui->line_xdg_icon, SIGNAL(textChanged(QString)), this, SLOT(ReloadAppIcon()) ); @@ -312,6 +359,50 @@ void MainUI::save_clicked(){ } } +void MainUI::save_as_local_clicked(){ + QString filePath = QFileDialog::getSaveFileName(this, tr("Save Application File"), QDir::homePath(), tr("XDG Shortcuts (*.desktop)") ); + if(filePath.isEmpty()){ return; } + if(!filePath.endsWith(".desktop")){ filePath.append(".desktop"); } + + //qDebug() << " -Try Saving File:" << filePath; + bool saved = saveFile(filePath); + //qDebug() << "File Saved:" << saved; + ui->actionSave_Shortcut->setEnabled( !saved ); + if(saved){ + //Re-load the file info + LoadFile(filePath); + } +} + +void MainUI::save_as_register_clicked(){ + QString appdir = QString(getenv("XDG_DATA_HOME"))+"/applications/"; + if(!QFile::exists(appdir)){ QDir dir; dir.mkpath(appdir); } + QString filePath = QFileDialog::getSaveFileName(this, tr("Save Application File"), appdir, tr("XDG Shortcuts (*.desktop)") ); + if(filePath.isEmpty()){ return; } + if(!filePath.endsWith(".desktop")){ filePath.append(".desktop"); } + + //qDebug() << " -Try Saving File:" << filePath; + bool saved = saveFile(filePath); + //qDebug() << "File Saved:" << saved; + ui->actionSave_Shortcut->setEnabled( !saved ); + if(saved){ + //Re-load the file info + LoadFile(filePath); + } +} + +void MainUI::open_dir_clicked(){ + QString path = findOpenDirFile(true); //directory only + if(path.isEmpty()){ return; } + LoadFile(path, ""); +} + +void MainUI::open_file_clicked(){ + QString path = findOpenDirFile(false); //files only + if(path.isEmpty()){ return; } + LoadFile(path, ""); +} + void MainUI::getXdgCommand(QString prev){ //Find a binary to run QString dir = prev; //start with the previous attempt (if there was one) @@ -353,16 +444,38 @@ void MainUI::on_push_xdg_getIcon_clicked(){ } //XDG Value Changed +bool MainUI::checkXDGValidity(){ + XDGDesktop tmp; + tmp.type = XDGDesktop::APP; //make this adjustable later (GUI radio buttons?) + tmp.name = ui->line_xdg_name->text(); + tmp.genericName = ui->line_xdg_name->text().toLower(); + tmp.comment = ui->line_xdg_comment->text(); + tmp.icon = ui->line_xdg_icon->text(); + //Now do the type-specific fields + if(tmp.type == XDGDesktop::APP){ + tmp.exec = ui->line_xdg_command->text(); + tmp.tryexec = ui->line_xdg_command->text().section(" ",0,0); //use the first word/binary for the existance check + tmp.path = ui->line_xdg_wdir->text(); //working dir/path + tmp.useTerminal = ui->check_xdg_useTerminal->isChecked(); + tmp.startupNotify = ui->check_xdg_startupNotify->isChecked(); + }else if(tmp.type==XDGDesktop::LINK){ + tmp.url = ui->line_xdg_wdir->text(); //we re-used this field + } + bool valid = tmp.isValid(); + ui->label_xdg_statusicon->setPixmap( LXDG::findIcon( valid ? "dialog-ok" : "dialog-cancel", "").pixmap(32,32) ); + ui->label_xdg_status->setText( valid ? tr("Valid Settings") : tr("Invalid Settings") ); + return tmp.isValid(); +} + void MainUI::xdgvaluechanged(){ //qDebug() << "xdgvaluechanged"; if( INFO->isDesktopFile() || INFO->filePath().isEmpty() ){ - ui->actionSave_Shortcut->setVisible(true); + bool valid = checkXDGValidity(); //Compare the current UI values to the file values - ui->actionSave_Shortcut->setEnabled(canwrite); //assume changed at this point - // TO-DO + ui->menuSave_As->setEnabled(valid); + ui->actionSave_Shortcut->setEnabled(canwrite && valid); //assume changed at this point }else{ - ui->actionSave_Shortcut->setVisible(false); ui->actionSave_Shortcut->setEnabled(false); } } diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index f45e15d7..d7b17207 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -18,6 +18,7 @@ #include #include #include +#include #include @@ -44,9 +45,12 @@ private: QMediaPlayer *player; bool flag; QElapsedTimer timer; + QFuture sizeThread; bool canwrite; bool terminate_thread; //flag for terminating the GetDirSize task + void stopDirSize(); + void GetDirSize(const QString dirname) const; //function to get folder size void SyncFileInfo(); @@ -54,6 +58,7 @@ private: void syncXdgStruct(XDGDesktop*); bool saveFile(QString path); + QString findOpenDirFile(bool isdir = false); signals: void folder_size_changed(quint64 size, quint64 files, quint64 folders, bool finished) const; //Signal for updating the folder size asynchronously @@ -66,16 +71,20 @@ private slots: //UI Buttons void closeApplication(); void save_clicked(); + void save_as_local_clicked(); + void save_as_register_clicked(); + void open_dir_clicked(); + void open_file_clicked(); void getXdgCommand(QString prev = ""); - //void on_tool_xdg_getCommand_clicked(QString prev = ""); void on_tool_xdg_getDir_clicked(); void on_push_xdg_getIcon_clicked(); //XDG Value Changed + bool checkXDGValidity(); void xdgvaluechanged(); - //Folder size - void refresh_folder_size(quint64 size, quint64 files, quint64 folders, bool finished); //Slot for updating the folder size asynchronously + //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/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui index f8414026..217c1a10 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui @@ -14,7 +14,8 @@ File Information - + + .. @@ -442,6 +443,78 @@ + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + 0 + 0 + + + + + 32 + 32 + + + + + 32 + 32 + + + + + + + + + + + + 0 + 0 + + + + + 0 + 32 + + + + + 16777215 + 32 + + + + + true + + + + + + + + + @@ -473,7 +546,8 @@ Save As - + + .. @@ -493,7 +567,8 @@ - + + .. Open File @@ -507,7 +582,8 @@ - + + .. Quit @@ -521,7 +597,8 @@ - + + .. Save Shortcut @@ -535,7 +612,8 @@ - + + .. Local Shortcut @@ -543,7 +621,8 @@ - + + .. Register Shortcut @@ -551,7 +630,8 @@ - + + .. Open Directory @@ -559,7 +639,8 @@ - + + .. New Shortcut -- cgit From d7d0a2508d768583ffbc152e5a06363d7fc17ccb Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Thu, 2 Nov 2017 11:24:14 -0400 Subject: A bit more cleanup on the external device reporting/usage. --- src-qt5/desktop-utils/lumina-fm/MainUI.cpp | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp index 692b7562..9ce7b69e 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp @@ -349,7 +349,7 @@ void MainUI::RebuildDeviceMenu(){ QStringList devs = LOS::ExternalDevicePaths(); //Output Format: :::::::: (6/24/14 - version 0.4.0 ) // = [USB, HDRIVE, SDCARD, DVD, LVM, UNKNOWN] - qDebug() << "Externally-mounted devices:" << devs; + //qDebug() << "Externally-mounted devices:" << devs; //Now add them to the menu appropriately for(int i=0; i @@ -29,307 +29,307 @@ Archive: - + Archiv: File - + Datei Edit - + Bearbeiten Burn to Disk - + Auf Disc brennen &Open Archive - + Archiv &öffnen Open archive - + Archiv öffnen &New Archive - + &Neues Archiv New archive - + Neues Archiv &Quit - + &Beenden Add File(s) - + Datei(en) hinzufügen Add files to archive - + Dateien zum Archiv hinzufügen Remove File(s) - + Datei(en) entfernen Remove selection from archive - + Auswahl aus Archiv entfernen Extract All - + Alles extrahieren Extract archive into a directory - + Archiv in ein Verzeichnis extrahieren Add Directory - + Verzeichnis hinzufügen Add directory to archive - + Verzeichnis zum Archiv hinzufügen Extract Selection - + Auswahl extrahieren Extract Selected Items - + Ausgewählte Elemente extrahieren USB Image - + USB-Abbild Copy an IMG to a USB device (may require admin permission) - + IMG auf ein USB-Gerät kopieren (eventuell Administratorberechtigung erforderlich) Archive Manager - + Archivverwaltung Admin Mode - + Administratormodus CTRL+N - + STRG+N CTRL+O - + STRG+Ö CTRL+Q - + STRG+B CTRL+E - + STRG+E MimeType - + MimeType Size - + Größe Opening Archive... - + Archiv wird geöffnet... All Types %1 - + Alle Typen %1 Uncompressed Archive (*.tar) - + Unkomprimiertes Archiv (*.tar) GZip Compressed Archive (*.tar.gz *.tgz) - + GZip-komprimiertes Archiv (*.tar.gz *.tgz) BZip Compressed Archive (*.tar.bz *.tbz) - + BZip-komprimiertes Archiv (*.tar.bz *.tbz) BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - + BZip2-komprimiertes Archiv (*.tar.bz2 *.tbz2) LMZA Compressed Archive (*.tar.lzma *.tlz) - + LMZA-komprimiertes Archiv (*.tar.lzma *.tlz) XZ Compressed Archive (*.tar.xz *.txz) - + XZ-komprimiertes Archiv (*.tar.xz *.txz) CPIO Archive (*.cpio) - + CPIO-Archiv (*.cpio) PAX Archive (*.pax) - + PAX-Archiv (*.pax) AR Archive (*.ar) - + AR-Archiv (*.ar) SHAR Archive (*.shar) - + SHAR-Archiv (*.shar) Zip Archive (*.zip) - + Zip-Archiv (*.zip) 7-Zip Archive (*.7z) - + 7-Zip-Archiv (*.7z) All Known Types %1 - + Alle bekannten Typen %1 READ-ONLY: ISO image (*.iso *.img) - + NUR LESEN: ISO-Abbild (*.iso *.img) READ-ONLY: XAR archive (*.xar) - + NUR LESEN: XAR-Archiv (*.xar) READ-ONLY: Java archive (*.jar) - + NUR LESEN: Java-Archiv (*.jar) READ-ONLY: RedHat Package (*.rpm) - + NUR LESEN: RedHat-Paket (*.rpm) Show All Files (*) - + Alle Dateien anzeigen (*) Create Archive - + Archiv erstellen Error - + Fehler Could not overwrite file: - + Datei konnte nicht überschrieben werden: Open Archive - + Archiv öffnen Add to Archive - + Zum Archiv hinzufügen Adding Items... - + Elemente werden hinzugefügt... Removing Items... - + Elemente werden entfernt... Extract Into Directory - + In Verzeichnis extrahieren @@ -337,12 +337,12 @@ Extracting... - + Extrahierungsvorgang... Link To: %1 - + Link auf: %1 @@ -350,67 +350,67 @@ Multimedia - + Multimedia Development - + Entwicklung Education - + Bildung Games - + Spiele Graphics - + Grafik Network - + Netzwerk Office - + Büro Science - + Wissenschaft Settings - + Einstellungen System - + System Utility - + Dienstprogramm Wine - + Wine Unsorted - + Unsortiert @@ -418,127 +418,127 @@ Burn IMG to device - + IMG auf Gerät brennen IMG File - + IMG-Datei Block Size - + Blockgröße USB Device - + USB-Gerät Refresh Device List - + Geräteliste aktualisieren Wipe all extra space on device (conv = sync) - + Sämtlichen zusätzlichen Speicherplatz auf Gerät löschen (conv = sync) Burning to USB: - + Auf USB brennen: Time Elapsed: - + Vergangene Zeit: Cancel - + Abbrechen Start - + Start Burn IMG to Device - + IMG auf Gerät brennen Admin Mode - + Administratormodus Kilobyte(s) - + Kilobyte(s) Megabyte(s) - + Megabyte(s) Gigabyte(s) - + Gigabyte(s) Cancel Image Burn? - + Brennen des Abbildes abbrechen? Do you wish to stop the current IMG burn process? - + Möchten Sie den laufenden IMG-Brennprozess stoppen? Warning: This will leave the USB device in an inconsistent state - + Warnung: Dies wird das USB-Gerät in einem inkonsistenten Zustand zurücklassen Administrator Permissions Needed - + Administratorberechtigungen erforderlich This operation requires administrator priviledges. - + Dieser Vorgang erfordert Administratorrechte. Would you like to enable these priviledges? - + Möchten Sie diese Rechte aktivieren? ERROR - + FEHLER The process could not be completed: - + Der Prozess konnte nicht abgeschlossen werden: SUCCESS - + ERFOLG The image was successfully burned to the USB device - + Das Abbild wurde erfolgreich auf das USB-Gerät gebrannt -- cgit From b4a0884a1377175f089c683c22bbf724d4db6824 Mon Sep 17 00:00:00 2001 From: Pavel Borecki Date: Thu, 21 Sep 2017 05:22:56 +0000 Subject: Translated using Weblate (Czech) Currently translated at 100.0% (101 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/cs/ --- .../lumina-archiver/i18n/l-archiver_cs.ts | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts index c2c5a26e..0e3d0da8 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts @@ -350,67 +350,67 @@ Multimedia - + Multimédia Development - + Vývoj Education - + Výuka Games - + Hry Graphics - + Grafika Network - + Sítě Office - + Kancelář Science - + Věda Settings - + Nastavení System - + Systém Utility - + Nástroje Wine - + Wine Unsorted - + Různé -- cgit From 48d34996f4a54b7fd521a3989cb031f6aa0bb332 Mon Sep 17 00:00:00 2001 From: Tommi Nieminen Date: Wed, 4 Oct 2017 18:29:58 +0000 Subject: Translated using Weblate (Finnish) Currently translated at 94.0% (95 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/fi/ --- .../desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts index 4525f584..8467eb99 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts @@ -350,37 +350,37 @@ Multimedia - + Multimedia Development - + Kehitys Education - + Kasvatus Games - + Pelit Graphics - + Grafiikka Network - + Verkko Office - + Toimisto -- cgit From 35dec768b7fea282872454ce2e5f31cf24bc0339 Mon Sep 17 00:00:00 2001 From: Moo Date: Tue, 26 Sep 2017 09:10:24 +0000 Subject: Translated using Weblate (Lithuanian) Currently translated at 94.0% (95 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/lt/ --- .../lumina-archiver/i18n/l-archiver_lt.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts index 121263bb..d8faaae4 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts @@ -350,7 +350,7 @@ Multimedia - + Multimedija @@ -360,42 +360,42 @@ Education - + Švietimas Games - + Žaidimai Graphics - + Grafika Network - + Tinklas Office - + Raštinė Science - + Mokslas Settings - + Nustatymai System - + Sistema @@ -405,7 +405,7 @@ Wine - + Wine -- cgit From d1ef5af6c2164e5d559ac09fcacd50e8725e38d6 Mon Sep 17 00:00:00 2001 From: Moo Date: Tue, 14 Nov 2017 00:02:14 +0000 Subject: Translated using Weblate (Lithuanian) Currently translated at 100.0% (33 of 33 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/lt/ --- .../lumina-calculator/i18n/l-calc_lt.ts | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lt.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lt.ts index eb6dad61..d437c87d 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lt.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lt.ts @@ -6,67 +6,67 @@ Multimedia - + Multimedija Development - + Programavimas Education - + Švietimas Games - + Žaidimai Graphics - + Grafika Network - + Tinklas Office - + Raštinė Science - + Mokslas Settings - + Nustatymai System - + Sistema Utility - + Paslaugų programos Wine - + Wine Unsorted - + Nesurūšiuota -- cgit From 92ad9c65571b202a18f20b896b73affda1fbd52e Mon Sep 17 00:00:00 2001 From: Davidmp Date: Wed, 20 Sep 2017 14:58:11 +0000 Subject: Translated using Weblate (Catalan) Currently translated at 100.0% (33 of 33 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/ca/ --- .../lumina-calculator/i18n/l-calc_ca.ts | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ca.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ca.ts index 10a0bc9e..5fd5d4f4 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ca.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ca.ts @@ -6,67 +6,67 @@ Multimedia - + Multimèdia Development - + Desenvolupament Education - + Educació Games - + Jocs Graphics - + Gràfics Network - + Xarxa Office - + Oficina Science - + Ciència Settings - + Paràmetres System - + Sistema Utility - + Utilitat Wine - + Wine Unsorted - + Sense classificar @@ -170,7 +170,7 @@ Save Calculator History - Desa l'historial de la calculadora + Desa l'historial de la calculadora -- cgit From 7c2deb1ad0cd5ff3ab23d75366b6e1bdd10386b8 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 20 Sep 2017 21:24:33 +0000 Subject: Translated using Weblate (Danish) Currently translated at 100.0% (33 of 33 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/da/ --- .../lumina-calculator/i18n/l-calc_da.ts | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_da.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_da.ts index 5758644a..a3c4ba6e 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_da.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_da.ts @@ -6,67 +6,67 @@ Multimedia - + Multimedie Development - + Udvikling Education - + Uddannelse Games - + Spil Graphics - + Grafik Network - + Netværk Office - + Kontor Science - + Videnskab Settings - + Indstillinger System - + System Utility - + Hjælpeværktøj Wine - + Wine Unsorted - + Usorteret -- cgit From 3eef21a99f7d8992e370a5f57d406886d3f240a6 Mon Sep 17 00:00:00 2001 From: Ettore Atalan Date: Sat, 4 Nov 2017 18:34:52 +0000 Subject: Translated using Weblate (German) Currently translated at 93.9% (31 of 33 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/de/ --- .../lumina-calculator/i18n/l-calc_de.ts | 62 +++++++++++----------- 1 file changed, 31 insertions(+), 31 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_de.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_de.ts index f1e6c7ec..7ba486d2 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_de.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_de.ts @@ -6,67 +6,67 @@ Multimedia - + Multimedia Development - + Entwicklung Education - + Bildung Games - + Spiele Graphics - + Grafik Network - + Netzwerk Office - + Büro Science - + Wissenschaft Settings - + Einstellungen System - + System Utility - + Dienstprogramm Wine - + Wine Unsorted - + Unsortiert @@ -75,22 +75,22 @@ Calculator - + Taschenrechner Advanced Operations - + Erweiterte Operationen Percentage %1 - + Prozentsatz %1 Power %1 - + Leistung %1 @@ -100,22 +100,22 @@ Exponential %1 - + Exponentiell %1 Constant Pi %1 - + Konstante Pi %1 Square Root %1 - + Quadratwurzel %1 Logarithm %1 - + Logarithmus %1 @@ -125,52 +125,52 @@ Sine %1 - + Sinus %1 Cosine %1 - + Kosinus %1 Tangent %1 - + Tangens %1 Arc Sine %1 - + Arkussinus %1 Arc Cosine %1 - + Arkuskosinus %1 Arc Tangent %1 - + Arkustangens %1 Hyperbolic Sine %1 - + Hyperbolischer Sinus %1 Hyperbolic Cosine %1 - + Hyperbolischer Kosinus %1 Hyperbolic Tangent %1 - + Hyperbolischer Tangens %1 Save Calculator History - + Taschenrechnerverlauf speichern -- cgit From d2df19d8a97f5b367232929376b2051a448a8149 Mon Sep 17 00:00:00 2001 From: Moo Date: Tue, 14 Nov 2017 00:05:43 +0000 Subject: Translated using Weblate (Lithuanian) Currently translated at 100.0% (101 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/lt/ --- src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts index d8faaae4..fdc1b88b 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts @@ -342,7 +342,7 @@ Link To: %1 - + Nuoroda į: %1 @@ -355,7 +355,7 @@ Development - + Programavimas @@ -400,7 +400,7 @@ Utility - + Paslaugų programos @@ -410,7 +410,7 @@ Unsorted - + Nesurūšiuota @@ -428,7 +428,7 @@ Block Size - + Bloko dydis @@ -443,7 +443,7 @@ Wipe all extra space on device (conv = sync) - + Išvalyti įrenginyje visą papildomą vietą (conv = sync) -- cgit From a9c8fd84a62b6e8d67ac0dd93235f094a481ee05 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 14 Nov 2017 10:25:43 -0500 Subject: Clean up the keyboard shortcut handling in lumina-pdf. Now the page changes can be controlled by arrows/page[up/down] whether a presentation is running or not. Also unify the page that is shown between the presentation window and the main viewer - makes it easier when giving a presentation on a screen that might be behind the presentor. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 12 ++++++++---- src-qt5/desktop-utils/lumina-pdf/mainUI.h | 14 ++++---------- 2 files changed, 12 insertions(+), 14 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index c2f31e01..5cfc5da9 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -82,6 +82,7 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ //Now set the default state of the menu's and actions ui->menuStart_Presentation->setEnabled(false); ui->actionStop_Presentation->setEnabled(false); + this->grabKeyboard(); } MainUI::~MainUI(){ @@ -187,7 +188,7 @@ void MainUI::startPresentation(bool atStart){ QScreen *screen = getScreen(false, cancelled); //let the user select which screen to use (if multiples) if(cancelled){ return;} int page = 0; - if(!atStart){ page = CurrentPage; } + if(!atStart){ page = WIDGET->currentPage()-1; } //currentPage() starts at 1 rather than 0 //PDPI = QSize(SCALEFACTOR*screen->physicalDotsPerInchX(), SCALEFACTOR*screen->physicalDotsPerInchY()); //Now create the full-screen window on the selected screen if(presentationLabel == 0){ @@ -209,13 +210,15 @@ void MainUI::startPresentation(bool atStart){ } void MainUI::ShowPage(int page){ - if(presentationLabel == 0 || !presentationLabel->isVisible()){ return; } //Check for valid document/page - //qDebug() << "Load Page:" << page << "/" << numPages-1; - if(page<0 || page > numPages ){ + //qDebug() << "Load Page:" << page << "/" << numPages << "Index:" << page; + if(page<0 || page > numPages || (page==numPages && CurrentPage==page) ){ endPresentation(); return; //invalid - no document loaded or invalid page specified } + WIDGET->setCurrentPage(page+1); //page numbers start at 1 for this widget + //Stop here if no presentation currently running + if(presentationLabel == 0 || !presentationLabel->isVisible()){ return; } CurrentPage = page; QImage PAGEIMAGE; if(page0){ return; } //currently loaded[ing] //qDebug() << " - Start Loading Pages"; numPages = DOC->numPages(); + //qDebug() << "numPages:" << numPages; progress->setRange(0,numPages); progress->setValue(0); progAct->setVisible(true); diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index c1fc7c7c..c43d0ada 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -75,19 +75,16 @@ signals: protected: void keyPressEvent(QKeyEvent *event){ //See if this is one of the special hotkeys and act appropriately - // NOTE: Some of this is duplicated with the QShortcut definitions (for non-presentation mode) - // This routine does not always work for the main window viewer due to differing widget focus policies - if(presentationLabel!=0 && presentationLabel->isVisible()){ //qDebug() << "Got Key Press:"; if( event->key()==Qt::Key_Escape || event->key()==Qt::Key_Backspace){ //qDebug() << " - Escape/Backspace"; endPresentation(); - }else if(event->key()==Qt::Key_Right || event->key()==Qt::Key_Down || event->key()==Qt::Key_Space){ + }else if(event->key()==Qt::Key_Right || event->key()==Qt::Key_Down || event->key()==Qt::Key_Space || event->key()==Qt::Key_PageDown){ //qDebug() << " - Right/Down/Spacebar"; - ShowPage( CurrentPage+1 ); - }else if(event->key()==Qt::Key_Left || event->key()==Qt::Key_Up){ + ShowPage( WIDGET->currentPage() ); //currentPage() starts at 1 rather than 0 + }else if(event->key()==Qt::Key_Left || event->key()==Qt::Key_Up || event->key()==Qt::Key_PageUp){ //qDebug() << " - Left/Up"; - ShowPage( CurrentPage-1 ); + ShowPage( WIDGET->currentPage()-2 ); //currentPage() starts at 1 rather than 0 }else if(event->key()==Qt::Key_Home){ //qDebug() << " - Home"; ShowPage(0); //go to the first page @@ -100,9 +97,6 @@ protected: }else{ QMainWindow::keyPressEvent(event); } - }else{ - QMainWindow::keyPressEvent(event); - } } }; #endif -- cgit From 94589dd957bf5b7792d69a6825643e4cc2fa66c7 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 14 Nov 2017 11:41:20 -0500 Subject: Finish up a bit more cleanup of keyboard events in lumina-pdf --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 2 +- src-qt5/desktop-utils/lumina-pdf/mainUI.h | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index 5cfc5da9..07680dcf 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -131,7 +131,7 @@ void MainUI::loadFile(QString path){ Printer->setOrientation(QPrinter::Portrait); } delete PAGE; - qDebug() << " - Document Setup : start loading pages now"; + //qDebug() << " - Document Setup : start loading pages now"; QTimer::singleShot(10, WIDGET, SLOT(updatePreview())); //start loading the file preview } diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index c43d0ada..3609db13 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -15,6 +15,8 @@ #include #include #include +#include +#include #include @@ -76,11 +78,25 @@ protected: void keyPressEvent(QKeyEvent *event){ //See if this is one of the special hotkeys and act appropriately //qDebug() << "Got Key Press:"; + bool inPresentation = (presentationLabel!=0); + if(!inPresentation){ + //Alternate functionality when **not** in presentation mode + /*if(event->key()==Qt::Key_Down){ + qDebug() << "Send Wheel Event"; + QWheelEvent event( WIDGET->mapFromGlobal(QCursor::pos()), QCursor::pos(),QPoint(0,0), QPoint(0,30), 0, Qt::Vertical, Qt::LeftButton, Qt::NoModifier); + QApplication::sendEvent(WIDGET, &event); + //WIDGET->scrollDown(); + return; + }else if(event->key()==Qt::Key_Up){ + return; + }*/ + } + if( event->key()==Qt::Key_Escape || event->key()==Qt::Key_Backspace){ //qDebug() << " - Escape/Backspace"; endPresentation(); }else if(event->key()==Qt::Key_Right || event->key()==Qt::Key_Down || event->key()==Qt::Key_Space || event->key()==Qt::Key_PageDown){ - //qDebug() << " - Right/Down/Spacebar"; + //qDebug() << " - Right/Down/Spacebar" << inPresentation; ShowPage( WIDGET->currentPage() ); //currentPage() starts at 1 rather than 0 }else if(event->key()==Qt::Key_Left || event->key()==Qt::Key_Up || event->key()==Qt::Key_PageUp){ //qDebug() << " - Left/Up"; -- cgit From 94ae313802ba84164214efd28afe75278d8cf483 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 14 Nov 2017 15:00:00 -0500 Subject: Fix up the insertion of files from multiple directories within the tar backend. --- src-qt5/desktop-utils/lumina-archiver/MainUI.cpp | 5 +++-- src-qt5/desktop-utils/lumina-archiver/TarBackend.cpp | 20 +++++++++++++++++--- src-qt5/desktop-utils/lumina-archiver/TarBackend.h | 3 +++ 3 files changed, 23 insertions(+), 5 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp index 79c023dc..47c6bfe1 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.cpp @@ -95,8 +95,9 @@ void MainUI::LoadArguments(QStringList args){ connect(BACKEND, SIGNAL(FileLoaded()), this, SLOT(autoextractFiles()) ); connect(BACKEND, SIGNAL(ExtractSuccessful()), delayClose, SLOT(start()) ); }else if(action==2){ - aaFileList.clear(); - for(int j=1; j #include #include +#include Backend::Backend(QObject *parent) : QObject(parent){ //Setup the backend process @@ -91,14 +92,23 @@ QString Backend::linkTo(QString file){ //Modification routines void Backend::startAdd(QStringList paths){ - //NOTE: All the "paths" have to have the same parent directory + //if(paths.isEmpty() && !insertQueue.isEmpty()){ paths = insertQueue; } //load the queue if(paths.contains(filepath)){ paths.removeAll(filepath); } if(paths.isEmpty()){ return; } + //NOTE: All the "paths" have to have the same parent directory + //Go through and find all the files that contain the same parent dir, and put the rest into the insertQueue + QString parent = paths[0].section("/",0,-2); + insertQueue.clear(); + for(int i=1; i contents; // Date: Tue, 14 Nov 2017 15:53:30 -0500 Subject: A few tweaks for teh LVideoLabel - trying to get it loading a bit more reliably. Also disable the LVideoLabel from being used at the moment in lumina-fm - needs a bit more work before we turn this on for everybody. --- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 14 +++++++++----- src-qt5/desktop-utils/lumina-fm/main.cpp | 2 ++ 2 files changed, 11 insertions(+), 5 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index 87a3a6d7..4d8ae44c 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -13,6 +13,8 @@ #include #include +#define USE_VIDEO_LABEL 0 + BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ //Setup the Widget/UI this->setLayout( new QVBoxLayout(this) ); @@ -38,7 +40,9 @@ BrowserWidget::~BrowserWidget(){ } void BrowserWidget::changeDirectory(QString dir){ - videoMap.clear(); + QStringList vids = videoMap.keys(); + for(int i=0; ideleteLater(); } + //videoMap.clear(); if(BROWSER->currentDirectory()==dir){ return; } //already on this directory //qDebug() << "Change Directory:" << dir << historyList; @@ -277,6 +281,7 @@ void BrowserWidget::clearItems(){ if(listWidget!=0){ listWidget->clear(); } else if(treeWidget!=0){ treeWidget->clear(); } freshload = true; + videoMap.clear(); } void BrowserWidget::itemRemoved(QString item){ @@ -352,13 +357,13 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ }else{ if( ! treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).isEmpty() ) { it = treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).first(); - }else if(info->isVideo() && videoMap.find(info->absoluteFilePath()) == videoMap.end()) { + }else if(USE_VIDEO_LABEL && hasThumbnails() && info->isVideo() && !videoMap.contains(info->absoluteFilePath()) ) { it = new CQTreeWidgetItem(treeWidget); treeWidget->addTopLevelItem(it); LVideoWidget *widget = new LVideoWidget(info->absoluteFilePath(), treeWidget->iconSize(), hasThumbnails(), treeWidget); videoMap.insert(info->absoluteFilePath(), QPair(it, widget)); treeWidget->setItemWidget(it, 0, widget); - }else if(info->isVideo()) { + }else if(USE_VIDEO_LABEL && hasThumbnails() && info->isVideo() && videoMap.contains(info->absoluteFilePath()) ) { it = videoMap[info->absoluteFilePath()].first; LVideoWidget *widget = videoMap[info->absoluteFilePath()].second; widget->setIconSize(treeWidget->iconSize()); @@ -370,8 +375,7 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ } } //Now set/update all the data - if(!info->isVideo()) - it->setIcon(0, ico); + if(!info->isVideo() || !hasThumbnails() || !USE_VIDEO_LABEL){ it->setIcon(0, ico); } it->setText(1, info->isDir() ? "" : LUtils::BytesToDisplaySize(info->size()) ); //size (1) it->setText(2, info->mimetype() ); //type (2) it->setText(3, DTtoString(info->lastModified() )); //modification date (3) diff --git a/src-qt5/desktop-utils/lumina-fm/main.cpp b/src-qt5/desktop-utils/lumina-fm/main.cpp index 61d2dc95..3b8fdcd0 100644 --- a/src-qt5/desktop-utils/lumina-fm/main.cpp +++ b/src-qt5/desktop-utils/lumina-fm/main.cpp @@ -2,6 +2,7 @@ #include #include #include +#include #include "MainUI.h" #include @@ -14,6 +15,7 @@ int main(int argc, char ** argv) { LTHEME::LoadCustomEnvSettings(); + qsrand(QDateTime::currentMSecsSinceEpoch()); LSingleApplication a(argc, argv, "lumina-fm"); //loads translations inside constructor if( !a.isPrimaryProcess()){ return 0; } qDebug() << "Loaded QApplication"; -- cgit From 5a7b6a693fa273aa9244ecaa24332ff67f196a38 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 14 Nov 2017 16:17:38 -0500 Subject: Enable the auto-archive functionality in lumina-fm. --- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 17 ++++++++++------- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h | 6 +++--- 2 files changed, 13 insertions(+), 10 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 5c6f9ef5..6e69adda 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -23,6 +23,7 @@ #include #include #include +#include #include "../ScrollDialog.h" @@ -245,7 +246,7 @@ void DirWidget::createShortcuts(){ kPaste= new QShortcut(QKeySequence(QKeySequence::Paste),this); kRename= new QShortcut(QKeySequence(Qt::Key_F2),this); kExtract= new QShortcut(QKeySequence(Qt::CTRL+Qt::Key_E), this); - //kArchive= new QShortcut(QKeySequence(Qt::CTRL+Qt::Key_R), this); + kArchive= new QShortcut(QKeySequence(Qt::CTRL+Qt::Key_R), this); kFav= new QShortcut(QKeySequence(Qt::Key_F3),this); kDel= new QShortcut(QKeySequence(QKeySequence::Delete),this); kOpSS= new QShortcut(QKeySequence(Qt::Key_F6),this); @@ -560,7 +561,7 @@ void DirWidget::UpdateContextMenu(){ contextMenu->addAction(LXDG::findIcon("edit-cut",""), tr("Cut Selection"), this, SLOT(cutFiles()), kCut->key() )->setEnabled(canmodify); contextMenu->addAction(LXDG::findIcon("edit-copy",""), tr("Copy Selection"), this, SLOT(copyFiles()), kCopy->key() )->setEnabled(canmodify); if(LUtils::isValidBinary("lumina-archiver") && sel.length() ==1){ contextMenu->addAction(LXDG::findIcon("archive",""), tr("Auto-Extract"), this, SLOT(autoExtractFiles()), kExtract->key() )->setEnabled(canmodify); } - //if(LUtils::isValidBinary("lumina-archiver") && sel.length() ==1){ contextMenu->addAction(LXDG::findIcon("archive",""), tr("Auto-Archive"), this, SLOT(autoArchiveFiles()), kArchive->key() )->setEnabled(canmodify); } + if(LUtils::isValidBinary("lumina-archiver") && sel.length() >=1){ contextMenu->addAction(LXDG::findIcon("archive",""), tr("Auto-Archive"), this, SLOT(autoArchiveFiles()), kArchive->key() )->setEnabled(canmodify); } } if( QApplication::clipboard()->mimeData()->hasFormat("x-special/lumina-copied-files") ){ @@ -864,13 +865,15 @@ void DirWidget::autoExtractFiles(){ ExternalProcess::launch("lumina-archiver", QStringList() << "--ax" << files); } -/* - * void DirWidget::autoArchiveFiles(){ + +void DirWidget::autoArchiveFiles(){ QStringList files = currentBrowser()->currentSelection(); - qDebug() << "Starting auto-archival:" << files; - ExternalProcess::launch("lumina-archiver", QStringList() << "--aa" << files); + QString archive = QFileDialog::getSaveFileName(this, tr("Select Archive"), currentBrowser()->currentDirectory()+"/archive-"+QDateTime::currentDateTime().toString("yyyyMMdd_hhmm")+".tar.gz", currentBrowser()->currentDirectory()); + if(archive.isEmpty()){ return; } //cancelled + qDebug() << "Starting auto-archival:" << archive << files; + ExternalProcess::launch("lumina-archiver", QStringList() << "--aa" << archive << files); } -*/ + //==================== // PROTECTED diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h index 4377f92d..a8e535d0 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h @@ -87,7 +87,7 @@ private: //The keyboard shortcuts for context menu items QShortcut *kZoomIn, *kZoomOut, *kNewFile, *kNewDir, *kNewXDG, *kCut, *kCopy, *kPaste, *kRename, \ - *kFav, *kDel, *kOpSS, *kOpMM, *kOpTerm, *kExtract; //, *kArchive; + *kFav, *kDel, *kOpSS, *kOpMM, *kOpTerm, *kExtract, *kArchive; //Functions for internal use void createShortcuts(); //on init only @@ -129,7 +129,7 @@ private slots: void fileCheckSums(); void fileProperties(); void openTerminal(); - void openRootFM(); + void openRootFM(); //Browser Functions @@ -158,7 +158,7 @@ private slots: void runWithFiles(); //void attachToNewEmail(); void autoExtractFiles(); - //void autoArchiveFiles(); + void autoArchiveFiles(); // - Context-specific operations void openInSlideshow(); -- cgit From 74aee7244060e588031735eabae05c47efde48aa Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 15 Nov 2017 08:30:47 -0500 Subject: Split the LFileInfo class into it's own files. --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 1 + src-qt5/desktop-utils/lumina-fm/Browser.h | 9 +-------- src-qt5/desktop-utils/lumina-fm/BrowserWidget.h | 1 + src-qt5/desktop-utils/lumina-fm/DirData.h | 1 + src-qt5/desktop-utils/lumina-fm/MainUI.h | 1 + 5 files changed, 5 insertions(+), 8 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index d7b17207..3990f643 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -17,6 +17,7 @@ #include #include #include +#include #include #include diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.h b/src-qt5/desktop-utils/lumina-fm/Browser.h index 0f4a0abe..db2bbcb4 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.h +++ b/src-qt5/desktop-utils/lumina-fm/Browser.h @@ -19,14 +19,7 @@ #include #include #include -/*class FileItem{ -public: - QString name; - QByteArray icon; - - FileItem(){} - ~FileItem(){}; -};*/ +#include class Browser : public QObject{ Q_OBJECT diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h index b17ad588..b88d8d2e 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h @@ -13,6 +13,7 @@ #include #include +#include #include "Browser.h" #include "widgets/DDListWidgets.h" diff --git a/src-qt5/desktop-utils/lumina-fm/DirData.h b/src-qt5/desktop-utils/lumina-fm/DirData.h index 528a82d6..3ef65299 100644 --- a/src-qt5/desktop-utils/lumina-fm/DirData.h +++ b/src-qt5/desktop-utils/lumina-fm/DirData.h @@ -17,6 +17,7 @@ #include #include +#include #define ZSNAPDIR QString("/.zfs/snapshot/") diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.h b/src-qt5/desktop-utils/lumina-fm/MainUI.h index 04b80f28..b17ec690 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.h @@ -47,6 +47,7 @@ // libLumina includes #include #include +#include // Local includes //#include "FODialog.h" //file operation dialog -- cgit From c6a6230889e629535ec48e02b64feb0dbea31782 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 15 Nov 2017 09:14:18 -0500 Subject: Expose the "directory" saving option within lumina-config for wallpapers now. --- src-qt5/desktop-utils/lumina-fm/Browser.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.h b/src-qt5/desktop-utils/lumina-fm/Browser.h index db2bbcb4..0ad27fdb 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.h +++ b/src-qt5/desktop-utils/lumina-fm/Browser.h @@ -34,8 +34,6 @@ public: void showThumbnails(bool); bool showingThumbnails(); - //FileItem loadItem(QString info); //this is the main loader class - multiple instances each run in a separate thread - private: QString currentDir; QDateTime lastcheck; -- cgit From fedae78e9b525bf1122170c1d009b8f79a45804c Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 15 Nov 2017 09:26:49 -0500 Subject: Finish cleaning up the new LFileInfo class/file. --- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 3 ++- src-qt5/desktop-utils/lumina-fm/MainUI.cpp | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index 29cc5a99..a3a8f7ee 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -102,7 +102,7 @@ void Browser::futureFinished(QString name, QImage icon){ //Note: this will be called once for every item that loads //Haven't added the extra files in a directory fix, but that should be easy to do //Try to load a file with multiple videos and lots of other stuff before any other directory. It crashes for some reason - //qDebug() << name << "here"; + //qDebug() << "Finished:" << name; QIcon *ico = new QIcon(); LFileInfo *info = new LFileInfo(name); if(!icon.isNull() && showThumbs){ @@ -153,6 +153,7 @@ void Browser::loadDirectory(QString dir, bool force){ if(showHidden){ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoDotAndDotDot, QDir::NoSort); } else{ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot, QDir::NoSort); } if(dirupdate){ emit itemsLoading(files.length()); } + //qDebug() << "Files Found:" << files.length(); for(int i=0; iaddPath(directory.absoluteFilePath(files[i])); QString path = directory.absoluteFilePath(files[i]); diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp index 9ce7b69e..28bfa20b 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp @@ -8,13 +8,14 @@ #include "ui_MainUI.h" #include -#include + #include "gitCompat.h" #include "gitWizard.h" #include #include #include +#include #define DEBUG 0 bool rootmode = false; @@ -184,6 +185,7 @@ void MainUI::OpenDirs(QStringList dirs){ }*/ //Initialize the widget with the proper settings + if(DEBUG){ qDebug() << "Setup Dir Widget"; } DW->setShowDetails(radio_view_details->isChecked()); DW->setThumbnailSize(settings->value("iconsize", 32).toInt()); DW->showHidden( ui->actionView_Hidden_Files->isChecked() ); @@ -191,6 +193,7 @@ void MainUI::OpenDirs(QStringList dirs){ //DW->showDirTreePane( ui->actionView_showDirTreePane->isChecked() ); DW->adjustTreeWidget( settings->value("dirTree_width", 25.0).toFloat() ); //Now load the directory + if(DEBUG){ qDebug() << "Load Directory"; } DW->ChangeDir(dirs[i]); //kick off loading the directory info } //Update visibilities -- cgit From 55d00fe0de302191307fde6af8e1b291bf6c91a8 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 15 Nov 2017 10:28:13 -0500 Subject: Ensure that the Browser backend is also contained in a background thread. This prevents it from delaying the UI from updating. --- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 20 +++++++++++++------- src-qt5/desktop-utils/lumina-fm/BrowserWidget.h | 2 +- .../desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 16 +++++++++++----- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h | 1 + 4 files changed, 26 insertions(+), 13 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index 4d8ae44c..978992c1 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -19,9 +19,11 @@ BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ //Setup the Widget/UI this->setLayout( new QVBoxLayout(this) ); ID = objID; - //BROWSER = 0; //Setup the backend browser object - BROWSER = new Browser(this); + bThread = new QThread(); + BROWSER = new Browser(); + BROWSER->moveToThread(bThread); + bThread->start(); connect(BROWSER, SIGNAL(clearItems()), this, SLOT(clearItems()) ); connect(BROWSER, SIGNAL(itemRemoved(QString)), this, SLOT(itemRemoved(QString)) ); connect(BROWSER, SIGNAL(itemDataAvailable(QIcon, LFileInfo*)), this, SLOT(itemDataAvailable(QIcon, LFileInfo*)) ); @@ -37,14 +39,18 @@ BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ BrowserWidget::~BrowserWidget(){ BROWSER->deleteLater(); + bThread->exit(); + bThread->deleteLater(); } void BrowserWidget::changeDirectory(QString dir){ - QStringList vids = videoMap.keys(); - for(int i=0; ideleteLater(); } - //videoMap.clear(); + if(USE_VIDEO_LABEL){ + QStringList vids = videoMap.keys(); + for(int i=0; ideleteLater(); } + //videoMap.clear(); + } if(BROWSER->currentDirectory()==dir){ return; } //already on this directory - //qDebug() << "Change Directory:" << dir << historyList; + qDebug() << "Change Directory:" << dir << historyList; if( !dir.contains("/.zfs/snapshot/") ){ if(historyList.isEmpty() || !dir.isEmpty()){ historyList << dir; } @@ -281,7 +287,7 @@ void BrowserWidget::clearItems(){ if(listWidget!=0){ listWidget->clear(); } else if(treeWidget!=0){ treeWidget->clear(); } freshload = true; - videoMap.clear(); + //videoMap.clear(); } void BrowserWidget::itemRemoved(QString item){ diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h index b88d8d2e..38e7b10c 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h @@ -22,7 +22,7 @@ class BrowserWidget : public QWidget{ Q_OBJECT private: Browser *BROWSER; - //QThread *bThread; //browserThread + QThread *bThread; //browserThread int numItems; //used for checking if all the items have loaded yet QString ID, statustip; QStringList date_format, historyList; diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 6e69adda..ccae4087 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -63,7 +63,7 @@ DirWidget::DirWidget(QString objID, QSettings *settings, QWidget *parent) : QWid RCBW = 0; //right column browser is unavailable initially BW = new BrowserWidget("", this); ui->browser_layout->addWidget(BW); - connect(BW, SIGNAL(dirChange(QString, bool)), this, SLOT(currentDirectoryChanged()) ); + connect(BW, SIGNAL(dirChange(QString, bool)), this, SLOT(currentDirectoryChanged(QString)) ); connect(BW, SIGNAL(itemsActivated()), this, SLOT(runFiles()) ); connect(BW, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(PasteFiles(QString, QStringList)) ); connect(BW, SIGNAL(contextMenuRequested()), this, SLOT(OpenContextMenu()) ); @@ -478,7 +478,7 @@ void DirWidget::on_actionDualColumn_triggered(bool checked){ if(RCBW!=0){ return; } //nothing to do RCBW = new BrowserWidget("rc", this); ui->browser_layout->addWidget(RCBW); - connect(RCBW, SIGNAL(dirChange(QString, bool)), this, SLOT(currentDirectoryChanged()) ); + connect(RCBW, SIGNAL(dirChange(QString, bool)), this, SLOT(currentDirectoryChanged(QString)) ); connect(RCBW, SIGNAL(itemsActivated()), this, SLOT(runFiles()) ); connect(RCBW, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(PasteFiles(QString, QStringList)) ); connect(RCBW, SIGNAL(contextMenuRequested()), this, SLOT(OpenContextMenu()) ); @@ -627,8 +627,8 @@ void DirWidget::UpdateContextMenu(){ cOpenWithMenu->addAction(LXDG::findIcon("system-run-with",""), tr("Other..."), this, SLOT(runWithFiles()) ); } -void DirWidget::currentDirectoryChanged(bool widgetonly){ - QString cur = currentBrowser()->currentDirectory(); +void DirWidget::currentDirectoryChanged(QString cur, bool widgetonly){ + qDebug() << "Got current directory changed:" << cur << widgetonly; QFileInfo info(cur); canmodify = info.isWritable(); if(widgetonly){ ui->label_status->setText(currentBrowser()->status()); } @@ -650,7 +650,13 @@ void DirWidget::currentDirectoryChanged(bool widgetonly){ emit TabNameChanged(ID, normalbasedir.section("/",-1)); QModelIndex index = dirtreeModel->index(normalbasedir,0); ui->folderViewPane->setCurrentIndex( index ); - ui->folderViewPane->scrollTo(index); + ui->folderViewPane->scrollTo(index, QAbstractItemView::PositionAtCenter); +} + +void DirWidget::currentDirectoryChanged(bool widgetonly){ + //overload for the more expansive slot above + QString cur = currentBrowser()->currentDirectory(); + currentDirectoryChanged(cur, widgetonly); } void DirWidget::dirStatusChanged(QString stat){ diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h index a8e535d0..5c39d262 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h @@ -135,6 +135,7 @@ private slots: //Browser Functions void OpenContextMenu(); void UpdateContextMenu(); + void currentDirectoryChanged(QString dir, bool widgetonly = false); void currentDirectoryChanged(bool widgetonly = false); void dirStatusChanged(QString); void setCurrentBrowser(QString); -- cgit From cb79fcd0df549da383b989fa5212fefc75d87482 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 15 Nov 2017 11:07:40 -0500 Subject: A bit more background threading magic. Make lumina-fm show dir contents a *lot* faster now. --- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 2 +- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 98 +++++++++++----------- src-qt5/desktop-utils/lumina-fm/BrowserWidget.h | 1 + .../desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 2 +- 4 files changed, 54 insertions(+), 49 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index a3a8f7ee..50099a51 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -152,7 +152,7 @@ void Browser::loadDirectory(QString dir, bool force){ QStringList files; if(showHidden){ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoDotAndDotDot, QDir::NoSort); } else{ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot, QDir::NoSort); } - if(dirupdate){ emit itemsLoading(files.length()); } + if(dirupdate || old.isEmpty()){ emit itemsLoading(files.length()); } //qDebug() << "Files Found:" << files.length(); for(int i=0; iaddPath(directory.absoluteFilePath(files[i])); diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index 978992c1..c4b1c8d8 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -9,6 +9,7 @@ #include #include #include +#include #include #include @@ -310,42 +311,39 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ int num = 0; if(listWidget!=0){ //LIST WIDGET - name and icon only + QListWidgetItem *it = 0; + //Find the existing item for this if(info->isDesktopFile() && info->XDG()->isValid()){ QList items = listWidget->findItems(info->XDG()->name, Qt::MatchExactly); //Could be multiple items with the same text in this case - check paths as well - bool found = false; - for(int i=0; iwhatsThis()==info->absoluteFilePath()){ - found = true; - items[i]->setText(info->XDG()->name); - items[i]->setIcon(ico); - } - } - if(!found){ - //New Item - QListWidgetItem *it = new CQListWidgetItem(ico, info->XDG()->name, listWidget); - it->setWhatsThis(info->absoluteFilePath()); - it->setData(Qt::UserRole, (info->isDir() ? "dir" : "file")); //used for sorting - listWidget->addItem(it); + for(int i=0; iwhatsThis()==info->absoluteFilePath()){ it = items[i]; } } }else{ //non-desktop entry - if(!listWidget->findItems(info->fileName(), Qt::MatchExactly).isEmpty()){ - //Update existing item - QListWidgetItem *it = listWidget->findItems(info->fileName(), Qt::MatchExactly).first(); - it->setText(info->fileName()); - it->setWhatsThis(info->absoluteFilePath()); - it->setIcon(ico); - - }else{ - //New item - QListWidgetItem *it = new CQListWidgetItem(ico, info->fileName(), listWidget); + QList items = listWidget->findItems(info->fileName(), Qt::MatchExactly); + //Could be multiple items with the same text in this case - check paths as well + for(int i=0; iwhatsThis()==info->absoluteFilePath()){ it = items[i]; } + } + } + //No existing item - make a new one + if(it==0){ + it = new CQListWidgetItem(ico, info->fileName(), listWidget); it->setWhatsThis(info->absoluteFilePath()); it->setData(Qt::UserRole, (info->isDir() ? "dir" : "file")); //used for sorting listWidget->addItem(it); - } - num = listWidget->count(); - } //end non-desktop entry + } + num = listWidget->count(); + //Now update the information for the item + if(info->isDesktopFile() && info->XDG()->isValid()){ + it->setText(info->XDG()->name); + it->setIcon(ico); + }else{ + it->setIcon(ico); + it->setText(info->fileName()); + } + }else if(treeWidget!=0){ QTreeWidgetItem *it = 0; if(info->isDesktopFile()){ @@ -392,11 +390,11 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ it->setWhatsThis(4, info->created().toString("yyyyMMddhhmmsszzz") ); //sorts by this actually num = treeWidget->topLevelItemCount(); } - if(num < numItems){ //Still loading items - //this->setEnabled(false); + this->setEnabled(false); }else{ + //qDebug() << "Got Items Loaded:" << num << numItems; if(freshload && treeWidget!=0){ //qDebug() << "Resize Tree Widget Contents"; //for(int i=treeWidget->columnCount()-1; i>0; i--){ treeWidget->resizeColumnToContents(i); } @@ -404,8 +402,30 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ //treeWidget->resizeColumnToContents(0); } freshload = false; //any further changes are updates - not a fresh load of a dir + QtConcurrent::run(this, &BrowserWidget::loadStatistics, this); + //QTimer::singleShot(0, this, SLOT(loadStatistics())); //Done loading items - //this->setEnabled(true); + this->setEnabled(true); + + }//end check for finished loading items +} + +void BrowserWidget::itemsLoading(int total){ + //qDebug() << "Got number of items loading:" << total; + if(listWidget!=0){ listWidget->setWhatsThis( BROWSER->currentDirectory() ); } + if(treeWidget!=0){ treeWidget->setWhatsThis(BROWSER->currentDirectory() ); } + numItems = total; //save this for later + if(total<1){ + emit updateDirectoryStatus( tr("No Directory Contents") ); + this->setEnabled(true); + } +} + +void BrowserWidget::selectionChanged(){ + emit hasFocus(ID); //let the parent know the widget is "active" with the user +} + +void BrowserWidget::loadStatistics(BrowserWidget* bw){ //Assemble any status message QString stats = QString(tr("Capacity: %1")).arg(LOS::FileSystemCapacity(BROWSER->currentDirectory())); int nF, nD; @@ -443,24 +463,8 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ stats.prepend( QString(tr("Dirs: %1")).arg(QString::number(nD)) ); } } - emit updateDirectoryStatus( stats.simplified() ); + bw->emit updateDirectoryStatus( stats.simplified() ); statustip = stats.simplified(); //save for later - }//end check for finished loading items -} - -void BrowserWidget::itemsLoading(int total){ - //qDebug() << "Got number of items loading:" << total; - if(listWidget!=0){ listWidget->setWhatsThis( BROWSER->currentDirectory() ); } - if(treeWidget!=0){ treeWidget->setWhatsThis(BROWSER->currentDirectory() ); } - numItems = total; //save this for later - if(total<1){ - emit updateDirectoryStatus( tr("No Directory Contents") ); - this->setEnabled(true); - } -} - -void BrowserWidget::selectionChanged(){ - emit hasFocus(ID); //let the parent know the widget is "active" with the user } void BrowserWidget::resizeEvent(QResizeEvent *ev){ diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h index 38e7b10c..2f8c3ed7 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h @@ -79,6 +79,7 @@ private slots: void itemDataAvailable(QIcon, LFileInfo*); void itemsLoading(int total); void selectionChanged(); + void loadStatistics(BrowserWidget *bw); //designed to be run in a background thread protected: void resizeEvent(QResizeEvent *ev); diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index ccae4087..6f384cfa 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -628,7 +628,7 @@ void DirWidget::UpdateContextMenu(){ } void DirWidget::currentDirectoryChanged(QString cur, bool widgetonly){ - qDebug() << "Got current directory changed:" << cur << widgetonly; + //qDebug() << "Got current directory changed:" << cur << widgetonly; QFileInfo info(cur); canmodify = info.isWritable(); if(widgetonly){ ui->label_status->setText(currentBrowser()->status()); } -- cgit From 8d54d01f09760c78d649baed0b88aa0f80069de7 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 15 Nov 2017 14:38:01 -0500 Subject: Add a bunch of ZFS information routines to LFileInfo. Also utilize this ZFS info in lumina-fileinfo (if appropriate) --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp | 50 +++++++++++++++ src-qt5/desktop-utils/lumina-fileinfo/MainUI.h | 3 +- src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui | 75 +++++++++++++++++++++++ src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 2 +- 4 files changed, 128 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp index e64346ae..c99a781e 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp @@ -191,6 +191,52 @@ void MainUI::SyncFileInfo(){ ui->tabWidget->addTab( ui->tab_deskedit, tr("XDG Shortcut") ); } ui->tabWidget->setCurrentIndex(ui->tabWidget->indexOf(ui->tab_file) ); + SyncZfsInfo(); +} + +void MainUI::SyncZfsInfo(){ + bool showtab = false; + if(INFO->zfsPool().isEmpty()){ + //Not on a ZFS pool - hide the tab if it is available + showtab = false; + }else{ + qDebug() << "Is a ZFS Dataset:" << INFO->isZfsDataset(); + ui->label_zfs_pool->setText(INFO->zfsPool()); + if(INFO->isZfsDataset()){ + ui->tree_zfs_props->clear(); + QJsonObject props = INFO->zfsProperties(); + QStringList keys = props.keys(); + for(int i=0; itree_zfs_props->addTopLevelItem( new QTreeWidgetItem(QStringList() << keys[i] << props.value(keys[i]).toObject().value("value").toString() << props.value(keys[i]).toObject().value("source").toString() ) ); + ui->tree_zfs_props->resizeColumnToContents(0); + ui->tree_zfs_props->resizeColumnToContents(1); + } + ui->tree_zfs_props->setVisible(!keys.isEmpty()); + showtab = !keys.isEmpty(); + }else{ + ui->tree_zfs_props->setVisible(false); + } + QStringList snaps = INFO->zfsSnapshots(); + ui->tree_zfs_snaps->clear(); + for(int i=0; itree_zfs_snaps->addTopLevelItem( new QTreeWidgetItem(QStringList() << snaps[i].section("::::",0,0) << finfo.created().toString(Qt::SystemLocaleShortDate) << finfo.lastModified().toString(Qt::SystemLocaleShortDate) ) ); + ui->tree_zfs_snaps->resizeColumnToContents(0); + } + ui->tree_zfs_snaps->setVisible(!snaps.isEmpty()); + showtab = showtab || !snaps.isEmpty(); + } + if(showtab){ + //Make sure the tab is visible + if(ui->tabWidget->indexOf(ui->tab_zfs)<0){ + ui->tabWidget->addTab( ui->tab_zfs, tr("Advanced") ); + } + }else{ + //hide the tab if it is visible right now + if(ui->tabWidget->indexOf(ui->tab_zfs)>=0){ + ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_zfs) ); + } + } } void MainUI::SetupNewFile(){ @@ -209,6 +255,10 @@ void MainUI::SetupNewFile(){ //qDebug() << "Adding the deskedit tab"; ui->tabWidget->addTab(ui->tab_deskedit, tr("XDG Shortcut")); } + //Not on a ZFS pool - hide the tab if it is available + if(ui->tabWidget->indexOf(ui->tab_zfs)>=0){ + ui->tabWidget->removeTab( ui->tabWidget->indexOf(ui->tab_zfs) ); + } ui->tabWidget->setCurrentIndex(ui->tabWidget->indexOf(ui->tab_deskedit) ); } diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h index 3990f643..4e756a97 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.h @@ -55,7 +55,7 @@ private: void GetDirSize(const QString dirname) const; //function to get folder size void SyncFileInfo(); - + void SyncZfsInfo(); void syncXdgStruct(XDGDesktop*); bool saveFile(QString path); @@ -66,6 +66,7 @@ signals: private slots: void SetupNewFile(); + //Initialization functions void SetupConnections(); diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui index 217c1a10..5139bbf7 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui @@ -216,6 +216,81 @@ + + + Advanced + + + + + + + + + 75 + true + + + + ZFS Pool: + + + + + + + [pool] + + + + + + + + + true + + + + Property + + + + + Value + + + + + Source + + + + + + + + true + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + + XDG Shortcut diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index c4b1c8d8..5a08b797 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -51,7 +51,7 @@ void BrowserWidget::changeDirectory(QString dir){ //videoMap.clear(); } if(BROWSER->currentDirectory()==dir){ return; } //already on this directory - qDebug() << "Change Directory:" << dir << historyList; + //qDebug() << "Change Directory:" << dir << historyList; if( !dir.contains("/.zfs/snapshot/") ){ if(historyList.isEmpty() || !dir.isEmpty()){ historyList << dir; } -- cgit From 5312b9161aa82ec8139c73b5f7dddd269120f15d Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 17 Nov 2017 07:28:08 -0500 Subject: Fix up the visibility of the archive options in lumina-fm. Also fix the OpenWith launching of applications. --- src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 2 +- .../desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 22 ++++++++++++++++++---- .../desktop-utils/lumina-fm/widgets/DirWidget2.h | 2 +- 3 files changed, 20 insertions(+), 6 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index e27dad25..349f84c5 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -15,7 +15,7 @@ include(../../core/libLumina/LuminaXDG.pri) include(../../core/libLumina/LuminaSingleApplication.pri) include(../../core/libLumina/LuminaThemes.pri) include(../../core/libLumina/ExternalProcess.pri) -#include(../../core/libLumina/LVideoSurface.pri) +include(../../core/libLumina/XDGMime.pri) include(../../core/libLumina/LVideoLabel.pri) SOURCES += main.cpp \ diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 6f384cfa..66c4c237 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -26,6 +26,7 @@ #include #include "../ScrollDialog.h" +#include #define DEBUG 0 extern bool rootmode; @@ -86,7 +87,7 @@ DirWidget::DirWidget(QString objID, QSettings *settings, QWidget *parent) : QWid //Now update the rest of the UI canmodify = false; //initial value contextMenu = new QMenu(this); - cNewMenu = cOpenMenu = cFModMenu = cFViewMenu = cOpenWithMenu = 0; //not created yet + cNewMenu = cOpenMenu = cFModMenu = cFViewMenu = cOpenWithMenu = cArchiveMenu =0; //not created yet connect(contextMenu, SIGNAL(aboutToShow()), this, SLOT(UpdateContextMenu()) ); connect(ui->splitter, SIGNAL(splitterMoved(int,int)), this, SLOT(splitterMoved()) ); @@ -289,6 +290,11 @@ void DirWidget::createMenus(){ cOpenMenu->addAction(LXDG::findIcon("media-slideshow",""), tr("SlideShow"), this, SLOT(openInSlideshow()), kOpSS->key()); cOpenMenu->addAction(LXDG::findIcon("media-playback-start-circled","media-playback-start"), tr("Multimedia Player"), this, SLOT(openMultimedia()), kOpMM->key()); if(LUtils::isValidBinary("qsudo")){ cOpenMenu->addAction(LXDG::findIcon("", ""), tr("Open Current Dir as Root"), this, SLOT(openRootFM())); + + if(cArchiveMenu==0){ cArchiveMenu = new QMenu(this); } + cArchiveMenu->setTitle(tr("Archive Options")); + cArchiveMenu->setIcon( LXDG::findIcon("utilities-file-archiver","application-x-compressed-tar") ); + /* if(cFModMenu==0){ cFModMenu = new QMenu(this); } else{ cFModMenu->clear(); } @@ -560,9 +566,6 @@ void DirWidget::UpdateContextMenu(){ contextMenu->addAction(LXDG::findIcon("edit-rename",""), tr("Rename..."), this, SLOT(renameFiles()), kRename->key() )->setEnabled(canmodify); contextMenu->addAction(LXDG::findIcon("edit-cut",""), tr("Cut Selection"), this, SLOT(cutFiles()), kCut->key() )->setEnabled(canmodify); contextMenu->addAction(LXDG::findIcon("edit-copy",""), tr("Copy Selection"), this, SLOT(copyFiles()), kCopy->key() )->setEnabled(canmodify); - if(LUtils::isValidBinary("lumina-archiver") && sel.length() ==1){ contextMenu->addAction(LXDG::findIcon("archive",""), tr("Auto-Extract"), this, SLOT(autoExtractFiles()), kExtract->key() )->setEnabled(canmodify); } - if(LUtils::isValidBinary("lumina-archiver") && sel.length() >=1){ contextMenu->addAction(LXDG::findIcon("archive",""), tr("Auto-Archive"), this, SLOT(autoArchiveFiles()), kArchive->key() )->setEnabled(canmodify); } - } if( QApplication::clipboard()->mimeData()->hasFormat("x-special/lumina-copied-files") ){ contextMenu->addAction(LXDG::findIcon("edit-paste",""), tr("Paste"), this, SLOT(pasteFiles()), QKeySequence(Qt::CTRL+Qt::Key_V) )->setEnabled(canmodify); @@ -572,6 +575,15 @@ void DirWidget::UpdateContextMenu(){ contextMenu->addAction(LXDG::findIcon("edit-delete",""), tr("Delete Selection"), this, SLOT(removeFiles()), kDel->key() )->setEnabled(canmodify); contextMenu->addSeparator(); } + if(LUtils::isValidBinary("lumina-archiver") && sel.length() >=1 && canmodify){ + cArchiveMenu->clear(); + if(sel.length()==1 && XDGMime::fromFileName(sel[0]).endsWith("-tar") ){ + cArchiveMenu->addAction(LXDG::findIcon("archive",""), tr("Extract Here"), this, SLOT(autoExtractFiles()), kExtract->key() ); + }else{ + cArchiveMenu->addAction(LXDG::findIcon("archive",""), tr("Archive Selection"), this, SLOT(autoArchiveFiles()), kArchive->key() ); + } + contextMenu->addMenu(cArchiveMenu); + } contextMenu->addMenu(cFViewMenu); cFViewMenu->setEnabled(!sel.isEmpty()); @@ -862,6 +874,8 @@ void DirWidget::OpenWithApp(QAction* act){ //Now we need to open the app file, and create the process XDGDesktop desk(act->whatsThis()); QString exec = desk.generateExec(sel); + //qDebug() << "Launch App with selection:" << act->whatsThis() << sel; + //qDebug() << "Generating exec:" << exec; ExternalProcess::launch(exec); } diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h index 5c39d262..a99c64c7 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h @@ -83,7 +83,7 @@ private: QLineEdit *line_dir; //The context menu and associated items - QMenu *contextMenu, *cNewMenu, *cOpenMenu, *cFModMenu, *cFViewMenu, *cOpenWithMenu; + QMenu *contextMenu, *cNewMenu, *cOpenMenu, *cFModMenu, *cFViewMenu, *cOpenWithMenu, *cArchiveMenu; //The keyboard shortcuts for context menu items QShortcut *kZoomIn, *kZoomOut, *kNewFile, *kNewDir, *kNewXDG, *kCut, *kCopy, *kPaste, *kRename, \ -- cgit From 1f568882de3997b5567d6c5255c13f8cd909f74a Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 17 Nov 2017 11:30:06 -0500 Subject: re-implement zip/iso autoextraction in lumina-fm --- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 66c4c237..b778b49c 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -577,7 +577,14 @@ void DirWidget::UpdateContextMenu(){ } if(LUtils::isValidBinary("lumina-archiver") && sel.length() >=1 && canmodify){ cArchiveMenu->clear(); - if(sel.length()==1 && XDGMime::fromFileName(sel[0]).endsWith("-tar") ){ + if(sel.length()==1 && ( XDGMime::fromFileName(sel[0]).endsWith("-tar") || + XDGMime::fromFileName(sel[0]).endsWith("-image") || + ( XDGMime::fromFileName(sel[0]).contains("zip") && + !XDGMime::fromFileName(sel[0]).endsWith("epub+zip") && + !XDGMime::fromFileName(sel[0]).endsWith("vnd.comicbook+zip" ) + ) + ) + ){ cArchiveMenu->addAction(LXDG::findIcon("archive",""), tr("Extract Here"), this, SLOT(autoExtractFiles()), kExtract->key() ); }else{ cArchiveMenu->addAction(LXDG::findIcon("archive",""), tr("Archive Selection"), this, SLOT(autoArchiveFiles()), kArchive->key() ); -- cgit From 7fd0fb0a3eb24d6da6dc69901a2de45642be58d5 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 06:43:27 -0500 Subject: Resync translation files with latest sources. --- .../lumina-archiver/i18n/l-archiver_af.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ar.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_az.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_bg.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_bn.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_bs.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ca.ts | 198 +++++------ .../lumina-archiver/i18n/l-archiver_cs.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_cy.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_da.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_de.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_el.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_en_AU.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_en_GB.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_en_ZA.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_es.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_et.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_eu.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_fa.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_fi.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_fr.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_fr_CA.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_gl.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_he.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_hi.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_hr.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_hu.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_id.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_is.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_it.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ja.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ka.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ko.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_lt.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_lv.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_mk.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_mn.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ms.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_mt.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_nb.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_nl.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_pa.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_pl.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_pt.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_pt_BR.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ro.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ru.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_sk.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_sl.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_sr.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_sv.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_sw.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_ta.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_tg.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_th.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_tr.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_uk.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_uz.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_vi.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_zh_CN.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_zh_HK.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_zh_TW.ts | 158 ++++----- .../lumina-archiver/i18n/l-archiver_zu.ts | 158 ++++----- .../lumina-calculator/i18n/l-calc_af.ts | 26 +- .../lumina-calculator/i18n/l-calc_ar.ts | 26 +- .../lumina-calculator/i18n/l-calc_az.ts | 26 +- .../lumina-calculator/i18n/l-calc_bg.ts | 26 +- .../lumina-calculator/i18n/l-calc_bn.ts | 26 +- .../lumina-calculator/i18n/l-calc_bs.ts | 26 +- .../lumina-calculator/i18n/l-calc_ca.ts | 28 +- .../lumina-calculator/i18n/l-calc_cs.ts | 26 +- .../lumina-calculator/i18n/l-calc_cy.ts | 26 +- .../lumina-calculator/i18n/l-calc_da.ts | 26 +- .../lumina-calculator/i18n/l-calc_de.ts | 26 +- .../lumina-calculator/i18n/l-calc_el.ts | 26 +- .../lumina-calculator/i18n/l-calc_en_AU.ts | 26 +- .../lumina-calculator/i18n/l-calc_en_GB.ts | 26 +- .../lumina-calculator/i18n/l-calc_en_ZA.ts | 26 +- .../lumina-calculator/i18n/l-calc_es.ts | 26 +- .../lumina-calculator/i18n/l-calc_et.ts | 26 +- .../lumina-calculator/i18n/l-calc_eu.ts | 26 +- .../lumina-calculator/i18n/l-calc_fa.ts | 26 +- .../lumina-calculator/i18n/l-calc_fi.ts | 26 +- .../lumina-calculator/i18n/l-calc_fr.ts | 26 +- .../lumina-calculator/i18n/l-calc_fr_CA.ts | 26 +- .../lumina-calculator/i18n/l-calc_gl.ts | 26 +- .../lumina-calculator/i18n/l-calc_he.ts | 26 +- .../lumina-calculator/i18n/l-calc_hi.ts | 26 +- .../lumina-calculator/i18n/l-calc_hr.ts | 26 +- .../lumina-calculator/i18n/l-calc_hu.ts | 26 +- .../lumina-calculator/i18n/l-calc_id.ts | 26 +- .../lumina-calculator/i18n/l-calc_is.ts | 26 +- .../lumina-calculator/i18n/l-calc_it.ts | 26 +- .../lumina-calculator/i18n/l-calc_ja.ts | 26 +- .../lumina-calculator/i18n/l-calc_ka.ts | 26 +- .../lumina-calculator/i18n/l-calc_ko.ts | 26 +- .../lumina-calculator/i18n/l-calc_lt.ts | 26 +- .../lumina-calculator/i18n/l-calc_lv.ts | 26 +- .../lumina-calculator/i18n/l-calc_mk.ts | 26 +- .../lumina-calculator/i18n/l-calc_mn.ts | 26 +- .../lumina-calculator/i18n/l-calc_ms.ts | 26 +- .../lumina-calculator/i18n/l-calc_mt.ts | 26 +- .../lumina-calculator/i18n/l-calc_nb.ts | 26 +- .../lumina-calculator/i18n/l-calc_nl.ts | 26 +- .../lumina-calculator/i18n/l-calc_pa.ts | 26 +- .../lumina-calculator/i18n/l-calc_pl.ts | 26 +- .../lumina-calculator/i18n/l-calc_pt.ts | 26 +- .../lumina-calculator/i18n/l-calc_pt_BR.ts | 26 +- .../lumina-calculator/i18n/l-calc_ro.ts | 26 +- .../lumina-calculator/i18n/l-calc_ru.ts | 26 +- .../lumina-calculator/i18n/l-calc_sk.ts | 26 +- .../lumina-calculator/i18n/l-calc_sl.ts | 26 +- .../lumina-calculator/i18n/l-calc_sr.ts | 26 +- .../lumina-calculator/i18n/l-calc_sv.ts | 26 +- .../lumina-calculator/i18n/l-calc_sw.ts | 26 +- .../lumina-calculator/i18n/l-calc_ta.ts | 26 +- .../lumina-calculator/i18n/l-calc_tg.ts | 26 +- .../lumina-calculator/i18n/l-calc_th.ts | 26 +- .../lumina-calculator/i18n/l-calc_tr.ts | 26 +- .../lumina-calculator/i18n/l-calc_uk.ts | 26 +- .../lumina-calculator/i18n/l-calc_uz.ts | 26 +- .../lumina-calculator/i18n/l-calc_vi.ts | 26 +- .../lumina-calculator/i18n/l-calc_zh_CN.ts | 26 +- .../lumina-calculator/i18n/l-calc_zh_HK.ts | 26 +- .../lumina-calculator/i18n/l-calc_zh_TW.ts | 26 +- .../lumina-calculator/i18n/l-calc_zu.ts | 26 +- .../lumina-fileinfo/i18n/l-fileinfo_af.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_ar.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_az.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_bg.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_bn.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_bs.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_ca.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_cs.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_cy.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_da.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_de.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_el.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_en_AU.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_en_GB.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_en_ZA.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_es.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_et.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_eu.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_fa.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_fi.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_fr.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_fr_CA.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_gl.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_he.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_hi.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_hr.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_hu.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_id.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_is.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_it.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_ja.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_ka.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_ko.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_lt.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_lv.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_mk.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_mn.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_ms.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_mt.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_nb.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_nl.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_pa.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_pl.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_pt.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_ro.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_ru.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_sk.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_sl.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_sr.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_sv.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_sw.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_ta.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_tg.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_th.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_tr.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_uk.ts | 247 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_uz.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_vi.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts | 249 +++++++++----- .../lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts | 241 ++++++++++---- .../lumina-fileinfo/i18n/l-fileinfo_zu.ts | 241 ++++++++++---- .../lumina-fm-dev/i18n/lumina-fm_af.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ar.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_az.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_bg.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_bn.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_bs.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ca.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_cs.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_cy.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_da.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_de.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_el.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_en_AU.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_en_GB.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_en_ZA.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_es.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_et.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_eu.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_fa.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_fi.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_fr.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_fr_CA.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_gl.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_he.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_hi.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_hr.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_hu.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_id.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_is.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_it.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ja.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ka.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ko.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_lt.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_lv.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_mk.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_mn.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ms.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_mt.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_nb.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_nl.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_pa.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_pl.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_pt.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_pt_BR.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ro.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ru.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_sk.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_sl.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_sr.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_sv.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_sw.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_ta.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_tg.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_th.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_tr.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_uk.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_uz.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_vi.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_zh_CN.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_zh_HK.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_zh_TW.ts | 114 +++---- .../lumina-fm-dev/i18n/lumina-fm_zu.ts | 114 +++---- .../desktop-utils/lumina-fm/i18n/lumina-fm_af.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_az.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_de.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_el.ts | 362 ++++++++++---------- .../lumina-fm/i18n/lumina-fm_en_AU.ts | 362 ++++++++++---------- .../lumina-fm/i18n/lumina-fm_en_GB.ts | 362 ++++++++++---------- .../lumina-fm/i18n/lumina-fm_en_ZA.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_es.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_et.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts | 362 ++++++++++---------- .../lumina-fm/i18n/lumina-fm_fr_CA.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_he.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_id.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_is.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_it.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts | 362 ++++++++++---------- .../lumina-fm/i18n/lumina-fm_pt_BR.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts | 368 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_th.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts | 362 ++++++++++---------- .../lumina-fm/i18n/lumina-fm_zh_CN.ts | 368 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_zh_HK.ts | 362 ++++++++++---------- .../lumina-fm/i18n/lumina-fm_zh_TW.ts | 362 ++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts | 362 ++++++++++---------- .../lumina-mediaplayer/i18n/l-mediap_af.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ar.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_az.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_bg.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_bn.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_bs.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ca.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_cs.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_cy.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_da.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_de.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_el.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_en_AU.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_en_GB.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_en_ZA.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_es.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_et.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_eu.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_fa.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_fi.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_fr.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_fr_CA.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_gl.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_he.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_hi.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_hr.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_hu.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_id.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_is.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_it.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ja.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ka.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ko.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_lt.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_lv.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_mk.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_mn.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ms.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_mt.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_nb.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_nl.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_pa.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_pl.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_pt.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_pt_BR.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ro.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ru.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_sk.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_sl.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_sr.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_sv.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_sw.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_ta.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_tg.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_th.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_tr.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_uk.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_uz.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_vi.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_zh_CN.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_zh_HK.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_zh_TW.ts | 26 +- .../lumina-mediaplayer/i18n/l-mediap_zu.ts | 26 +- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts | 40 +-- .../desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts | 40 +-- .../desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts | 40 +-- .../desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts | 40 +-- .../desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts | 40 +-- .../desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts | 40 +-- .../desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts | 40 +-- .../desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts | 40 +-- .../desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts | 40 +-- src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts | 40 +-- .../lumina-screenshot/i18n/l-screenshot_af.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ar.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_az.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_bg.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_bn.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_bs.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ca.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_cs.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_cy.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_da.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_de.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_el.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_en_AU.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_en_GB.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_en_ZA.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_es.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_et.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_eu.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_fa.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_fi.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_fr.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_fr_CA.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_gl.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_he.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_hi.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_hr.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_hu.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_id.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_is.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_it.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ja.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ka.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ko.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_lt.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_lv.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_mk.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_mn.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ms.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_mt.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_nb.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_nl.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_pa.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_pl.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_pt.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_pt_BR.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ro.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ru.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_sk.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_sl.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_sr.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_sv.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_sw.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_ta.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_tg.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_th.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_tr.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_uk.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_uz.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_vi.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_zh_CN.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_zh_HK.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_zh_TW.ts | 26 +- .../lumina-screenshot/i18n/l-screenshot_zu.ts | 26 +- .../desktop-utils/lumina-textedit/i18n/l-te_af.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_ar.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_az.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_bg.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_bn.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_bs.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_ca.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_cs.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_cy.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_da.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_de.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_el.ts | 41 +-- .../lumina-textedit/i18n/l-te_en_AU.ts | 36 +- .../lumina-textedit/i18n/l-te_en_GB.ts | 36 +- .../lumina-textedit/i18n/l-te_en_ZA.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_es.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_et.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_eu.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_fa.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_fi.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_fr.ts | 41 +-- .../lumina-textedit/i18n/l-te_fr_CA.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_gl.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_he.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_hi.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_hr.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_hu.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_id.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_is.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_it.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_ja.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_ka.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_ko.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_lt.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_lv.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_mk.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_mn.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_ms.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_mt.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_nb.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_nl.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_pa.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_pl.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_pt.ts | 36 +- .../lumina-textedit/i18n/l-te_pt_BR.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_ro.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_ru.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_sk.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_sl.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_sr.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_sv.ts | 41 +-- .../desktop-utils/lumina-textedit/i18n/l-te_sw.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_ta.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_tg.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_th.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_tr.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_uk.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_uz.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_vi.ts | 36 +- .../lumina-textedit/i18n/l-te_zh_CN.ts | 41 +-- .../lumina-textedit/i18n/l-te_zh_HK.ts | 36 +- .../lumina-textedit/i18n/l-te_zh_TW.ts | 36 +- .../desktop-utils/lumina-textedit/i18n/l-te_zu.ts | 36 +- 570 files changed, 36844 insertions(+), 28510 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_af.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_af.ts index 22fcc278..594e1fbf 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_af.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_af.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ar.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ar.ts index 7534b87d..e0365529 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ar.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ar.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_az.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_az.ts index 4807cc77..f6901ce7 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_az.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_az.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bg.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bg.ts index 26106509..1c139adf 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bg.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bg.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bn.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bn.ts index 79429f1b..e952026e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bn.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bn.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bs.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bs.ts index cef32823..6ea25a0c 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bs.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bs.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts index 9e347a2a..acd55ab7 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - No s'ha pogut llegir l'arxiu + No s'ha pogut llegir l'arxiu - + Archive Loaded Arxiu carregat - + Extraction Finished Extracció acabada - + Modification Finished Modificació acabada @@ -33,8 +33,8 @@ - - + + File Fitxer @@ -81,7 +81,7 @@ Add files to archive - Afegiu fitxers a l'arxiu + Afegiu fitxers a l'arxiu @@ -91,7 +91,7 @@ Remove selection from archive - Elimina la selecció de l'arxiu + Elimina la selecció de l'arxiu @@ -101,7 +101,7 @@ Extract archive into a directory - Extreu l'arxiu en un directori + Extreu l'arxiu en un directori @@ -111,7 +111,7 @@ Add directory to archive - Afegeix un directori a l'arxiu + Afegeix un directori a l'arxiu @@ -131,216 +131,218 @@ Copy an IMG to a USB device (may require admin permission) - Copia una IMG en un dispositiu USB (pot caldre permís d'administrador) + Copia una IMG en un dispositiu USB (pot caldre permís d'administrador) - + Archive Manager - Gestor d'arxius + Gestor d'arxius - + Admin Mode - Mode d'administrador + Mode d'administrador - + CTRL+N CTRL+N - + CTRL+O CTRL+O - + CTRL+Q CTRL+Q - + CTRL+E CTRL+E - - + + MimeType Tipus MIME - - + + Size Mida - - + + Opening Archive... - S'obre l'arxiu... + S'obre l'arxiu... - + All Types %1 Tots els tipus %1 - - + + Uncompressed Archive (*.tar) Arxiu no comprimit (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) Arxiu comprimit GZip (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) Arxiu comprimit BZip (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) Arxiu comprimit BZip2 (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) Arxiu comprimit LMZA (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) Arxiu comprimit XZ (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) Arxiu CPIO (*.cpio) - - + + PAX Archive (*.pax) Arxiu PAX (*.pax) - - + + AR Archive (*.ar) Arxiu AR (*.ar) - - + + SHAR Archive (*.shar) Arxiu SHAR (*.shar) - - + + Zip Archive (*.zip) Arxiu Zip (*.zip) - - + + 7-Zip Archive (*.7z) Arxiu 7-Zip (*.7z) - + All Known Types %1 Tots els tipus coneguts %1 - + READ-ONLY: ISO image (*.iso *.img) NOMÉS DE LECTURA: imatge ISO (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) NOMÉS DE LECTURA: arxiu XAR (*.xar) - + READ-ONLY: Java archive (*.jar) NOMÉS DE LECTURA: arxiu Java (*.jar) - + READ-ONLY: RedHat Package (*.rpm) NOMÉS DE LECTURA: paquet de RedHat (*.rpm) - + Show All Files (*) Mostra tots els fitxers (*) - + Create Archive Crea un arxiu - + Error Error - + Could not overwrite file: - No s'ha pogut sobreescriure el fitxer: + No s'ha pogut sobreescriure el fitxer: - + Open Archive Obre un arxiu - - + + Add to Archive - Afegeix a l'arxiu + Afegeix a l'arxiu - - + + + Adding Items... - S'afegeixen elements... + S'afegeixen elements... - + Removing Items... - S'eliminen elements... + S'eliminen elements... - - + + Extract Into Directory Extreu en un directori - - - - + + + + + Extracting... - S'extreu... + S'extreu... - + Link To: %1 Enllaç: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia Multimèdia - + Development Desenvolupament - + Education Educació - + Games Jocs - + Graphics Gràfics - + Network Xarxa - + Office Oficina - + Science Ciència - + Settings Paràmetres - + System Sistema - + Utility Utilitat - + Wine Wine - + Unsorted Sense classificar @@ -443,7 +445,7 @@ Wipe all extra space on device (conv = sync) - Neteja tot l'espai extra al dispositiu (conv = sync) + Neteja tot l'espai extra al dispositiu (conv = sync) @@ -473,7 +475,7 @@ Admin Mode - Mode d'administrador + Mode d'administrador @@ -508,12 +510,12 @@ Administrator Permissions Needed - Calen permisos d'administrador + Calen permisos d'administrador This operation requires administrator priviledges. - Aquesta operació requereix privilegis d'administrador. + Aquesta operació requereix privilegis d'administrador. @@ -528,7 +530,7 @@ The process could not be completed: - El procés no s'ha pogut completar: + El procés no s'ha pogut completar: @@ -538,7 +540,7 @@ The image was successfully burned to the USB device - La imatge s'ha gravat correctament al dispositiu USB. + La imatge s'ha gravat correctament al dispositiu USB. diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts index 0e3d0da8..3d3c5825 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive Nedaří se načíst archiv - + Archive Loaded Archiv načten - + Extraction Finished Rozbalení dokončeno - + Modification Finished Úprava dokončena @@ -33,8 +33,8 @@ - - + + File Soubor @@ -134,213 +134,215 @@ Zkopírovat IMG na USB zařízení (může vyžadovat oprávnění pro správu systému) - + Archive Manager Správa archivů - + Admin Mode Režim správce - + CTRL+N CTRL+N - + CTRL+O CTRL+O - + CTRL+Q CTRL+Q - + CTRL+E CTRL+E - - + + MimeType MimeTyp - - + + Size Velikost - - + + Opening Archive... Otevřít archiv… - + All Types %1 Všechny typy %1 - - + + Uncompressed Archive (*.tar) Nekomprimovaný archiv (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) GZIP komprimovaný archiv (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) BZip komprimovaný archiv (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) BZip2 komprimovaný archiv (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) LZMA komprimovaný archiv (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) XZ komprimovaný archiv (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) CPIO archiv (*.cpio) - - + + PAX Archive (*.pax) PAX archiv (*.pax) - - + + AR Archive (*.ar) AR archiv (*.ar) - - + + SHAR Archive (*.shar) SHAR archiv (*.shar) - - + + Zip Archive (*.zip) Zip archiv (*.zip) - - + + 7-Zip Archive (*.7z) 7-Zip archiv (*.7z) - + All Known Types %1 Všechny známé typy %1 - + READ-ONLY: ISO image (*.iso *.img) POUZE PRO ČTENÍ: ISO obraz (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) POUZE PRO ČTENÍ: XAR archiv (*.xar) - + READ-ONLY: Java archive (*.jar) POUZE PRO ČTENÍ: java archiv (*.jar) - + READ-ONLY: RedHat Package (*.rpm) POUZE PRO ČTENÍ: RedHat balíček (*.rpm) - + Show All Files (*) Zobrazit veškeré soubory (*) - + Create Archive Vytvořit archiv - + Error Chyba - + Could not overwrite file: Nepodařilo se přepsat soubor: - + Open Archive Otevřít archiv - - + + Add to Archive Přidat do archivu - - + + + Adding Items... Přidávání položek… - + Removing Items... Odebírání položek… - - + + Extract Into Directory Rozbalit do složky - - - - + + + + + Extracting... Rozbalování… - + Link To: %1 Odkázat na: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia Multimédia - + Development Vývoj - + Education Výuka - + Games Hry - + Graphics Grafika - + Network Sítě - + Office Kancelář - + Science Věda - + Settings Nastavení - + System Systém - + Utility Nástroje - + Wine Wine - + Unsorted Různé diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cy.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cy.ts index e2780a8b..50d9f89e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cy.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cy.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts index ad4de0bd..03252649 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive Kunne ikke læse arkiv - + Archive Loaded Arkiv indlæst - + Extraction Finished Udpakning færdig - + Modification Finished Ændring færdig @@ -33,8 +33,8 @@ - - + + File Fil @@ -134,213 +134,215 @@ Kopiér et IMG til en USB-enhed (kan kræve administratortilladelse) - + Archive Manager Arkivhåndtering - + Admin Mode Administratortilstand - + CTRL+N CTRL+N - + CTRL+O CTRL+O - + CTRL+Q CTRL+Q - + CTRL+E CTRL+E - - + + MimeType MIME-type - - + + Size Størrelse - - + + Opening Archive... Åbner arkiv... - + All Types %1 Alle typer %1 - - + + Uncompressed Archive (*.tar) Ukomprimeret arkiv (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) GZip-komprimeret arkiv (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) BZip-komprimeret arkiv (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) BZip2-komprimeret arkiv (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) LMZA-komprimeret arkiv (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) XZ-komprimeret arkiv (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) CPIO-arkiv (*.cpio) - - + + PAX Archive (*.pax) PAX-arkiv (*.pax) - - + + AR Archive (*.ar) AR-arkiv (*.ar) - - + + SHAR Archive (*.shar) SHAR-arkiv (*.shar) - - + + Zip Archive (*.zip) Zip-arkiv (*.zip) - - + + 7-Zip Archive (*.7z) 7-Zip-arkiv (*.7z) - + All Known Types %1 Alle kendte typer %1 - + READ-ONLY: ISO image (*.iso *.img) SKRIVEBESKYTTET: ISO-aftryk (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) SKRIVEBESKYTTET: XAR-arkiv (*.xar) - + READ-ONLY: Java archive (*.jar) SKRIVEBESKYTTET: Java-arkiv (*.jar) - + READ-ONLY: RedHat Package (*.rpm) SKRIVEBESKYTTET: RedHat-pakke (*.rpm) - + Show All Files (*) Vis alle filer (*) - + Create Archive Opret arkiv - + Error Fejl - + Could not overwrite file: Kunne ikke overskrive fil: - + Open Archive Åbn arkiv - - + + Add to Archive Tilføj til arkiv - - + + + Adding Items... Tilføjer elementer... - + Removing Items... Fjerner elementer... - - + + Extract Into Directory Udpak i mappe - - - - + + + + + Extracting... Udpakker... - + Link To: %1 Link til: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia Multimedie - + Development Udvikling - + Education Uddannelse - + Games Spil - + Graphics Grafik - + Network Netværk - + Office Kontor - + Science Videnskab - + Settings Indstillinger - + System System - + Utility Hjælpeværktøj - + Wine Wine - + Unsorted Usorteret diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_de.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_de.ts index 52faac28..aaf8a637 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_de.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_de.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive Archiv konnte nicht gelesen werden - + Archive Loaded Archiv geladen - + Extraction Finished Extrahierung abgeschlossen - + Modification Finished Modifikation abgeschlossen @@ -33,8 +33,8 @@ - - + + File Datei @@ -134,213 +134,215 @@ IMG auf ein USB-Gerät kopieren (eventuell Administratorberechtigung erforderlich) - + Archive Manager Archivverwaltung - + Admin Mode Administratormodus - + CTRL+N STRG+N - + CTRL+O STRG+Ö - + CTRL+Q STRG+B - + CTRL+E STRG+E - - + + MimeType MimeType - - + + Size Größe - - + + Opening Archive... Archiv wird geöffnet... - + All Types %1 Alle Typen %1 - - + + Uncompressed Archive (*.tar) Unkomprimiertes Archiv (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) GZip-komprimiertes Archiv (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) BZip-komprimiertes Archiv (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) BZip2-komprimiertes Archiv (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) LMZA-komprimiertes Archiv (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) XZ-komprimiertes Archiv (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) CPIO-Archiv (*.cpio) - - + + PAX Archive (*.pax) PAX-Archiv (*.pax) - - + + AR Archive (*.ar) AR-Archiv (*.ar) - - + + SHAR Archive (*.shar) SHAR-Archiv (*.shar) - - + + Zip Archive (*.zip) Zip-Archiv (*.zip) - - + + 7-Zip Archive (*.7z) 7-Zip-Archiv (*.7z) - + All Known Types %1 Alle bekannten Typen %1 - + READ-ONLY: ISO image (*.iso *.img) NUR LESEN: ISO-Abbild (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) NUR LESEN: XAR-Archiv (*.xar) - + READ-ONLY: Java archive (*.jar) NUR LESEN: Java-Archiv (*.jar) - + READ-ONLY: RedHat Package (*.rpm) NUR LESEN: RedHat-Paket (*.rpm) - + Show All Files (*) Alle Dateien anzeigen (*) - + Create Archive Archiv erstellen - + Error Fehler - + Could not overwrite file: Datei konnte nicht überschrieben werden: - + Open Archive Archiv öffnen - - + + Add to Archive Zum Archiv hinzufügen - - + + + Adding Items... Elemente werden hinzugefügt... - + Removing Items... Elemente werden entfernt... - - + + Extract Into Directory In Verzeichnis extrahieren - - - - + + + + + Extracting... Extrahierungsvorgang... - + Link To: %1 Link auf: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia Multimedia - + Development Entwicklung - + Education Bildung - + Games Spiele - + Graphics Grafik - + Network Netzwerk - + Office Büro - + Science Wissenschaft - + Settings Einstellungen - + System System - + Utility Dienstprogramm - + Wine Wine - + Unsorted Unsortiert diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_el.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_el.ts index 5cc2add6..62e3fa7d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_el.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_el.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File Αρχείο @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_AU.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_AU.ts index 895b4f24..9dd6f872 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_AU.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_GB.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_GB.ts index 35b2009d..ee506b1b 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_GB.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_ZA.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_ZA.ts index def7d1fb..e03d2098 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_ZA.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts index fa3059fb..1d94327a 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive No podía leer el archivo - + Archive Loaded Archivo Cargado - + Extraction Finished Extracción Termina - + Modification Finished Modificación Termina @@ -33,8 +33,8 @@ - - + + File Archivo @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_et.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_et.ts index 467fef02..614cb075 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_et.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_et.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_eu.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_eu.ts index 6e23fddc..b8e8b8ec 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_eu.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_eu.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fa.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fa.ts index f7db7f46..9f09c229 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fa.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fa.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts index 8467eb99..94755c2e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive Arkistoa ei voitu lukea - + Archive Loaded Arkisto ladattu - + Extraction Finished Purku valmis - + Modification Finished Muutos valmis @@ -33,8 +33,8 @@ - - + + File Tiedosto @@ -134,213 +134,215 @@ Kopioi IMG-levykuva USB-laitteeseen (voi vaatia ylläpitäjän oikeuksia) - + Archive Manager Arkistonhallinta - + Admin Mode Ylläpitäjän tila - + CTRL+N Ctrl+N - + CTRL+O Ctrl+O - + CTRL+Q Ctrl+Q - + CTRL+E Ctrl+E - - + + MimeType MIME-tyyppi - - + + Size Koko - - + + Opening Archive... Avataan arkistoa... - + All Types %1 Kaikki tyypit %1 - - + + Uncompressed Archive (*.tar) Pakkaamaton arkisto (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) GZip-pakattu arkisto (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) BZip-pakattu arkisto (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) BZip2-pakattu arkisto (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) LMZA-pakattu arkisto (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) XZ-pakattu arkisto (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) CPIO-arkisto (*.cpio) - - + + PAX Archive (*.pax) PAX-arkisto (*.pax) - - + + AR Archive (*.ar) AR-arkisto (*.ar) - - + + SHAR Archive (*.shar) SHAR-arkisto (*.shar) - - + + Zip Archive (*.zip) Zip-arkisto (*.zip) - - + + 7-Zip Archive (*.7z) 7-Zip-arkisto (*.7z) - + All Known Types %1 Kaikki tunnetut tyypit %1 - + READ-ONLY: ISO image (*.iso *.img) VAIN LUKU: ISO-levykuva (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) VAIN LUKU: XAR-arkisto (*.xar) - + READ-ONLY: Java archive (*.jar) VAIN LUKU: Java-arkisto (*.jar) - + READ-ONLY: RedHat Package (*.rpm) VAIN LUKU: RedHat-paketti (*.rpm) - + Show All Files (*) Näytä kaikki tiedostot (*) - + Create Archive Luo arkisto - + Error Virhe - + Could not overwrite file: Ei voitu korvata tiedostoa: - + Open Archive Avaa arkisto - - + + Add to Archive Lisää arkistoon - - + + + Adding Items... Lisätään kohteita... - + Removing Items... Poistetaan kohteita... - - + + Extract Into Directory Pura kansioon - - - - + + + + + Extracting... Puretaan... - + Link To: %1 Linkki kohteeseen: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia Multimedia - + Development Kehitys - + Education Kasvatus - + Games Pelit - + Graphics Grafiikka - + Network Verkko - + Office Toimisto - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr.ts index a4127dd2..9f85d104 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive Ne pouvait pas lire l'archive - + Archive Loaded Archive Chargée - + Extraction Finished Extraction Terminée - + Modification Finished Modification Terminée @@ -33,8 +33,8 @@ - - + + File Fichier @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr_CA.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr_CA.ts index 76e997e2..766b8e80 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr_CA.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_gl.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_gl.ts index 54ae81f2..2cffdf42 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_gl.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_gl.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_he.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_he.ts index c3a9bf18..9dd75e08 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_he.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_he.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hi.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hi.ts index 126b43fc..56464e7d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hi.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hi.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hr.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hr.ts index 4fa86085..de583674 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hr.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hr.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts index a12207c4..b43b4940 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_id.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_id.ts index 20b17d53..0eb5d574 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_id.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_id.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_is.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_is.ts index 4764da2a..df1c48e7 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_is.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_is.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_it.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_it.ts index e51f188e..03938211 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_it.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_it.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ja.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ja.ts index a4afec0c..dd067590 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ja.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ja.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ka.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ka.ts index ec55d232..3731ceff 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ka.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ka.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ko.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ko.ts index d3f33517..ee093627 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ko.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ko.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts index fdc1b88b..59ba7c8a 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive Nepavyko perskaityti archyvo - + Archive Loaded Archyvas įkeltas - + Extraction Finished Išskleidimas užbaigtas - + Modification Finished Modifikavimas užbaigtas @@ -33,8 +33,8 @@ - - + + File Failas @@ -134,213 +134,215 @@ Kopijuoti IMG atvaizdį į USB įrenginį (gali prireikti administratoriaus leidimo) - + Archive Manager Archyvų tvarkytuvė - + Admin Mode Administratoriaus veiksena - + CTRL+N CTRL(Vald)+N - + CTRL+O CTRL(Vald)+O - + CTRL+Q CTRL(Vald)+Q - + CTRL+E CTRL(Vald)+E - - + + MimeType MIME tipas - - + + Size Dydis - - + + Opening Archive... Atveriamas archyvas... - + All Types %1 Visi tipai %1 - - + + Uncompressed Archive (*.tar) Nesuglaudintas archyvas (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) GZip suglaudintas archyvas (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) BZip suglaudintas archyvas (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) BZip2 suglaudintas archyvas (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) LMZA suglaudintas archyvas (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) XZ suglaudintas archyvas (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) CPIO archyvas (*.cpio) - - + + PAX Archive (*.pax) PAX archyvas (*.pax) - - + + AR Archive (*.ar) AR archyvas (*.ar) - - + + SHAR Archive (*.shar) SHAR archyvas (*.shar) - - + + Zip Archive (*.zip) Zip archyvas (*.zip) - - + + 7-Zip Archive (*.7z) 7-Zip archyvas (*.7z) - + All Known Types %1 Visi žinomi tipai %1 - + READ-ONLY: ISO image (*.iso *.img) TIK SKAITYMUI: ISO atvaizdis (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) TIK SKAITYMUI: XAR archyvas (*.xar) - + READ-ONLY: Java archive (*.jar) TIK SKAITYMUI: Java archyvas (*.jar) - + READ-ONLY: RedHat Package (*.rpm) TIK SKAITYMUI: RedHat paketas (*.rpm) - + Show All Files (*) Rodyti visus failus (*) - + Create Archive Sukurti archyvą - + Error Klaida - + Could not overwrite file: Nepavyko perrašyti failo: - + Open Archive Atverti archyvą - - + + Add to Archive Pridėti į archyvą - - + + + Adding Items... Pridedami elementai... - + Removing Items... Šalinami elementai... - - + + Extract Into Directory Išskleisti į katalogą - - - - + + + + + Extracting... Išskleidžiama... - + Link To: %1 Nuoroda į: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia Multimedija - + Development Programavimas - + Education Švietimas - + Games Žaidimai - + Graphics Grafika - + Network Tinklas - + Office Raštinė - + Science Mokslas - + Settings Nustatymai - + System Sistema - + Utility Paslaugų programos - + Wine Wine - + Unsorted Nesurūšiuota diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lv.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lv.ts index 0f89cbcb..751a9119 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lv.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lv.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mk.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mk.ts index bb44cbc0..445e5222 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mk.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mk.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mn.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mn.ts index 9d97d4cc..56b4f4ce 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mn.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mn.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ms.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ms.ts index f2d3646d..d3b6d14c 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ms.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ms.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mt.ts index 351c28d4..76b524af 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mt.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nb.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nb.ts index 6e796ee5..0daa98c5 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nb.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nb.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nl.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nl.ts index 98863cba..b72f2ac5 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nl.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nl.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pa.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pa.ts index 71a6f8bc..74312998 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pa.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pa.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pl.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pl.ts index 9b89ffaa..e6f4cd3e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pl.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pl.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt.ts index 419268ec..8db88864 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt_BR.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt_BR.ts index e97c992c..dacbb0f5 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt_BR.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File Arquivo @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ro.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ro.ts index 809b6a9a..6ccefb24 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ro.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ro.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts index 2ff06bea..61fa81c2 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sk.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sk.ts index d748c1d7..01ef016c 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sk.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sk.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sl.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sl.ts index 742c4b1c..d0f08df1 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sl.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sl.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sr.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sr.ts index cd019720..68d49c13 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sr.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sr.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sv.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sv.ts index c2872966..7e6523b3 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sv.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sv.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error Fel - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sw.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sw.ts index f5cab015..54f11ecc 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sw.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sw.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ta.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ta.ts index e7278b7a..33cfb29e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ta.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ta.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tg.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tg.ts index 7671cb12..d457d15d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tg.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tg.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_th.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_th.ts index d79a5bd3..0da2a0b0 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_th.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_th.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tr.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tr.ts index 32b20d55..75ce86b4 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tr.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tr.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uk.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uk.ts index e2b14885..d1a2daec 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uk.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uk.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uz.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uz.ts index 7399c285..4f027f37 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uz.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uz.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_vi.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_vi.ts index 518a6308..ecdab57b 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_vi.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_vi.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_CN.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_CN.ts index 3bb6e8a9..e8e13a7d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_CN.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_HK.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_HK.ts index 4f519588..d0fbdb5e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_HK.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_TW.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_TW.ts index b4ee4bac..2799b10c 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_TW.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zu.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zu.ts index 0f8f5724..b5eb3398 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zu.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zu.ts @@ -4,22 +4,22 @@ Backend - + Could not read archive - + Archive Loaded - + Extraction Finished - + Modification Finished @@ -33,8 +33,8 @@ - - + + File @@ -134,213 +134,215 @@ - + Archive Manager - + Admin Mode - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + All Known Types %1 - + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) - + Show All Files (*) - + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - - + + + + + Extracting... - + Link To: %1 @@ -348,67 +350,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_af.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_af.ts index cb85f0ef..7edcf463 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_af.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_af.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ar.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ar.ts index 3663c267..aa0c2fda 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ar.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ar.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_az.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_az.ts index 2c7de365..4d0bbc7e 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_az.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_az.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bg.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bg.ts index 3e250dce..022a30b6 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bg.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bg.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bn.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bn.ts index db95815e..e2f27ecf 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bn.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bn.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bs.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bs.ts index ed338dd4..c1dd8219 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bs.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_bs.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ca.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ca.ts index 5fd5d4f4..22f91f28 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ca.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ca.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia Multimèdia - + Development Desenvolupament - + Education Educació - + Games Jocs - + Graphics Gràfics - + Network Xarxa - + Office Oficina - + Science Ciència - + Settings Paràmetres - + System Sistema - + Utility Utilitat - + Wine Wine - + Unsorted Sense classificar @@ -170,7 +170,7 @@ Save Calculator History - Desa l'historial de la calculadora + Desa l'historial de la calculadora diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cs.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cs.ts index c1c731c0..230dbf57 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cs.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cs.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia Multimédia - + Development Vývoj - + Education Výuka - + Games Hry - + Graphics Grafika - + Network Sítě - + Office Kancelář - + Science Věda - + Settings Nastavení - + System Systém - + Utility Nástroje - + Wine Wine - + Unsorted Různé diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cy.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cy.ts index c5a7cf9e..2b7a5935 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cy.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_cy.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_da.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_da.ts index a3c4ba6e..5cdf9fa4 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_da.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_da.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia Multimedie - + Development Udvikling - + Education Uddannelse - + Games Spil - + Graphics Grafik - + Network Netværk - + Office Kontor - + Science Videnskab - + Settings Indstillinger - + System System - + Utility Hjælpeværktøj - + Wine Wine - + Unsorted Usorteret diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_de.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_de.ts index 7ba486d2..db9b4cc8 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_de.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_de.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia Multimedia - + Development Entwicklung - + Education Bildung - + Games Spiele - + Graphics Grafik - + Network Netzwerk - + Office Büro - + Science Wissenschaft - + Settings Einstellungen - + System System - + Utility Dienstprogramm - + Wine Wine - + Unsorted Unsortiert diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_el.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_el.ts index 68345ccf..95099ca2 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_el.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_el.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_AU.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_AU.ts index f8a5645c..499a43ef 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_AU.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_GB.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_GB.ts index 12eb3e92..4583a18d 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_GB.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_ZA.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_ZA.ts index 6b4e2df8..45910082 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_en_ZA.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_es.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_es.ts index 11c33199..1bf09cd8 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_es.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_es.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_et.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_et.ts index b82d41fb..f4143427 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_et.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_et.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_eu.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_eu.ts index 0285cca5..7dc2d02b 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_eu.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_eu.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fa.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fa.ts index 143d669b..4abdef74 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fa.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fa.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts index 0d4a273d..1b8a54c8 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fi.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia Multimedia - + Development Kehitys - + Education Kasvatus - + Games Pelit - + Graphics Grafiikka - + Network Verkko - + Office Toimisto - + Science Tiede - + Settings Asetukset - + System Järjestelmä - + Utility Työkalut - + Wine Wine - + Unsorted Lajittelematta diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fr.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fr.ts index 04003f20..0759ec17 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fr.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fr.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fr_CA.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fr_CA.ts index 0654ac4f..b7497c12 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_fr_CA.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_gl.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_gl.ts index 4e7573ae..4984c072 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_gl.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_gl.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_he.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_he.ts index 103df2c5..64e9fbed 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_he.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_he.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hi.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hi.ts index 363c2fed..6e5355e4 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hi.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hi.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hr.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hr.ts index 2ebb3d3f..e5a12fad 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hr.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hr.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hu.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hu.ts index 157dbda3..7889b997 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hu.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hu.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_id.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_id.ts index e5b85398..7eb7cfac 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_id.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_id.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_is.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_is.ts index 1e3b4a1b..9ca36843 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_is.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_is.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_it.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_it.ts index 52cce2e5..3136f945 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_it.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_it.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ja.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ja.ts index f55ac418..28c70ada 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ja.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ja.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ka.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ka.ts index 447b064b..7e5e2b1b 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ka.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ka.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ko.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ko.ts index 20d17b5b..bcd638f2 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ko.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ko.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lt.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lt.ts index d437c87d..d6d49057 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lt.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lt.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia Multimedija - + Development Programavimas - + Education Švietimas - + Games Žaidimai - + Graphics Grafika - + Network Tinklas - + Office Raštinė - + Science Mokslas - + Settings Nustatymai - + System Sistema - + Utility Paslaugų programos - + Wine Wine - + Unsorted Nesurūšiuota diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lv.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lv.ts index 397b9f4b..e76db7b3 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lv.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_lv.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mk.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mk.ts index 0f9b4edf..385c81d9 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mk.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mk.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mn.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mn.ts index 291b9c77..b0d23e97 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mn.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mn.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ms.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ms.ts index 9c7cb561..7d9909b6 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ms.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ms.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mt.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mt.ts index 2f8e149f..ea0d93f5 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mt.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_mt.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_nb.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_nb.ts index 64067ea8..9f845340 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_nb.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_nb.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_nl.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_nl.ts index 8ab29c1f..9947da6d 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_nl.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_nl.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pa.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pa.ts index de5ed527..d5ad471e 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pa.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pa.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pl.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pl.ts index 4b1088c6..2ee25b4b 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pl.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pl.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pt.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pt.ts index dc585618..e10def3c 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pt.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pt.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pt_BR.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pt_BR.ts index 745e2151..153a01b4 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_pt_BR.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ro.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ro.ts index d393bf30..3c30de54 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ro.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ro.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ru.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ru.ts index 3ec5b808..12a81656 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ru.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ru.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sk.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sk.ts index 803345bd..d3dab31b 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sk.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sk.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sl.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sl.ts index 23d1d601..d19ce360 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sl.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sl.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sr.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sr.ts index 0ce31237..a4cff79d 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sr.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sr.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sv.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sv.ts index b0bb8b08..b03c69a0 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sv.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sv.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sw.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sw.ts index 6ee2edff..92f3ec07 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sw.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_sw.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ta.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ta.ts index 167c10e1..23e4b58e 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ta.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ta.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_tg.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_tg.ts index 27335806..49d44536 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_tg.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_tg.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_th.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_th.ts index 3364a939..f504c992 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_th.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_th.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_tr.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_tr.ts index cca58741..4834e81e 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_tr.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_tr.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_uk.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_uk.ts index d9e8d5eb..f8f706e8 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_uk.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_uk.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_uz.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_uz.ts index 5ec8f922..539480f3 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_uz.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_uz.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_vi.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_vi.ts index 39deeafc..2c14049d 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_vi.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_vi.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_CN.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_CN.ts index ed07c217..38b8e381 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_CN.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_HK.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_HK.ts index 4d20a151..8406ecf4 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_HK.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_TW.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_TW.ts index 9f746af8..d80ac5fb 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zh_TW.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zu.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zu.ts index 366e3137..f61d758d 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zu.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_zu.ts @@ -4,67 +4,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_af.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_af.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_af.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_af.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ar.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ar.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ar.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ar.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_az.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_az.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_az.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_az.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bg.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bg.ts index dc0d5237..d7404dd2 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bg.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bg.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Информация за файла - + Owner: Собственик: - + Group: Група: - + Permissions: Права: - + Created: Създаден: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Бележка: Времето на създаване на файла може да е по-скоро от времето на последна промяна ако правата на файла са били променени наскоро. - + Last Modified: Последна промяна: - + Type: Тип: - + MimeType: Mime тип: - + File Size: Размер на файла: - - - Edit Shortcut - Редактиране на прекия път + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Работна директория: - + Use startup notification Известие при стартиране - + Icon: Икона: - + Command: Команда: - + Comment: Коментар: - + Run in terminal Изпълнение в терминала - + Name: Име: - + Options Настройки - - No Icon - Без икона - - - - Save - Запазване - - - - Close - Затваряне - - - + ---Calculating--- ---Изчисляване--- - + Read/Write Четене/Запис - + Read Only Само за четене - + Write Only Само за запис - + No Access Няма достъп - + + + + XDG Shortcut Пряк път за XDG - + Directory Директория - + Binary Бинарен файл - + Hidden %1 Скрит %1 - + URL: Адрес: - + + + Save Application File Запис на файла на програмата - - Application Registrations (*.desktop) - Регистрирани програми (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Избор на бинарен файл - + Error Грешка - + Invalid selection: Not a valid executable Невалиден избор: Не е валиден изпълним файл - + Select a directory Избор на директория - + Select an icon Избор на икона - + Images (%1);; All Files (*) Изображения (%1);; Всички файлове (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Папки: - - + + Files: Файлове: - + Calculating... Изчисляване... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bn.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bn.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bn.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bn.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bs.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bs.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bs.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_bs.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ca.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ca.ts index 5788bcb4..9b74897c 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ca.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ca.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Informació del fitxer - + Owner: Propietari: - + Group: Grup: - + Permissions: Permisos: - + Created: Creat: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Nota: l'hora de la creació d'un fitxer pot ser més recent que l'hora de modificació si els permisos n'han canviat recentment. - + Last Modified: Última modificació: - + Type: Tipus: - + MimeType: Tipus MIME: - + File Size: Mida del fitxer: - - - Edit Shortcut - Edita la drecera + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Directori de treball: - + Use startup notification Usa la notificació d'inici - + Icon: Icona: - + Command: Ordre: - + Comment: Comentari: - + Run in terminal Executa en un terminal - + Name: Nom: - + Options Opcions - - No Icon - Sense icona - - - - Save - Desa - - - - Close - Tanca - - - + ---Calculating--- ---Calculant--- - + Read/Write Lectura/escriptura - + Read Only Només de lectura - + Write Only Només d'escriptura - + No Access Sense accés - + + + + XDG Shortcut Drecera XDG - + Directory Directori - + Binary Binari - + Hidden %1 %1 ocult(a) - + URL: URL: - + + + Save Application File Desa el fitxer de l'aplicació - - Application Registrations (*.desktop) - Matrícules d'aplicació (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Seleccioneu un binari - + Error Error - + Invalid selection: Not a valid executable Selecció no vàlida: no és un executable vàlid - + Select a directory Seleccioneu un directori - + Select an icon Seleccioneu una icona - + Images (%1);; All Files (*) Imatges (%1);; Tots els fitxers (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Carpetes: - - + + Files: Fitxers: - + Calculating... Calculant... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_cs.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_cs.ts index 76ab1fce..495ebc16 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_cs.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_cs.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Informace o souboru - + Owner: Vlastník: - + Group: Skupina: - + Permissions: Oprávnění: - + Created: Vytvořeno: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Poznámka: Doba kdy byl soubor vytvořen může být mladší než čas změny, pokud byla oprávnění k souboru změněna nedávno. - + Last Modified: Naposledy změněno: - + Type: Typ: - + MimeType: MIME typ: - + File Size: Velikost souboru: - - - Edit Shortcut - Upravit zkratku + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Pracovní složka: - + Use startup notification Použít oznámení o spuštění - + Icon: Ikona: - + Command: Příkaz: - + Comment: Poznámka: - + Run in terminal Spustit v terminálu - + Name: Název: - + Options Předvolby - - No Icon - Bez ikony - - - - Save - Uložit - - - - Close - Zavřít - - - + ---Calculating--- ---Počítání--- - + Read/Write Čtení/Zápis - + Read Only Pouze pro čtení - + Write Only Pouze pro zápis - + No Access Žádný přístup - + + + + XDG Shortcut XDG zkratka - + Directory Složka - + Binary Spustitelný soubor - + Hidden %1 Skryto %1 - + URL: URL adresa: - + + + Save Application File Uložit soubor aplikace - - Application Registrations (*.desktop) - Registrace aplikací (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Vyberte spustitelný soubor - + Error Chyba - + Invalid selection: Not a valid executable Neplatný výběr: Není platný spustitelný soubor - + Select a directory Vyberte složku - + Select an icon Vyberte ikonu - + Images (%1);; All Files (*) Obrázky (%1);; Všechny soubory (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Složky: - - + + Files: Soubory: - + Calculating... Počítá se… @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_cy.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_cy.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_cy.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_cy.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts index 5efb0be5..a58f1ec1 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Filinformation - + Owner: Ejer: - + Group: Gruppe: - + Permissions: Tilladelser: - + Created: Oprettet: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Note: Det tidspunkt en fil blev oprettet kan være nyere end tiden den blev ændret, hvis filens tilladelser er blevet ændret fornyligt. - + Last Modified: Sidst ændret: - + Type: Type: - + MimeType: MIME-type: - + File Size: Filstørrelse: - - - Edit Shortcut - Rediger genvej + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Arbejdsmappe: - + Use startup notification Brug opstartspåmindelser - + Icon: Ikon: - + Command: Kommando: - + Comment: Kommentar: - + Run in terminal Kør i terminal - + Name: Navn: - + Options Valgmuligheder - - No Icon - Intet ikon - - - - Save - Gem - - - - Close - Luk - - - + ---Calculating--- ---Beregner--- - + Read/Write Læs/skriv - + Read Only Skrivebeskyttet - + Write Only Kun skriv - + No Access Ingen adgang - + + + + XDG Shortcut XDG-genvej - + Directory Mappe - + Binary Binær - + Hidden %1 Skjult %1 - + URL: URL: - + + + Save Application File Gem programfil - - Application Registrations (*.desktop) - Programregistreringer (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Vælg en binær - + Error Fejl - + Invalid selection: Not a valid executable Ugyldigt valg: Ikke en eksekverbar - + Select a directory Vælg en mappe - + Select an icon Vælg et ikon - + Images (%1);; All Files (*) Billeder (%1);; Alle filer (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Mapper: - - + + Files: Filer: - + Calculating... Beregner ... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_de.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_de.ts index 196523a6..57409789 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_de.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_de.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Dateiinformationen - + Owner: Eigentümer: - + Group: Gruppe: - + Permissions: Berechtigungen: - + Created: Erstellt am: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Hinweis: Der Zeitpunkt der Erstellung einer Datei kann ein früherer sein, als der Zeitpunkt der letzten Änderung der Datei, wenn die Zugriffsrechte vor kurzem geändert wurden. - + Last Modified: Zuletzt geändert: - + Type: Typ: - + MimeType: MIME-Typ: - + File Size: Dateigröße: - - - Edit Shortcut - Tastenkürzel bearbeiten + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Arbeitsverzeichnis: - + Use startup notification Rückmeldung über den Programmstart geben - + Icon: Symbol: - + Command: Befehl: - + Comment: Kommentar: - + Run in terminal Im Terminal ausführen - + Name: Name: - + Options Optionen - - No Icon - Kein Symbol - - - - Save - Speichern - - - - Close - Schließen - - - + ---Calculating--- ---Berechne--- - + Read/Write Lesen/Schreiben - + Read Only Nur lesen - + Write Only Nur schreiben - + No Access Kein Zugriff - + + + + XDG Shortcut XDG Tastenkürzel - + Directory Verzeichnis - + Binary Programmdatei - + Hidden %1 Ausgeblendet %1 - + URL: URL: - + + + Save Application File Anwendungsdatei speichern - - Application Registrations (*.desktop) - Anwendungsregistrierungen (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Programmdatei auswählen - + Error Fehler - + Invalid selection: Not a valid executable Ungültige Auswahl: keine gültige ausführbare Datei - + Select a directory Wähle ein Verzeichnis - + Select an icon Ein Symbol auswählen - + Images (%1);; All Files (*) Bilder (%1);; Alle Dateien (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Ordner: - - + + Files: Dateien: - + Calculating... Berechne... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_el.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_el.ts index 4b6a250d..5f070aa6 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_el.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_el.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Πληροφορίες Αρχείου - + Owner: Ιδιοκτήτης: - + Group: Ομάδα: - + Permissions: Δικαιώματα: - + Created: Δημιουργήθηκε: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Σημείωση: Ο χρόνος όπου ένα αρχείο δημιουργήθηκε μπορεί να είναι πιο πρόσφατος από τη στιγμή που τροποποιήθηκε, εφόσον οι άδειες αρχείων άλλαξαν πρόσφατα. - + Last Modified: Τελευταία Τροποποίηση: - + Type: Τύπος: - + MimeType: ΤύποςMime: - + File Size: Μέγεθος Αρχείου: - - - Edit Shortcut - Επεξεργασία Συντόμευσης + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Τρέχων κατάλογος εργασίας: - + Use startup notification Χρησιμοποιήστε ειδοποίηση εκκίνησης - + Icon: Εικονίδιο: - + Command: Eντολή: - + Comment: Σχόλιο: - + Run in terminal Τρέξτε το στην γραμμή εντολών - + Name: Όνομα: - + Options Επιλογές - - No Icon - Χωρίς Εικονίδιο - - - - Save - Αποθήκευση - - - - Close - Κλείσιμο - - - + ---Calculating--- ---Υπολογισμός--- - + Read/Write Ανάγνωση/Εγγραφή - + Read Only Μόνο Ανάγνωση - + Write Only Μόνο Εγγραφή - + No Access Χωρίς Πρόσβαση - + + + + XDG Shortcut XDG Συντόμευση - + Directory Κατάλογος - + Binary Εκτελέσιμο - + Hidden %1 Κρυφό %1 - + URL: URL: - + + + Save Application File Αποθήκευση Αρχείου Εφαρμογής - - Application Registrations (*.desktop) - Εγγραφές Εφαρμογής (* .desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Επιλέξτε ένα εκτελέσιμο - + Error Σφάλμα - + Invalid selection: Not a valid executable Μη έγκυρη επιλογή: Μη έγκυρο εκτελέσιμο - + Select a directory Επιλέξτε έναν κατάλογο - + Select an icon Επιλέξτε ένα εικονίδιο - + Images (%1);; All Files (*) Εικόνες (% 1) ;; ΌλαΤαΑρχεία (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Φάκελοι: - - + + Files: Αρχεία: - + Calculating... Υπολογισμός... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_AU.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_AU.ts index fc535d3a..0eab7e93 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_AU.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information File Information - + Owner: Owner: - + Group: Group: - + Permissions: Permissions: - + Created: Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: Last Modified: - + Type: Type: - + MimeType: MimeType: - + File Size: File Size: - - - Edit Shortcut - Edit Shortcut + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Working Dir: - + Use startup notification Use startup notification - + Icon: Icon: - + Command: Command: - + Comment: Comment: - + Run in terminal Run in terminal - + Name: Name: - + Options Options - - No Icon - No Icon - - - - Save - Save - - - - Close - Close - - - + ---Calculating--- ---Calculating--- - + Read/Write Read/Write - + Read Only Read Only - + Write Only Write Only - + No Access No Access - + + + + XDG Shortcut XDG Shortcut - + Directory Directory - + Binary Binary - + Hidden %1 Hidden %1 - + URL: URL: - + + + Save Application File Save Application File - - Application Registrations (*.desktop) - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Select a binary - + Error Error - + Invalid selection: Not a valid executable Invalid selection: Not a valid executable - + Select a directory Select a directory - + Select an icon Select an icon - + Images (%1);; All Files (*) Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Folders: - - + + Files: Files: - + Calculating... Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_GB.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_GB.ts index ffe7e9a8..bb99457f 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_GB.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information File Information - + Owner: Owner: - + Group: Group: - + Permissions: Permissions: - + Created: Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: Last Modified: - + Type: Type: - + MimeType: MimeType: - + File Size: File Size: - - - Edit Shortcut - Edit Shortcut + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Working Dir: - + Use startup notification Use startup notification - + Icon: Icon: - + Command: Command: - + Comment: Comment: - + Run in terminal Run in terminal - + Name: Name: - + Options Options - - No Icon - No Icon - - - - Save - Save - - - - Close - Close - - - + ---Calculating--- ---Calculating--- - + Read/Write Read/Write - + Read Only Read Only - + Write Only Write Only - + No Access No Access - + + + + XDG Shortcut XDG Shortcut - + Directory Directory - + Binary Binary - + Hidden %1 Hidden %1 - + URL: URL: - + + + Save Application File Save Application File - - Application Registrations (*.desktop) - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Select a binary - + Error Error - + Invalid selection: Not a valid executable Invalid selection: Not a valid executable - + Select a directory Select a directory - + Select an icon Select an icon - + Images (%1);; All Files (*) Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Folders: - - + + Files: Files: - + Calculating... Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_ZA.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_ZA.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_en_ZA.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_es.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_es.ts index fd7f225a..bf6f27f5 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_es.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_es.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Información del Archivo - + Owner: Propietario: - + Group: Grupo: - + Permissions: Permisos: - + Created: Creado: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Nota: La fecha en la que un archivo fue creado puede ser más reciente que la fecha en la que se modificó, si los permisos del archivo cambiaron recientemente. - + Last Modified: Última Modificación: - + Type: Tipo: - + MimeType: Tipo MIME: - + File Size: Tamaño del Archivo: - - - Edit Shortcut - Editar Acceso Directo + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Directorio de Trabajo: - + Use startup notification Usar notificación al inicio - + Icon: Ícono: - + Command: Comando: - + Comment: Comentario: - + Run in terminal Ejecutar en terminal - + Name: Nombre: - + Options Opciones - - No Icon - Sin Ícono - - - - Save - Guardar - - - - Close - Cerrar - - - + ---Calculating--- ---Calculando--- - + Read/Write Lectura/Escritura - + Read Only Sólo Lectura - + Write Only Sólo Escritura - + No Access Sin Acceso - + + + + XDG Shortcut Acceso Directo XDG - + Directory Directorio - + Binary Binario - + Hidden %1 Oculto %1 - + URL: URL: - + + + Save Application File Guardar Archivo de Aplicación - - Application Registrations (*.desktop) - Registro de Aplicaciones (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Seleccione un ejecutable - + Error Error - + Invalid selection: Not a valid executable Selección no válida: Ejecutable no válido - + Select a directory Seleccione un directorio - + Select an icon Seleccione un ícono - + Images (%1);; All Files (*) Imágenes (%1);; Todos los Archivos (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Directorios: - - + + Files: Archivos: - + Calculating... Calculando… @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_et.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_et.ts index 3f2d0eb8..4c50bb7e 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_et.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_et.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Faili andmed - + Owner: Omanik: - + Group: Grupp: - + Permissions: Õigused: - + Created: Loodud: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Märkus: juhul kui faili õiguseid on hiljuti muudetud, võib loomisaeg olla hilisem kui muutmisaeg. - + Last Modified: Viimati muudetud: - + Type: Tüüp: - + MimeType: MIME-tüüp: - + File Size: Faili maht: - - - Edit Shortcut - Muuda otseteed + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Töökaust: - + Use startup notification Kasuta käivitamisel teavitamist - + Icon: Ikoon: - + Command: Käsk: - + Comment: Kommentaar: - + Run in terminal Käivita terminalis - + Name: Nimi: - + Options Valikud - - No Icon - Ikoon puudub - - - - Save - Salvesta - - - - Close - Sulge - - - + ---Calculating--- ---Arvutamine--- - + Read/Write Lugemine/Kirjutamine - + Read Only Ainult lugemiseks - + Write Only Ainult kirjutamiseks - + No Access Ligipääs puudub - + + + + XDG Shortcut XDG otsetee - + Directory Kaust - + Binary Käivitatav fail - + Hidden %1 Peidetud %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary Vali rakendus - + Error Tõrge - + Invalid selection: Not a valid executable Vigane valik: fail ei ole käivitatav - + Select a directory Vali kaust - + Select an icon Vali ikoon - + Images (%1);; All Files (*) Pildid (%1);; Kõik failid (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Kaustad: - - + + Files: Failid: - + Calculating... Arvutamine... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_eu.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_eu.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_eu.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_eu.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fa.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fa.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fa.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fa.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fi.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fi.ts index 7e6f3027..19452b95 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fi.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fi.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Tiedoston tiedot - + Owner: Omistaja: - + Group: Ryhmä: - + Permissions: Käyttöoikeudet: - + Created: Luotu: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Huomaa: Tiedoston luontiaika voi olla muutosaikaa uudempi, jos tiedoston käyttöoikeuksia on äskettäin muutettu. - + Last Modified: Viimeksi muutettu: - + Type: Tyyppi: - + MimeType: MIME-tyyppi: - + File Size: Tiedoston koko: - - - Edit Shortcut - Muokkaa pikakuvaketta + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Työkansio: - + Use startup notification Käytä käynnistysilmaisinta - + Icon: Kuvake: - + Command: Komento: - + Comment: Huomautus: - + Run in terminal Suorita päätteessä - + Name: Nimi: - + Options Valinnat - - No Icon - Ei kuvaketta - - - - Save - Tallenna - - - - Close - Sulje - - - + ---Calculating--- ––Lasketaan–– - + Read/Write Luku/kirjoitus - + Read Only Vain luku - + Write Only Vain kirjoitus - + No Access Ei oikeuksia - + + + + XDG Shortcut XDG-pikakuvake - + Directory Kansio - + Binary Ohjelmatiedosto - + Hidden %1 Piilotettuja %1 - + URL: Verkko-osoite: - + + + Save Application File Tallenna sovellustiedosto - - Application Registrations (*.desktop) - Sovelluksen rekisteröinnit (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Valitse ohjelmatiedosto - + Error Virhe - + Invalid selection: Not a valid executable Virheellinen valinta: Ei kelvollinen ohjelmatiedosto - + Select a directory Valitse kansio - + Select an icon Valitse kuvake - + Images (%1);; All Files (*) Kuvat (%1);; Kaikki tiedostot (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Kansiot: - - + + Files: Tiedostot: - + Calculating... Lasketaan… @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr.ts index 4cb982fc..370d82bc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Information Fichier - + Owner: Propriétaire : - + Group: Groupe : - + Permissions: Permissions : - + Created: Créé le: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Note : La date de création peut être plus récente que la date de modification si les permissions du fichier ont été modifiées récemment. - + Last Modified: Dernière Modification : - + Type: Type : - + MimeType: Type MIME : - + File Size: Taille du Fichier : - - - Edit Shortcut - Modifier le Raccourci + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Dossier de Travail : - + Use startup notification Utiliser les notifications de démarrage - + Icon: Icône : - + Command: Commande : - + Comment: Commentaire : - + Run in terminal Exécuter dans un terminal - + Name: Nom : - + Options Options - - No Icon - Pas d'Icône - - - - Save - Enregistrer - - - - Close - Fermer - - - + ---Calculating--- ---En cours de calcul--- - + Read/Write Lecture/Ecriture - + Read Only Lecture Seule - + Write Only Ecriture Seule - + No Access Aucun Accès - + + + + XDG Shortcut Raccourci XDG - + Directory Dossier - + Binary Binaire - + Hidden %1 Caché %1 - + URL: URL : - + + + Save Application File Enregistrer le Fichier - - Application Registrations (*.desktop) - Lanceurs de Programmes (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Choisir un binaire - + Error Erreur - + Invalid selection: Not a valid executable Sélection invalide : Ce n'est pas un exécutable valide - + Select a directory Sélectionner un dossier - + Select an icon Sélectionner une icône - + Images (%1);; All Files (*) Images (%1);; Tous les fichiers (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Dossiers : - - + + Files: Fichiers : - + Calculating... En cours de calcul... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr_CA.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr_CA.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr_CA.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_gl.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_gl.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_gl.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_gl.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_he.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_he.ts index c8d9447b..4625c1af 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_he.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_he.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: טיפוס: - + MimeType: טיפוס Mime: - + File Size: גודל קובץ: - - - Edit Shortcut - ערוך קיצור דרך + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: ספריית עבודה: - + Use startup notification השתמש בהתראת הפעלה - + Icon: סמל: - + Command: פקודה: - + Comment: הערה: - + Run in terminal - + Name: - + Options - - No Icon - - - - - Save - - - - - Close - - - - + ---Calculating--- - + Read/Write - + Read Only - + Write Only כתיבה בלבד - + No Access אין גישה - + + + + XDG Shortcut קיצור דרך XDG - + Directory ספרייה - + Binary בינארי - + Hidden %1 מוסתר %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary בחר בינארי - + Error שגיאה - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hi.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hi.ts index 38b659eb..ab11bfcd 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hi.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hi.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hr.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hr.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hr.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hr.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hu.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hu.ts index 8a6fcdf0..e8aa61f8 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hu.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_hu.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Fájl információk - + Owner: Tulajdonos: - + Group: Csoport: - + Permissions: Jogosultságok: - + Created: Létrehozva: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: Utoljára módosítva: - + Type: Típus: - + MimeType: MIME-típus: - + File Size: Fájlméret: - - - Edit Shortcut - A billentyűkombináció módosítása + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Munkakönyvtár: - + Use startup notification Indítási értesítés használata - + Icon: Ikon: - + Command: Parancs: - + Comment: Megjegyzés: - + Run in terminal Futtatás terminálban - + Name: Név: - + Options Beállítások - - No Icon - Nincs ikon - - - - Save - Mentés - - - - Close - Bezárás - - - + ---Calculating--- ---Számítás--- - + Read/Write Írható/Olvasható - + Read Only Csak olvasható - + Write Only Csak írható - + No Access Nincs hozzáférés - + + + + XDG Shortcut XDG gyorsbillentyű - + Directory Könyvtár - + Binary Bináris - + Hidden %1 Rejtett %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary Program kiválasztása - + Error Hiba - + Invalid selection: Not a valid executable Érvénytelen kiválasztás: nem futtatható fájl - + Select a directory Könyvtár kiválasztása - + Select an icon Ikon kiválasztása - + Images (%1);; All Files (*) Képek (%1);; Minden fájl (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Mappák: - - + + Files: Fájlok: - + Calculating... Számítás... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_id.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_id.ts index ab228992..0dd0d2c4 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_id.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_id.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Informasi Berkas - + Owner: Pemilik: - + Group: Grup: - + Permissions: Hak: - + Created: Dibuat: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: Terakhir Diubah: - + Type: Tipe: - + MimeType: MimeType: - + File Size: Ukuran Berkas: - - - Edit Shortcut - Sunting Jalan Pintas + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Direktori Kerja: - + Use startup notification Gunakan notifikasi hidupkan - + Icon: Ikon: - + Command: Perintah: - + Comment: Komentar: - + Run in terminal Jalankan dalam terminal - + Name: Nama: - + Options Opsi - - No Icon - Tak ada ikon - - - - Save - Simpan - - - - Close - Tutup - - - + ---Calculating--- ---menghitung--- - + Read/Write Baca/Tulis - + Read Only Baca Saja - + Write Only Hanya tulis - + No Access Tidak ada akses - + + + + XDG Shortcut XDG Pintasan - + Directory Direktori - + Binary Biner - + Hidden %1 Tersembunyi %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary Sekelsi biner - + Error Galat - + Invalid selection: Not a valid executable Temukan valid: Executable Tidak berlaku - + Select a directory Pilih direktori - + Select an icon Pilih ikon - + Images (%1);; All Files (*) Gambar (%1);; Semua berkas (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Folders: - - + + Files: Berkas: - + Calculating... Menghitung... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_is.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_is.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_is.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_is.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_it.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_it.ts index 3705c731..e6b0b626 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_it.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_it.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Informazioni File - + Owner: Proprietario: - + Group: Gruppo: - + Permissions: Permessi: - + Created: Creato il: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Nota: Il tempo di creazione del file potrebbe essere più recente rispetto al tempo delle modifiche se i permessi dei file sono state modificati di recente. - + Last Modified: Ultima modifica: - + Type: Tipo: - + MimeType: Tipo Mime: - + File Size: Dimensione File: - - - Edit Shortcut - Edita Shortcut + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Cartella di lavoro: - + Use startup notification Usa notifica di avvio - + Icon: Icona: - + Command: Comando: - + Comment: Commento: - + Run in terminal Eseguire nel terminale - + Name: Nome: - + Options Opzioni - - No Icon - Nessuna icona - - - - Save - Salva - - - - Close - Chiudi - - - + ---Calculating--- --- Calcolo --- - + Read/Write Lettura/Scrittura - + Read Only Sola lettura - + Write Only Sola scrittura - + No Access Nessun accesso - + + + + XDG Shortcut Shortcut XDG - + Directory Cartella - + Binary Binario - + Hidden %1 %1 Nascosto - + URL: URL: - + + + Save Application File Salva il file dell'Applicazione - - Application Registrations (*.desktop) - Registrazioni delle Applicazioni (*.scrivania) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Seleziona un binario - + Error Errore - + Invalid selection: Not a valid executable Scelta invalida: Eseguibile non valido - + Select a directory Seleziona una directory - + Select an icon Seleziona un'icona - + Images (%1);; All Files (*) Immagini (%1);; Tutti i File (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Cartelle: - - + + Files: File: - + Calculating... Calcolo in corso... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ja.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ja.ts index 7974e80e..65837ab3 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ja.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ja.ts @@ -5,223 +5,320 @@ MainUI - - + + File Information ファイルの情報 - + Owner: 所有者: - + Group: グループ: - + Permissions: パーミッション: - + Created: 作成日時: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. 注意: パーミッション設定のため、ファイル作成日時が更新時刻より新しいことがあります。 - + Last Modified: 最終更新日時: - + Type: 種類: - + MimeType: MIME タイプ: - + File Size: ファイルのサイズ: - - - Edit Shortcut - ショートカットを編集 + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: 作業ディレクトリー: - + Use startup notification 起動通知を行う - + Icon: アイコン: - + Command: コマンド: - + Comment: コメント: - + Run in terminal ターミナルで実行する - + Name: 名前: - + Options オプション - - No Icon - アイコン無し - - - - Save - 保存 - - - - Close - 閉じる - - - + ---Calculating--- ---計算しています--- - + Read/Write 読み込み/書き込み - + Read Only 読み込み専用 - + Write Only 書き込み専用 - + No Access アクセス権無し - + + + + XDG Shortcut XDG ショートカット - + Directory ディレクトリー - + Binary バイナリー - + Hidden %1 %1 には "Directory", "File", "Link" などが入ると思われる。 隠し %1 - + URL: URL: - + + + Save Application File アプリケーションファイルを保存 - - Application Registrations (*.desktop) - アプリケーション登録 (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary ファイル選択ダイアログのタイトル バイナリーを選択する - + Error エラー - + Invalid selection: Not a valid executable 無効な選択: 有効な実行ファイルではありません - + Select a directory ディレクトリーを選択 - + Select an icon アイコンを選択 - + Images (%1);; All Files (*) 画像ファイル (%1);; 全ファイル (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: フォルダー: - - + + Files: ファイル: - + Calculating... 計算中... @@ -229,67 +326,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ka.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ka.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ka.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ka.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ko.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ko.ts index dfcb31cf..8004651f 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ko.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ko.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information 파일 정보 - + Owner: 소유자: - + Group: 그룹: - + Permissions: 권한: - + Created: 만든 시간: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. 주의: 파일의 권한이 최근 바뀌었다면 파일을 만든 시간이 수정 시간보다 나중일 수 있습니다. - + Last Modified: 최종 수정: - + Type: 종류: - + MimeType: MIME 형식: - + File Size: 파일 크기: - - - Edit Shortcut - 바로 가기 편집 + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: 작업 디렉터리: - + Use startup notification 시작 알림 사용 - + Icon: 아이콘: - + Command: 명령: - + Comment: 설명: - + Run in terminal 터미널에서 실행 - + Name: 이름: - + Options 선택사항 - - No Icon - 아이콘 없음 - - - - Save - 저장 - - - - Close - 닫기 - - - + ---Calculating--- ---계산중--- - + Read/Write 읽기/쓰기 - + Read Only 읽기 전용 - + Write Only 쓰기 전용 - + No Access 접근 권한 없음 - + + + + XDG Shortcut XDG 바로 가기 - + Directory 디렉터리 - + Binary 실행 파일 - + Hidden %1 숨겨진 %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary 실행 파일 선택 - + Error 오류 - + Invalid selection: Not a valid executable 잘못된 선택: 실행 파일이 아님 - + Select a directory 디렉터리 선택 - + Select an icon 아이콘 선택 - + Images (%1);; All Files (*) 그림 (%1);; 모든 파일 (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: 폴더: - - + + Files: 파일: - + Calculating... 계산중... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lt.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lt.ts index 7cbf3a32..c8fd0389 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lt.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lt.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Failo informacija - + Owner: Savininkas: - + Group: Grupė: - + Permissions: Leidimai: - + Created: Sukurta: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Pastaba: Laikas, kuomet failas buvo sukurtas gali būti vėlesnis nei failo keitimo laikas tuo atveju, jei failo leidimai neseniai buvo pakeisti. - + Last Modified: Paskutinį kartą keistas: - + Type: Tipas: - + MimeType: MIME tipas: - + File Size: Failo dydis: - - - Edit Shortcut - Redaguoti šaukinį + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Darbinis katalogas: - + Use startup notification Naudoti paleidimo pranešimą - + Icon: Piktograma: - + Command: Komanda: - + Comment: Komentaras: - + Run in terminal Vykdyti terminale - + Name: Pavadinimas: - + Options Parinktys - - No Icon - Nėra piktogramos - - - - Save - Įrašyti - - - - Close - Užverti - - - + ---Calculating--- ---Skaičiuojama--- - + Read/Write Skaityti/Rašyti - + Read Only TIk skaityti - + Write Only Tik rašyti - + No Access Nėra prieigos - + + + + XDG Shortcut XDG šaukinys - + Directory Katalogas - + Binary Dvejetainė - + Hidden %1 Paslėptas %1 - + URL: URL: - + + + Save Application File Įrašyti programos failą - - Application Registrations (*.desktop) - Programų įrašai (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Pasirinkti dvejetainę - + Error Klaida - + Invalid selection: Not a valid executable Neteisingas pasirinkimas: Neteisingas vykdomasis - + Select a directory Pasirinkti katalogą - + Select an icon Pasirinkti piktogramą - + Images (%1);; All Files (*) Paveikslai (%1);; Visi failai (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Aplankai: - - + + Files: Failai: - + Calculating... Skaičiuojama... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lv.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lv.ts index cdd3c3bd..4aa32cf1 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lv.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_lv.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Informācija par failu - + Owner: Īpašnieks: - + Group: Grupa: - + Permissions: Atļaujas: - + Created: Izveidots: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Piezīme: Faila izveidošanas laiks var būt jaunāks par modificēšanas laiku, ja nesen tika mainītas tā tiesības. - + Last Modified: Pēdējoreiz modificēts: - + Type: Tips: - + MimeType: Mime tips: - + File Size: Faila lielums: - - - Edit Shortcut - Labot saīsni + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Darba katalogs: - + Use startup notification Izmantot startēšanas paziņojumus - + Icon: Ikona: - + Command: Komanda: - + Comment: Komentārs: - + Run in terminal Palaist terminālī - + Name: Nosaukums: - + Options Opcijas - - No Icon - Nav ikonas - - - - Save - Saglabāt - - - - Close - Aizvērt - - - + ---Calculating--- ---Izskaitļo--- - + Read/Write Lasīt/Rakstīt - + Read Only Tikai lasīt - + Write Only Tikai rakstīt - + No Access Nav piekļuves - + + + + XDG Shortcut XDG saīsne - + Directory Katalogs - + Binary Binārs - + Hidden %1 Paslēpts %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary Izvēlieties bināru - + Error Kļūda - + Invalid selection: Not a valid executable Nederīga izvēle: Nav izpildāms - + Select a directory Izvēlieties katalogu - + Select an icon Izvēlieties ikonu - + Images (%1);; All Files (*) Attēli (%1);; Visi faili (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Mapes: - - + + Files: Faili: - + Calculating... Aprēķina... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mk.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mk.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mk.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mk.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mn.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mn.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mn.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mn.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ms.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ms.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ms.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ms.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mt.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mt.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mt.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_mt.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nb.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nb.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nb.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nb.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nl.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nl.ts index b46aa12b..eddb5bdc 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nl.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_nl.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Bestandsinformatie - + Owner: Eigenaar: - + Group: Groep: - + Permissions: Rechten: - + Created: Gecreëerd op: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Let op: de creatietijd van een bestand kan recenter zijn dan de bewerktijd als de bestandsrechten onlangs gewijzigd zijn. - + Last Modified: Laatst gewijzigd: - + Type: Soort: - + MimeType: Mimetype: - + File Size: Bestandsgrootte: - - - Edit Shortcut - Sneltoets bewerken + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Werkmap: - + Use startup notification Opstartmelding gebruiken - + Icon: Pictogram: - + Command: Opdracht: - + Comment: Opmerking: - + Run in terminal Uitvoeren in een terminalvenster - + Name: Naam: - + Options Opties - - No Icon - Geen pictogram - - - - Save - Opslaan - - - - Close - Sluiten - - - + ---Calculating--- ---Bezig met berekenen--- - + Read/Write Lezen/Schrijven - + Read Only Alleen-lezen - + Write Only Alleen-schrijven - + No Access Geen toegang - + + + + XDG Shortcut XDG-sneltoets - + Directory Map - + Binary Uitvoerbaar bestand - + Hidden %1 Verborgen %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary Selecteer een uitvoerbaar bestand - + Error Fout - + Invalid selection: Not a valid executable Ongeldige selectie: ongeldig uitvoerbaar bestand - + Select a directory Selecteer een map - + Select an icon Selecteer een pictogram - + Images (%1);; All Files (*) Afbeeldingen (%1);; Alle bestanden (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Mappen: - - + + Files: Bestanden: - + Calculating... Bezig met berekenen... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pa.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pa.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pa.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pa.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pl.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pl.ts index 4b573e43..273425d3 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pl.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pl.ts @@ -5,222 +5,319 @@ MainUI - - + + File Information Informacje o pliku - + Owner: Właściciel: - + Group: Grupa: - + Permissions: Uprawnienia: - + Created: Utworzony: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Uwaga: Jeśli uprawnienia pliku zostały ostatnio zmienione, wtedy czas utworzenia pliku oraz czas jego ostatniej modyfikacji mogą się różnić. - + Last Modified: Zmodyfikowany: - + Type: Typ: - + MimeType: Typ MIME: - + File Size: Rozmiar: - - - Edit Shortcut - Edytuj skrót + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Katalog roboczy: - + Use startup notification Powiadamianie przy uruchomieniu - + Icon: Ikona: - + Command: Polecenie: - + Comment: Komentarz: - + Run in terminal Uruchom w terminalu - + Name: Nazwa: - + Options Opcje - - No Icon - Brak ikony - - - - Save - Zapisz - - - - Close - Zamknij - - - + ---Calculating--- moze szacowanie bedzie lepsze? ---Obliczanie--- - + Read/Write odczyt/zapis - + Read Only Tylko do odczytu - + Write Only Tylko do zapisu - + No Access Brak dostępu - + + + + XDG Shortcut Skrót XDG - + Directory Katalog - + Binary Plik binarny - + Hidden %1 Ukryty %1 - + URL: URL: - + + + Save Application File Zapisz plik aplikacji - - Application Registrations (*.desktop) - Rejestracje aplikacji (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Wybierz plik binarny - + Error Błąd - + Invalid selection: Not a valid executable Nieprawidłowy wybór: To nie jest prawidłowy plik binarny - + Select a directory Wybierz katalog - + Select an icon Wybierz ikonę - + Images (%1);; All Files (*) Obrazy (%1);; Wszystkie pliki (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Katalogi: - - + + Files: Pliki: - + Calculating... Szacowanie... @@ -228,67 +325,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts index b29fc41b..7da507d6 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_pt_BR.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Informações do arquivo - + Owner: Proprietário: - + Group: Grupo: - + Permissions: Permissões: - + Created: Criado: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Nota: A data de criação de um arquivo pode ser mais recente do que a data de modificação se as permissões do arquivo foram alteradas recentemente. - + Last Modified: Última modificação: - + Type: Tipo: - + MimeType: Tipo Mime: - + File Size: Tamanho do arquivo: - - - Edit Shortcut - Editar atalho + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Dir de trabalho: - + Use startup notification Usar notificações de inicialização - + Icon: Ícone: - + Command: Comando: - + Comment: Comentário: - + Run in terminal Executar no terminal - + Name: Nome: - + Options Opções - - No Icon - Sem ícone - - - - Save - Salvar - - - - Close - Fechar - - - + ---Calculating--- ---Calculando--- - + Read/Write Leitura/Escrita - + Read Only Somente leitura - + Write Only Somente escrita - + No Access Sem acesso - + + + + XDG Shortcut Atalho XDG - + Directory Diretório - + Binary Binário - + Hidden %1 Ocultar %1 - + URL: URL: - + + + Save Application File Salvar arquivo de aplicativo - - Application Registrations (*.desktop) - Registros de aplicativos (* .desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Selecionar um binário - + Error Erro - + Invalid selection: Not a valid executable Seleção inválida: Não é um executável válido - + Select a directory Selecionar um diretório - + Select an icon Selecionar um ícone - + Images (%1);; All Files (*) Imagens (%1);; Todos os arquivos (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Pasta: - - + + Files: Arquivos: - + Calculating... Calculando... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ro.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ro.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ro.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ro.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ru.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ru.ts index d61edff4..bd6b19f0 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ru.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ru.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Информация о Файле - + Owner: Владелец: - + Group: Группа: - + Permissions: Разрешения: - + Created: Созданный: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Примечание: время создания файла может быть более позднее, чем время изменения, если права на файл были недавно изменены. - + Last Modified: Последнее изменение: - + Type: Тип: - + MimeType: MIME-тип: - + File Size: Размер файла: - - - Edit Shortcut - Изменить ссылку + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Рабочий каталог: - + Use startup notification Уведомление - + Icon: Иконка: - + Command: Команда: - + Comment: Комментарий: - + Run in terminal Запуск в терминале - + Name: Имя: - + Options Опции - - No Icon - Нет иконки - - - - Save - Сохранить - - - - Close - Закрыть - - - + ---Calculating--- ---Вычисление--- - + Read/Write Чтение/Запись - + Read Only Только чтение - + Write Only Только запись - + No Access Нет доступа - + + + + XDG Shortcut XDG ссылка - + Directory Папка - + Binary Бинарный - + Hidden %1 Скрытый %1 - + URL: URL: - + + + Save Application File Сохранить файл приложения - - Application Registrations (*.desktop) - Регистрация приложения (* .desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Выбрать бинарный - + Error Ошибка - + Invalid selection: Not a valid executable Неверный выбор: Не является выполняемым - + Select a directory Выбрать каталог - + Select an icon Выбрать иконку - + Images (%1);; All Files (*) Изображений (%1);; Все файлы (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Папки: - - + + Files: Файлы: - + Calculating... Вычисление... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sk.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sk.ts index f2ee6480..bc8c9910 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sk.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sk.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Informácia o súbore - + Owner: Vlastník: - + Group: Skupina: - + Permissions: Oprávnenie: - + Created: Vytvorené: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Poznámka: Dátum vytvorenia súboru môže byť novší ako dátum úpravy, pokiaľ sa zmenili oprávnenia k súboru. - + Last Modified: Posledná zmena: - + Type: Typ: - + MimeType: MimeType: - + File Size: Veľkosť súboru: - - - Edit Shortcut - Upraviť skratky + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Pracovný priečinok: - + Use startup notification Použiť oznámenie pri spustení - + Icon: Ikona: - + Command: Príkaz: - + Comment: Komentár: - + Run in terminal Spustiť v termináli - + Name: Meno: - + Options Voľby - - No Icon - Žiadna ikona - - - - Save - Uložiť - - - - Close - Zatvoriť - - - + ---Calculating--- --Vypocitavanie-- - + Read/Write Čítanie/Zápis - + Read Only Len na čítanie - + Write Only Len na zápis - + No Access Žiadny prístup - + + + + XDG Shortcut XDG skratka - + Directory Priečinok - + Binary Binárny - + Hidden %1 Skrytý %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary Vyberte binárny - + Error Chyba - + Invalid selection: Not a valid executable Neplatný výber: nemožno ho spustiť - + Select a directory Vyberte priečinok - + Select an icon Vyberte ikonu - + Images (%1);; All Files (*) Obrázky (%1);;Všetky súbory (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Priečinok: - - + + Files: Súbory: - + Calculating... Vypočítava sa... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sl.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sl.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sl.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sl.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sr.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sr.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sr.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sr.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sv.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sv.ts index 0bde9b12..a814c770 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sv.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sv.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Filinformation - + Owner: Ägare: - + Group: Grupp: - + Permissions: Behörigheter: - + Created: Skapad: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Obs: Tiden en fil skapades kan vara nyare än den tid filen sist ändrades om filrättigheterna ändrades nyligen. - + Last Modified: Senast ändrad: - + Type: Typ: - + MimeType: MIME-typ: - + File Size: Filstorlek: - - - Edit Shortcut - Redigera genväg + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Arbetskatalog: - + Use startup notification Använd uppstartsnotifiering - + Icon: Ikon: - + Command: Kommando: - + Comment: Kommentar: - + Run in terminal Kör i terminal - + Name: Namn: - + Options Inställningar - - No Icon - Ingen ikon - - - - Save - Spara - - - - Close - Stäng - - - + ---Calculating--- ---Beräknar--- - + Read/Write Läs/Skriv - + Read Only Skrivskyddad - + Write Only Endast skriva - + No Access Ingen åtkomst - + + + + XDG Shortcut XDG Genväg - + Directory Katalog - + Binary Binär - + Hidden %1 Dold %1 - + URL: URL: - + + + Save Application File Spara programfil - - Application Registrations (*.desktop) - Applikationsregistreringar (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary Välj en binär - + Error Fel - + Invalid selection: Not a valid executable Ogiltigt val: Inte giltig körbar fil - + Select a directory Välj en katalog - + Select an icon Välj en ikon - + Images (%1);; All Files (*) Bilder (%1);; Alla filer (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Mappar: - - + + Files: Filer: - + Calculating... Beräknar... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sw.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sw.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sw.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_sw.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ta.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ta.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ta.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_ta.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tg.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tg.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tg.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tg.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_th.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_th.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_th.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_th.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tr.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tr.ts index 0bbceba7..7e17be0f 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tr.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_tr.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Dosya Bilgisi - + Owner: Sahibi: - + Group: Grup: - + Permissions: İzinler: - + Created: Oluşturulma: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Not: Dosya izinleri yakın zamanda değiştirildiyse, dosyanın oluşturulma zamanı değiştirilme zamanından daha yeni olabilir. - + Last Modified: Son Değiştirme: - + Type: Tür: - + MimeType: MimTürü: - + File Size: Dosya Boyutu: - - - Edit Shortcut - Kısayolu Düzenle + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Çalışma Dizini: - + Use startup notification Başlangıç bildirimi kullan - + Icon: Simge: - + Command: Komut: - + Comment: Açıklama: - + Run in terminal Uçbirimde çalıştır - + Name: Ad: - + Options Seçenekler - - No Icon - Simge Yok - - - - Save - Kaydet - - - - Close - Kapat - - - + ---Calculating--- ---Hesaplanıyor--- - + Read/Write Oku/Yaz - + Read Only Salt Okunur - + Write Only Salt Yazılır - + No Access Erişim yok - + + + + XDG Shortcut XDG Kısayolu - + Directory Dizin - + Binary İkili - + Hidden %1 Gizli %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary Bir ikili seç - + Error Hata - + Invalid selection: Not a valid executable Geçersiz seçim: Geçerli bir yürütülebilir değil - + Select a directory Bir dizin seç - + Select an icon Bir simge seç - + Images (%1);; All Files (*) Görüntüler (%1);; Tüm Dosyalar (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Klasörler: - - + + Files: Dosyalar: - + Calculating... Hesaplanıyor... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uk.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uk.ts index fd19ed3f..38fc5596 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uk.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uk.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information Інформація про файл - + Owner: Власник: - + Group: Група: - + Permissions: Права доступу: - + Created: Створено: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. Примітка: час створення файлу може бути більш пізній, ніж час зміни, якщо права на файл були недавно змінені. - + Last Modified: Дата зміни: - + Type: Тип: - + MimeType: Mime-тип: - + File Size: Розмір файлу: - - - Edit Shortcut - Редагувати скорочення + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + + + + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + - + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: Робоча тека: - + Use startup notification Повідомлення - + Icon: Піктограма: - + Command: Команда: - + Comment: Коментар: - + Run in terminal Виконати в терміналі - + Name: Ім'я: - + Options Параметри - - No Icon - Без піктограми - - - - Save - Зберегти - - - - Close - Закрити - - - + ---Calculating--- --- Обчислення --- - + Read/Write Читання/запис - + Read Only Лише для читання - + Write Only Лише запис - + No Access Немає доступу - + + + + XDG Shortcut XDG адреса - + Directory Тека - + Binary Двійковий - + Hidden %1 Прихований %1 - + URL: URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary Вибрати бінарний - + Error Помилка - + Invalid selection: Not a valid executable Некоректний вибір: Не є виконуваним - + Select a directory Виберіть каталог - + Select an icon Вибрати піктограму - + Images (%1);; All Files (*) Зображень (%1);; Всі файли (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: Папки: - - + + Files: Файли: - + Calculating... Обчислення... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uz.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uz.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uz.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_uz.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_vi.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_vi.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_vi.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_vi.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts index 4c0220d6..9e5ce80c 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_CN.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information 文件信息 - + Owner: 所有者: - + Group: 组: - + Permissions: 权限: - + Created: 创建日期: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. 注: 如果最近更改过文件权限,那文件的创建时间可能比修改时间更晚。 - + Last Modified: 最后修改: - + Type: 类型: - + MimeType: MIME 类型: - + File Size: 文件大小: - - - Edit Shortcut - 编辑快捷方式 + + + Advanced + + + + + ZFS Pool: + + + + + Property + + + + + Value + + + + + Source + + + + + Snapshot + + + + + Date Created + + + + + Date Modified + - + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + Working Dir: 工作目录: - + Use startup notification 使用启动通知 - + Icon: 图标: - + Command: 命令: - + Comment: 注释: - + Run in terminal 在终端中运行 - + Name: 名称: - + Options 选项 - - No Icon - 无图标 - - - - Save - 保存 - - - - Close - 关闭 - - - + ---Calculating--- ---计算中--- - + Read/Write 读/写 - + Read Only 只读 - + Write Only 只写 - + No Access 无访问权 - + + + + XDG Shortcut XDG 快捷方式 - + Directory 目录 - + Binary 二进制文件 - + Hidden %1 隐藏 %1 - + URL: URL: - + + + Save Application File 保存应用程序文件 - - Application Registrations (*.desktop) - 应用注册 (*.desktop) + + + + XDG Shortcuts (*.desktop) + - + Select a binary 选择一个程序 - + Error 错误 - + Invalid selection: Not a valid executable 无效选择: 不是可执行文件 - + Select a directory 选择目录 - + Select an icon 选择图标 - + Images (%1);; All Files (*) 图像 (%1);; 所有文件 (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: 目录: - - + + Files: 文件: - + Calculating... 计算中... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_HK.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zh_TW.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zu.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zu.ts index 0d2ad9fc..8cc7f636 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zu.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_zu.ts @@ -5,221 +5,318 @@ MainUI - - + + File Information - + Owner: - + Group: - + Permissions: - + Created: - + Note: The time a file was created might be more recent than the time modified if the file permissions were changed recently. - + Last Modified: - + Type: - + MimeType: - + File Size: - - - Edit Shortcut + + + Advanced - - Working Dir: + + ZFS Pool: - - Use startup notification + + Property - Icon: + Value - - Command: + + Source - - Comment: + + Snapshot - - Run in terminal + + Date Created - - Name: + + Date Modified - - Options + + File + + + + + Save As + + + + + Open File + + + + + Ctrl+O + + + + + Quit + + + + + Ctrl+Q + + + + + Save Shortcut + + + + + Ctrl+S + + + + + Local Shortcut + + + + + Register Shortcut + + + + + Open Directory + + + + + New Shortcut + + + + + Working Dir: + + + + + Use startup notification + + + + + Icon: + + + + + Command: - - No Icon + + Comment: - - Save + + Run in terminal - - Close + + Name: - + + Options + + + + ---Calculating--- - + Read/Write - + Read Only - + Write Only - + No Access - + + + + XDG Shortcut - + Directory - + Binary - + Hidden %1 - + URL: - + + + Save Application File - - Application Registrations (*.desktop) + + + + XDG Shortcuts (*.desktop) - + Select a binary - + Error - + Invalid selection: Not a valid executable - + Select a directory - + Select an icon - + Images (%1);; All Files (*) - - + + Valid Settings + + + + + Invalid Settings + + + + + Folders: - - + + Files: - + Calculating... @@ -227,67 +324,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts index c39affbf..dcc7dfca 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Ограничен достъп) - - + + New Document Нов документ - - - + + + Name: Име: - + Error Creating Document Грешка при създаване на документа - + The document could not be created. Please ensure that you have the proper permissions. Документа не може да бъде създаден. Моля, уверете се, че разполагате с необходимите права. - + New Directory Нова директория - - - + + + Invalid Name Неправилно име - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл или директория с това име вече съществува! Моля, изберете друго име. - + Error Creating Directory Грешка при създаване на директория - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Директорията не може да бъде създадена. Моля, уверете се, че разполагате с необходимите права да променяте текущата директория. - + Current Текуща - + Create... - + File Файл - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Контролни суми на файла: - + Missing Utility Липсващ инструмент - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Инструментът "lumina-fileinfo" не може да бъде намерен на системата. Моля, първо го инсталирайте. - + Open Отваряне - + Rename... Преименуване... - + Cut Selection Изрязване на избраното - + Copy Selection Копиране на избраното - + Paste Поставяне - + Delete Selection Изтриване на избраното @@ -1214,67 +1214,67 @@ New Location: %2 XDGDesktopList - + Multimedia Мултимедия - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts index bcf3719f..9630cbd2 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts @@ -188,194 +188,194 @@ Vista de dues columnes - + (Limited Access) (Accés limitat) - - + + New Document Document nou - - - + + + Name: Nom: - + Error Creating Document Error en crear el document - + The document could not be created. Please ensure that you have the proper permissions. No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. - + New Directory Directori nou - - - + + + Invalid Name El nom no és vàlid - + File Operations Operacions de fitxers - + Auto-Extract Extreu automàticament - + Directory Operations Operacions de directoris - + Other... Altres... - + Loading... Carregant... - - - + + + A file or directory with that name already exists! Please pick a different name. Ja existeix un fitxer o un directori amb este mateix nom, utilitzeu-ne un altre. - + Error Creating Directory Error en crear el directori - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. - + Current Actual - + Create... Crea... - + File Fitxer - + Directory Directori - + Application Launcher Llançador d'aplicacions - + Launch... Obre... - + Terminal Terminal - + SlideShow Presentació - + Multimedia Player Reproductor multimèdia - + Open with... Obre amb... - + View Files... Mostra els fitxers... - + Checksums Sumes de verificació - + Properties Propietats - + File Checksums: Sumes de verificació del fitxer: - + Missing Utility Utilitat no present - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. - + Open Obre - + Rename... Reanomena... - + Cut Selection Talla la selecció - + Copy Selection Copia la selecció - + Paste Enganxa - + Delete Selection Suprimeix la selecció @@ -1214,67 +1214,67 @@ Localització nova: %2 XDGDesktopList - + Multimedia Multimèdia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts index 2adb8520..dfb0c254 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts @@ -188,194 +188,194 @@ Pohled se dvěma sloupci - + (Limited Access) (Omezený přístup) - - + + New Document Nový dokument - - - + + + Name: Název: - + Error Creating Document Chyba při vytváření dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokument se nepodařilo vytvořit. Ověřte že máte potřebná oprávnění. - + New Directory Nová složka - - - + + + Invalid Name Neplatný název - + File Operations Operace se soubory - + Auto-Extract Automatické rozbalení - + Directory Operations Operace se složkami - + Other... Ostatní… - + Loading... Načítání… - - - + + + A file or directory with that name already exists! Please pick a different name. Soubor nebo složka se stejným názvem už existuje! Použijte jiný. - + Error Creating Directory Chyba při vytváření složky - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Složku se nepodařilo vytvořit. Ověřte že máte potřebná oprávnění k úpravám ve stávající složce. - + Current Stávající - + Create... Vytvořit… - + File Soubor - + Directory Složka - + Application Launcher Spouštěč aplikací - + Launch... Spustit… - + Terminal Terminál - + SlideShow Promítání - + Multimedia Player Přehrávač - + Open with... Otevřít s… - + View Files... Zobrazit soubory... - + Checksums Kontrolní součty - + Properties Vlastnosti - + File Checksums: Kontrolní součty souborů: - + Missing Utility Chybějící nástroj - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. - + Open Otevřít - + Rename... Přejmenovat… - + Cut Selection Vyjmout výběr - + Copy Selection Kopírovat výběr - + Paste Vložit - + Delete Selection Smazat výběr @@ -1214,67 +1214,67 @@ Nové umístění: %2 XDGDesktopList - + Multimedia Multimédia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts index 4e44fbf2..2f591c05 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts @@ -188,194 +188,194 @@ Dobbeltkolonnevisning - + (Limited Access) (begrænset adgang) - - + + New Document Nyt dokument - - - + + + Name: Navn: - + Error Creating Document Kunne ikke oprette dokument - + The document could not be created. Please ensure that you have the proper permissions. Dokumentet kunne ikke oprettes. Sørg venligst for at du har de korrekte tilladelser. - + New Directory Ny mappe - - - + + + Invalid Name Ugyldigt navn - + File Operations Filhandlinger - + Auto-Extract Automatisk udpakning - + Directory Operations Mappehandlinger - + Other... Andet... - + Loading... Indlæser ... - - - + + + A file or directory with that name already exists! Please pick a different name. En fil eller mappe med det samme navn eksisterer allerede. Vælg venligst et andet navn. - + Error Creating Directory Fejl ved oprettelse af mappe - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Mappen kunne ikke oprettes. Sørg venligst for at du har de fornødne tilladelser til at ændre den aktuelle mappe. - + Current Aktuelle - + Create... Opret ... - + File Fil - + Directory Mappe - + Application Launcher Programstarter - + Launch... Start ... - + Terminal Terminal - + SlideShow Diasshow - + Multimedia Player Multimedieafspiller - + Open with... Åbn med... - + View Files... Vis filer ... - + Checksums Tjeksummer - + Properties Egenskaber - + File Checksums: Fil-tjeksummer: - + Missing Utility Manglende redskab - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Kunne ikke finde "lumina-fileinfo"-redskabet på systemet. Installér det venligst først. - + Open Åbn - + Rename... Omdøb ... - + Cut Selection Klip valgte - + Copy Selection Kopiér valgte - + Paste Indsæt - + Delete Selection Slet valgte @@ -1214,67 +1214,67 @@ Ny placering: %2 XDGDesktopList - + Multimedia Multimedie - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts index 12a38e93..b41e3b66 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts @@ -189,194 +189,194 @@ Doppelspaltenansicht - + (Limited Access) (Beschränkter Zugriff) - - + + New Document Neues Dokument - - - + + + Name: Name: - + Error Creating Document Fehler beim Erstellen des Dokuments - + The document could not be created. Please ensure that you have the proper permissions. Das Dokument konnte nicht erstellt werden. Bitte stelle sicher, dass du die korrekten Dateirechte hast. - + New Directory Neues Verzeichnis - - - + + + Invalid Name Ungültiger Name - + File Operations Dateioperationen - + Auto-Extract - + Directory Operations Verzeichnisoperationen - + Other... - + Loading... Ladevorgang... - - - + + + A file or directory with that name already exists! Please pick a different name. Eine Datei oder ein Ordner mit diesem Namen existiert bereits! Bitte einen neuen Namen auswählen. - + Error Creating Directory Fehler beim Erstellen des Verzeichnisses - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Das Verzeichnis konnte nicht erstellt werden. Bitte sicherstellen, dass du die nötigen Rechte zum modifizieren des Verzeichnisses hast. - + Current Aktuell - + Create... Erstellen... - + File Datei - + Directory Verzeichnis - + Application Launcher Anwendungsstarter - + Launch... Starten... - + Terminal Terminal - + SlideShow - + Multimedia Player Multimedia-Abspieler - + Open with... - + View Files... Dateien ansehen... - + Checksums Prüfsummen - + Properties Eigenschaften - + File Checksums: Datei-Prüfsummen - + Missing Utility Fehlendes Dienstprogramm - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Das "lumina-fileinfo" Dienstprogramm konnte nicht gefunden werden. Bitte erst installieren. - + Open Öffnen - + Rename... Umbenennen … - + Cut Selection Auswahl ausschneiden - + Copy Selection Auswahl kopieren - + Paste Einfügen - + Delete Selection Auswahl löschen @@ -1215,67 +1215,67 @@ Neue Position: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts index cab8c065..f807d373 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: Όνομα: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Μη έγκυρο όνομα - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File Αρχείο - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts index 6202ce7a..6d5b0218 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Limited Access) - - + + New Document New Document - - - + + + Name: Name: - + Error Creating Document Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. The document could not be created. Please ensure that you have the proper permissions. - + New Directory New Directory - - - + + + Invalid Name Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Current - + Create... - + File File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: File Checksums: - + Missing Utility Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Open - + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection @@ -1214,67 +1214,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts index a7dfe78f..94ddedf3 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Limited Access) - - + + New Document New Document - - - + + + Name: Name: - + Error Creating Document Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. The document could not be created. Please ensure that you have the proper permissions. - + New Directory New Directory - - - + + + Invalid Name Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Current - + Create... - + File File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: File Checksums: - + Missing Utility Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Open - + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection @@ -1214,67 +1214,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts index b0e7a352..cb8c4bae 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts @@ -188,194 +188,194 @@ Vista de columna doble - + (Limited Access) (Acceso Limitado) - - + + New Document Nuevo Documento - - - + + + Name: Nombre: - + Error Creating Document Error Al Crear El Documento - + The document could not be created. Please ensure that you have the proper permissions. El documento no pudo ser creado. Por favor, asegúrese de tener los permisos requeridos. - + New Directory Nuevo Directorio - - - + + + Invalid Name Nombre No Válido - + File Operations Operaciones de archivo - + Auto-Extract Auto-Extraer - + Directory Operations Operaciones de directorio - + Other... Otro... - + Loading... Cargando... - - - + + + A file or directory with that name already exists! Please pick a different name. Un archivo o directorio con ese nombre ya existe! Por favor use un nombre diferente. - + Error Creating Directory Error al Crear el Directorio - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. EL directorio no pudo ser creado. Por favor asegúrese de tener los permisos requeridos para modificar el directorio actual. - + Current Actual - + Create... Crear... - + File Archivo - + Directory Directorio - + Application Launcher Aplicación Iniciador - + Launch... Iniciar... - + Terminal Terminal - + SlideShow Presentación - + Multimedia Player Reproductor Multimedia - + Open with... Abrir con... - + View Files... Ver archivos... - + Checksums Suma de verificación - + Properties Propiedades - + File Checksums: Suma de Verificación del Archivo: - + Missing Utility Utilería Faltante - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. La utilería "lumina-fileinfo" no se puede encontrar en el sistema. Por favor instálelo primero. - + Open Abrir - + Rename... Renombrar... - + Cut Selection Cortar Selección - + Copy Selection Copiar Selección - + Paste Pegar - + Delete Selection Eliminar Selección @@ -1214,67 +1214,67 @@ Ubicación Nueva: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts index e0d22943..45847c77 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Piiratud ligipääs) - - + + New Document Uus dokument - - - + + + Name: Nimi: - + Error Creating Document Viga dokumendi loomisel - + The document could not be created. Please ensure that you have the proper permissions. Dokumenti ei õnnestunud luua. Veendu, et selleks on olemas vastavad load. - + New Directory Uus kaust - - - + + + Invalid Name Vigane nimi - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Sama nimega fail või kaust on juba olemas. Palun kasuta mõnda teist nime. - + Error Creating Directory Viga kausta loomisel - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Kausta ei õnnestunud luua. Veendu, et selleks on olemas vastavad load. - + Current Praegune - + Create... - + File Fail - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Faili kontrollsummad: - + Missing Utility Puuduv tööriist - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Programmi "lumina-fileinfo" ei leitud. Palun paigalda see. - + Open Ava - + Rename... Nimeta ümber... - + Cut Selection Lõika valik - + Copy Selection Kopeeri valik - + Paste Aseta - + Delete Selection Kustuta valik @@ -1214,67 +1214,67 @@ Uus asukoht: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts index 54400caa..1cd6de09 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: Izena: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Izen baliogabea - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts index a431b362..d7db5446 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Rajallinen käyttöoikeus) - - + + New Document Uusi asiakirja - - - + + + Name: Nimi: - + Error Creating Document Virhe luotaessa asiakirjaa - + The document could not be created. Please ensure that you have the proper permissions. Asiakirjaa ei voitu luoda. Varmista, että oikeutesi ovat riittävät. - + New Directory Uusi kansio - - - + + + Invalid Name Virheellinen nimi - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Saman niminen tiedosto tai kansio on jo olemassa! Valitse toinen nimi. - + Error Creating Directory Virhe luotaessa kansiota - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Kansiota ei voitu luoda. Varmista, että sinulla on tarvittavat käyttöoikeudet nykyisen kansion muokkaamiseksi. - + Current Nykyinen - + Create... - + File Tiedosto - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Tiedoston tarkistussummat: - + Missing Utility Puuttuva työkalu - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. ”lumina-fileinfo”-työkalua ei löytynyt järjestelmästä. Asenna se ensin. - + Open Avaa - + Rename... Muuta nimeä… - + Cut Selection Leikkaa valinta - + Copy Selection Kopioi valinta - + Paste Liitä - + Delete Selection Poista valinta @@ -1214,67 +1214,67 @@ Uusi sijainti: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts index ffd4db08..c28f5421 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Accès limité) - - + + New Document Nouveau document - - - + + + Name: Nom: - + Error Creating Document Erreur à la création du document - + The document could not be created. Please ensure that you have the proper permissions. Le document ne peut pas être créé. Assurez vous d'avoir les permissions adéquates. - + New Directory Nouveau répertoire - - - + + + Invalid Name Nom invalide - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Un fichier ou répertoire du même nom existe déjà. Veuillez utiliser un autre nom. - + Error Creating Directory Erreur à la création du répertoire - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Le répertoire ne peut pas être créé. Veuillez vous assurer d'avoir les permissions adéquates pour modifier le répertoire actuel. - + Current Actuel - + Create... - + File Fichier - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Somme de Contrôle de Fichier: - + Missing Utility Utilitaires manquant - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. L'utilitaire "lumina-fileinfo" est introuvable. Veuillez l'installer. - + Open Ouvrir - + Rename... Renommer... - + Cut Selection Couper la sélection - + Copy Selection Copier la sélection - + Paste Coller - + Delete Selection Supprimer la sélection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimédia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts index 6d09647f..7e46607f 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts @@ -189,194 +189,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: שם: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory ספרייה חדשה - - - + + + Invalid Name שם לא חוקי - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File קובץ - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: סכומי ביקורת קובץ: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open פתח - + Rename... שנה שם... - + Cut Selection גזור בחירה - + Copy Selection העתק בחירה - + Paste הדבק - + Delete Selection מחק בחירה @@ -1212,67 +1212,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts index ab296089..9fe1607d 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts @@ -188,194 +188,194 @@ - + (Limited Access) (सीमित पहुँच) - - + + New Document न्य डॉक्यूमेंट - - - + + + Name: नाम: - + Error Creating Document डॉक्यूमेंट बनाने में त्रुटि - + The document could not be created. Please ensure that you have the proper permissions. डॉक्यूमेंट नहीं बनाया जा सकता - + New Directory नई डायरेक्टरी - - - + + + Invalid Name अवैध नाम - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. इस नाम की फाइल या डायरेक्टरी हले से ही मौजूद है|कृपया अलग नाम चुनें| - + Error Creating Directory डायरेक्टरी निर्माण में त्रुटि - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. ये डायरेक्टरी नहीं बनाई जा सकती | कृपया पहले सुनिश्चित कर लीजिये कि आपको तत्कालीन डायरेक्टरी में बदलाव की अनुमति है या नहीं| - + Current तत्कालीन - + Create... - + File फाइल - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: फाइल अवरोध: - + Missing Utility सुविधा उपलब्ध नहीं है - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "लुमिना-फाइलइन्फो" नमक सुविधा उपकरण में नहीं है|कृपया पहले इनस्टॉल करें| - + Open खोलें - + Rename... नाम दोबारा तय... - + Cut Selection चुने हुए भाग को कट करें - + Copy Selection चुने हुए भाग को कॉपी करें - + Paste चिपकाएँ - + Delete Selection चुने हुए भाग हो डिलीट करे @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia मल्टीमीडिया - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts index 8e910698..0a5ff4eb 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document Új dokumentum - - - + + + Name: Név: - + Error Creating Document Hiba a dokumentum létrehozásakor - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory Új könyvtár - - - + + + Invalid Name Érvénytelen név - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Egy ugyanilyen nevű fájl vagy könyvtár már létezik. Használjon más nevet. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Jelenlegi - + Create... - + File Fájl - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Fájl-ellenőrzőösszegek: - + Missing Utility Hiányzó segédeszköz - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. A "lumina-fileinfo" segédeszköz nem található. Kérem telepítse. - + Open Megnyitás - + Rename... Átnevezés… - + Cut Selection Kijelölés kivágása - + Copy Selection Kijelölés másolása - + Paste Beillesztés - + Delete Selection Kijelölés törlése @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimédia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts index bdc27e29..1873603e 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Akses terbatas) - - + + New Document Dokumen Baru - - - + + + Name: Nama: - + Error Creating Document Galat saat membuat dokument - + The document could not be created. Please ensure that you have the proper permissions. Dokumen tidak dapat dibuat. Pastikan bahwa Anda memiliki izin yang tepat. - + New Directory Direktori Baru - - - + + + Invalid Name Nama Tak Valid - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Sebuah berkas / direktori dengan nama yang sama sudah ada. Coba gunakan nama yang lain. - + Error Creating Directory Galat sewaktu membuat direktori - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Direktori tidak dapat dibuat. Pastikan bahwa Anda memiliki izin yang tepat untuk memodifikasi direktori saat ini. - + Current Saat Ini - + Create... - + File Berkas - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Checksum Berkas: - + Missing Utility Hilang Utilitas - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "Lumina-Fileinfo" utilitas tidak dapat ditemukan pada sistem. Silahkan install terlebih dahulu. - + Open Buka - + Rename... Ganti Nama… - + Cut Selection Potong data terpilih - + Copy Selection Salin pilihan - + Paste Pasta - + Delete Selection Hapus Seleksi @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts index a3a23c77..63a64a16 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts @@ -188,194 +188,194 @@ Vista colonna doppia - + (Limited Access) (Accesso Limitato) - - + + New Document Nuovo Documento - - - + + + Name: Nome: - + Error Creating Document Errore Creazione Documento - + The document could not be created. Please ensure that you have the proper permissions. Impossibile creare il documento. Verifica di avere i permessi giusti. - + New Directory Nuova Directory - - - + + + Invalid Name Nome non valido - + File Operations Operazioni su file - + Auto-Extract - + Directory Operations Operazioni su Cartella - + Other... - + Loading... Caricamento... - - - + + + A file or directory with that name already exists! Please pick a different name. Un file o una directory con questo nome esiste già! Per favore scegli un altro nome. - + Error Creating Directory Errore Creazione Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. La directory non può essere creata. Verifica di avere le autorizzazioni appropriate per modificare la directory corrente. - + Current Attuale - + Create... Creando... - + File File - + Directory Cartella - + Application Launcher Applicazione di Avvio - + Launch... Avviando... - + Terminal Terminale - + SlideShow Presentazione - + Multimedia Player Riproduttore multimediale - + Open with... - + View Files... Vista Files... - + Checksums Controlli - + Properties Proprietà - + File Checksums: Controllo dei File: - + Missing Utility Utilità mancante - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. L'utilità "lumina-fileinfo" non e' stata trovata sul sistema. Per favore installala. - + Open Apri - + Rename... Rinomina... - + Cut Selection Taglia Selezione - + Copy Selection Copia Selezione - + Paste Incolla - + Delete Selection Elimina selezione @@ -1214,67 +1214,67 @@ Nuova posizione: %2 XDGDesktopList - + Multimedia Multimediale - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts index 3ccd5e92..0e10dc66 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts @@ -191,195 +191,195 @@ 二列で表示 - + (Limited Access) (アクセス制限あり) - - + + New Document 新しいドキュメント - - - + + + Name: 名前: - + Error Creating Document ドキュメントの作成中にエラーが発生しました - + The document could not be created. Please ensure that you have the proper permissions. ドキュメントを作成できません。パーミッション設定を確認してください。 - + New Directory 新しいディレクトリー - - - + + + Invalid Name 名前が無効です - + File Operations ファイル操作 - + Auto-Extract - + Directory Operations ディレクトリー操作 - + Other... - + Loading... ロードしています... - - - + + + A file or directory with that name already exists! Please pick a different name. 同名のファイルまたはディレクトリーが存在します。別の名前にしてください。 - + Error Creating Directory ディレクトリーの作成時にエラーが発生しました - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. ディレクトリーを作成できません。現在作業中のディレクトリーの書き込みパーミッション設定を確認してください。 - + Current スナップショットが存在する場合にはスナップショット名が入る 現行版 - + Create... 作成... - + File ファイル - + Directory ディレクトリー - + Application Launcher アプリケーションの起動 - + Launch... 起動... - + Terminal 端末 - + SlideShow スライドショー - + Multimedia Player マルチメディアプレイヤー - + Open with... - + View Files... ファイルの情報を表示... - + Checksums チェックサム - + Properties プロパティー - + File Checksums: ファイルのチェックサム: - + Missing Utility ユーティリティーがありません - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" ユーティリティーはシステムに存在しません。先にインストールしてください。 - + Open 開く - + Rename... 名前の変更... - + Cut Selection 選択したアイテムを切り取る - + Copy Selection 選択したアイテムをコピー - + Paste 貼り付け - + Delete Selection 選択したアイテムを削除 @@ -1231,67 +1231,67 @@ New Location: %2 XDGDesktopList - + Multimedia マルチメディア - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts index fe4c0c2f..d1e30d0c 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts @@ -188,194 +188,194 @@ - + (Limited Access) (제한된 접근) - - + + New Document 새 문서 - - - + + + Name: 이름: - + Error Creating Document 문서 만드는 중 오류 - + The document could not be created. Please ensure that you have the proper permissions. 문서를 만들 수 없습니다. 필요한 권한이 있는지 확인하십시오. - + New Directory 새 디렉터리 - - - + + + Invalid Name 잘못된 이름 - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. 같은 이름의 파일이나 디렉터리가 이미 있습니다! 다른 이름을 선택하십시오. - + Error Creating Directory 디렉터리 만드는 중 오류 - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. 디렉터리를 만들 수 없습니다. 현재 디렉터리를 변경할 권한이 있는지 확인하십시오. - + Current 현재 - + Create... - + File 파일 - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: 파일 체크섬: - + Missing Utility 유틸리티 없음 - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" 유틸리티가 시스템에 없습니다. 먼저 설치하십시오. - + Open 열기 - + Rename... - + Cut Selection 선택 항목 삭제 - + Copy Selection 선택 항목 복사 - + Paste 붙여 넣기 - + Delete Selection 선택 항목 삭제 @@ -1214,67 +1214,67 @@ New Location: %2 XDGDesktopList - + Multimedia 멀티미디어 - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts index 91e2ad2d..524da337 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts @@ -188,194 +188,194 @@ Dvigubo stulpelio rodinys - + (Limited Access) (Prieiga apribota) - - + + New Document Naujas dokumentas - - - + + + Name: Pavadinimas: - + Error Creating Document Klaida, kuriant dokumentą - + The document could not be created. Please ensure that you have the proper permissions. Dokumento sukurti nepavyko. Įsitikinkite, kad turite tinkamus leidimus. - + New Directory Naujas katalogas - - - + + + Invalid Name Netinkamas pavadinimas - + File Operations Failų operacijos - + Auto-Extract Automatiškai išskleisti - + Directory Operations Katalogų operacijos - + Other... Kita... - + Loading... Įkeliama... - - - + + + A file or directory with that name already exists! Please pick a different name. Failas ar katalogas tokiu pavadinimu jau yra! Prašome pasirinkti kitą pavadinimą. - + Error Creating Directory Klaida, kuriant katalogą - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Katalogo sukurti nepavyko. Įsitikinkite, kad turite tinkamus leidimus tam, kad keistumėte esamą katalogą. - + Current Esamas - + Create... Sukurti... - + File Failą - + Directory Katalogą - + Application Launcher Programos leistuką - + Launch... Paleisti... - + Terminal Terminalą - + SlideShow Skaidrių rodymą - + Multimedia Player Multimedijos grotuvą - + Open with... Atverti naudojant... - + View Files... Rodyti failų... - + Checksums Kontrolinės sumos - + Properties Savybės - + File Checksums: Failų kontrolinės sumos: - + Missing Utility Trūksta paslaugų programos - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Sistemoje nepavyko rasti "lumina-fileinfo" paslaugų programos. Prašome, iš pradžių, ją įdiegti. - + Open Atverti - + Rename... Pervadinti... - + Cut Selection Iškirpti žymėjimą - + Copy Selection Kopijuoti žymėjimą - + Paste Įdėti - + Delete Selection Ištrinti žymėjimą @@ -1214,67 +1214,67 @@ Nauja vieta: %2 XDGDesktopList - + Multimedia Multimedija - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts index 2428ba71..6948d3ed 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Ierobežota piekļuve) - - + + New Document Jauns dokuments - - - + + + Name: Vārds: - + Error Creating Document Kļūda, veidojot dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokumentu nevar izveidot. Lūdzu, pārliecinieties, ka ir pietiekamas tiesības. - + New Directory Jauns katalogs - - - + + + Invalid Name Nederīgs nosaukums - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Fails vai katalogs ar šādu nosaukumu jau eksistē! Lūdzu, izvēlieties citu. - + Error Creating Directory Kļūda, veidojot katalogu - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Katalogu nevar izveidot. Lūdzu, pārliecinieties, ka ir pietiekamas tiesības modificēt pašreizējo katalogu. - + Current Pašreizējais - + Create... - + File Fails - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Failu kontrolsummas: - + Missing Utility Trūkstoša utilīta - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Utilīta "lumina-fileinfo" sistēmā nav atrodama. Lūdzu, vispirms to uzstādiet. - + Open Atvērt - + Rename... Pārsaukt... - + Cut Selection Izgriezt atlasi - + Copy Selection Kopēt atlasi - + Paste Ielīmēt - + Delete Selection Dzēst atlasi @@ -1214,67 +1214,67 @@ Jaunā atrašanās vieta: %2 XDGDesktopList - + Multimedia Multivide - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts index cc1be904..c0363e9f 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Beperkte toegang) - - + + New Document Nieuw document - - - + + + Name: Naam: - + Error Creating Document Fout bij creëren van document - + The document could not be created. Please ensure that you have the proper permissions. Het document kan niet worden gecreëerd. Zorg ervoor dat u beschikt over de juiste rechten. - + New Directory Nieuwe map - - - + + + Invalid Name Ongeldige naam - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Er bestaat al een bestand of map met dezelfde naam. Kies een andere naam. - + Error Creating Directory Fout bij creëren van map - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. De map kan niet worden gecreëerd. Zorg ervoor dat u beschikt over de juiste rechten om de huidige map te mogen bewerken. - + Current Huidig - + Create... - + File Bestand - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Bestandscontrolesommen: - + Missing Utility Ontbrekend hulpmiddel - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Het "lumina-fileinfo"-hulpmiddel kan niet worden gevonden. Installeer het. - + Open Openen - + Rename... Naam wijzigen... - + Cut Selection Selectie knippen - + Copy Selection Selectie kopiëren - + Paste Plakken - + Delete Selection Selectie verwijderen @@ -1214,67 +1214,67 @@ Nieuwe locatie: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts index c9ffa17d..052c0bf4 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts @@ -188,194 +188,194 @@ Widok kolumny podwójnej - + (Limited Access) (Ograniczony dostęp) - - + + New Document Nowy dokument - - - + + + Name: Nazwa: - + Error Creating Document Błąd podczas tworzenia dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Nie udało się utworzyć dokumentu. Upewnij się czy masz właściwe uprawnienia. - + New Directory Nowy katalog - - - + + + Invalid Name Nieprawidłowa nazwa - + File Operations Operacje na plikach - + Auto-Extract - + Directory Operations Operacje na katalogach - + Other... - + Loading... Wczytywanie... - - - + + + A file or directory with that name already exists! Please pick a different name. Plik lub katalog o podanej nazwie już istnieje! Proszę wybrać inną nazwę. - + Error Creating Directory Błąd podczas tworzenia katalogu - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Nie udało się stworzyć katalogu. Proszę upewnij się czy masz właściwe uprawnienia by móc modyfikować ten katalog. - + Current Bieżący - + Create... Utwórz... - + File Plik - + Directory Katalog - + Application Launcher Aplikację - + Launch... Uruchom... - + Terminal Terminal - + SlideShow Pokaz slajdów - + Multimedia Player Odtwarzacz multimedialny - + Open with... - + View Files... Podgląd... - + Checksums Suma kontrolna - + Properties Właściwości - + File Checksums: Suma kontrolna: - + Missing Utility Brak odpowiedniego narzędzia - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Nie udało się w systemie odnaleźć narzędzia "lumina-fileinfo". Proszę je najpierw zainstalować. - + Open Otwórz - + Rename... Zmień nazwę... - + Cut Selection Wytnij - + Copy Selection Kopiuj - + Paste Wklej - + Delete Selection Usuń @@ -1214,67 +1214,67 @@ Nowa lokalizacja: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts index 5c462489..8acc642d 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: Nome: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Nome Inválido - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File Arquivo - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Abrir - + Rename... - + Cut Selection Cortar a seleção - + Copy Selection Copiar a selecção - + Paste Colar - + Delete Selection Remover a Selecção @@ -1214,67 +1214,67 @@ Nova Localização: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts index 4020e80f..5fae7eeb 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts @@ -188,194 +188,194 @@ Vista de coluna dupla - + (Limited Access) (Acesso limitado) - - + + New Document Novo Documento - - - + + + Name: Nome: - + Error Creating Document Erro ao Criar Documento - + The document could not be created. Please ensure that you have the proper permissions. O documento não pode ser criado. Por favor, certifique-se que possuí permissão necessária. - + New Directory Novo Diretório - - - + + + Invalid Name Nome Inválido - + File Operations Operações de Arquivo - + Auto-Extract - + Directory Operations Operações de diretório - + Other... - + Loading... Carregando... - - - + + + A file or directory with that name already exists! Please pick a different name. Já existe um arquivo ou pasta com este nome. Por favor, use um nome diferente. - + Error Creating Directory Erro ao Criar Pasta - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. A pasta não pode ser criada. Por favor, verifique suas permissões. - + Current Atual - + Create... Criar... - + File Arquivo - + Directory Diretório - + Application Launcher Iniciador de Aplicativos - + Launch... Lançamento... - + Terminal Terminal - + SlideShow ApresentaçãodeSlides - + Multimedia Player Leitor Multimidia - + Open with... - + View Files... Ver arquivos... - + Checksums Verificação de somas - + Properties Propriedades - + File Checksums: Arquivo checksum: - + Missing Utility Utilitário faltando - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. O "lumina-fileinfo" não pode ser encontrado no sistema. Por favor, instale-o... - + Open Abrir - + Rename... Renomear... - + Cut Selection Cortar seleção - + Copy Selection Copiar seleção - + Paste Colar - + Delete Selection Excluir seleção @@ -1214,67 +1214,67 @@ Nova Localização: %2 XDGDesktopList - + Multimedia Multimídia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts index 4ac45482..030d2a6f 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts @@ -188,194 +188,194 @@ Вид в две колонки - + (Limited Access) (Ограниченный доступ) - - + + New Document Новый документ - - - + + + Name: Имя: - + Error Creating Document Ошибка создания документа - + The document could not be created. Please ensure that you have the proper permissions. Документ не может быть создан. Пожалуйста, убедитесь, что у вас есть соответствующие права. - + New Directory Новый каталог - - - + + + Invalid Name Недопустимое имя - + File Operations Операции с файлами - + Auto-Extract - + Directory Operations Операции с директориями - + Other... - + Loading... Загрузка... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл или каталог с таким именем уже существует! Пожалуйста, выберите другое имя. - + Error Creating Directory Ошибка создания каталога - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Каталог не может быть создан. Пожалуйста, убедитесь, что у вас есть соответствующие права, чтобы изменить текущий каталог. - + Current Текущий - + Create... Созание... - + File Файл - + Directory Директория - + Application Launcher Загрузчик приложений - + Launch... Загрузка... - + Terminal Терминал - + SlideShow Слайд шоу - + Multimedia Player Мультимедийный плеер - + Open with... - + View Files... Просмотр файлов... - + Checksums Контрольная сумма - + Properties Свойства - + File Checksums: Контрольные суммы файла: - + Missing Utility Утилита не найдена - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Утилита "Lumina-FileInfo" не может быть найдена в системе. Пожалуйста, установите ее в первую очередь. - + Open Открыть - + Rename... Переименовать... - + Cut Selection Вырезать выделенное - + Copy Selection Копировать выделенное - + Paste Вставить - + Delete Selection Удалить выделенное @@ -1213,67 +1213,67 @@ New Location: %2 XDGDesktopList - + Multimedia Мультимедиа - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts index 691e2413..2f9cdafd 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Limitovaný prístup) - - + + New Document Nový dokument - - - + + + Name: Meno: - + Error Creating Document Chyba pri vytvorení dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokument nie je možné vytvoriť. Uistite sa, či máté dostatočné práva. - + New Directory Nový priečinok - - - + + + Invalid Name Neplatné meno - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Súbor alebo adresár s takým istým názvom už existuje. Prosím, použite iný názov. - + Error Creating Directory Chyba pri vytváraní adresára - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Priečinok nemôže byť vytvorený. Prosím uistite sa, či máte dostatočné práva na úpravu aktuálneho adresára. - + Current Aktuálny - + Create... - + File Súbor - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Kontrolný súčet súboru - + Missing Utility Chýbajú utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" utility nie je možné nájsť v systéme. Prosím najprv ju nainštalujte. - + Open Otvoriť - + Rename... - + Cut Selection Vystrihnúť výber - + Copy Selection Kopírovať označené - + Paste Vložiť - + Delete Selection Zmazať výber @@ -1214,67 +1214,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimédiá - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts index 35940ec0..a951dc38 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Begränsad tillgång) - - + + New Document Nytt dokument - - - + + + Name: Namn: - + Error Creating Document Fel när dokument skulle skapas - + The document could not be created. Please ensure that you have the proper permissions. Detta dokument kunde inte skapas. Se till att du har rätt behörigheter. - + New Directory Ny katalog - - - + + + Invalid Name Ogiltigt namn - + File Operations Fil operationer - + Auto-Extract - + Directory Operations Katalog operationer - + Other... - + Loading... Laddar... - - - + + + A file or directory with that name already exists! Please pick a different name. En fil med samma namn finns redan. Använd ett annat namn. - + Error Creating Directory Fel vid skapande av katalog - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Denna katalogen kunde inte skapas. Se till att du har rätt behörigheter att modifera den aktuella katalogen. - + Current Aktuell - + Create... Skapar... - + File Fil - + Directory Katalog - + Application Launcher - + Launch... Startar... - + Terminal Terminal - + SlideShow - + Multimedia Player Multimedia spelare - + Open with... - + View Files... Visa filer... - + Checksums - + Properties Egenskaper - + File Checksums: Filkontrollsummor: - + Missing Utility Saknar Verktyg - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-Fileinfo" verktyget kunde inte hittas på systemet. Installera det först. - + Open Öppna - + Rename... Byt namn... - + Cut Selection Klipp markering - + Copy Selection Kopiera markering - + Paste Klistra in - + Delete Selection Ta bort markering @@ -1214,67 +1214,67 @@ Ny Plats: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts index 4cbe9ccc..2d849c35 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Sınırlı Erişim) - - + + New Document Yeni Belge - - - + + + Name: Ad: - + Error Creating Document Belge Oluşturmada Hata - + The document could not be created. Please ensure that you have the proper permissions. Belge oluşturulamadı. Lütfen uygun izinlere sahip olduğunuza emin olun. - + New Directory Yeni Dizin - - - + + + Invalid Name Geçersiz Ad - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Aynı adda bir dosya ya da dizin zaten mevcut! Lütfen farklı bir ad seçin. - + Error Creating Directory Dizin Oluşturmada Hata - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Dizin oluşturulamadı. Lütfen geçerli dizinde değişiklik yapmak için uygun izinlere sahip olduğunuza emin olun. - + Current Geçerli - + Create... - + File Dosya - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Dosya Sağlama Toplamları: - + Missing Utility Eksik Gereç - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Sistemde "lumina-fileinfo" gereci bulunamadı. Lütfen önce gereci yükleyin. - + Open - + Rename... Yeniden adlandır... - + Cut Selection Seçimi Kes - + Copy Selection Seçimi Kopyala - + Paste Yapıştır - + Delete Selection Seçimi Sil @@ -1214,67 +1214,67 @@ Yeni Konum: %2 XDGDesktopList - + Multimedia Multimedya - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts index b7ef7f8d..68f5e58b 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts @@ -188,194 +188,194 @@ - + (Limited Access) (Обмежений доступ) - - + + New Document Новий документ - - - + + + Name: Ім'я: - + Error Creating Document Помилка створення документа - + The document could not be created. Please ensure that you have the proper permissions. Цей документ не може бути створений. Будь ласка, впевніться, що у вас є відповідні права. - + New Directory Новий каталог - - - + + + Invalid Name Некоректна назва - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл або каталог з таким іменем вже існує! Будь ласка, виберіть інше ім'я. - + Error Creating Directory Помилка створення каталогу - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Каталог не може бути створений. Будь ласка, впевніться, що у вас є відповідні права, щоб змінити поточний каталог. - + Current Поточний - + Create... - + File Файл - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Контрольні суми файлів: - + Missing Utility Утиліта не знайдена - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Утиліта "Lumina-FileInfo" не може бути знайдена в системі. Будь ласка, встановіть її в першу чергу. - + Open Відкрити - + Rename... Перейменувати... - + Cut Selection Вирізати обране - + Copy Selection Копіювати виділене - + Paste Вставити - + Delete Selection Видалити виділене @@ -1214,67 +1214,67 @@ New Location: %2 XDGDesktopList - + Multimedia Мультимедіа - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts index 665d9fd5..80a0a27c 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts @@ -190,194 +190,194 @@ 双列视图 - + (Limited Access) (有限访问) - - + + New Document 新文档 - - - + + + Name: 名称: - + Error Creating Document 建立文档出错 - + The document could not be created. Please ensure that you have the proper permissions. 无法建立文档。请确定您有适当的权限。 - + New Directory 新目录 - - - + + + Invalid Name 无效的名称 - + File Operations 文件操作 - + Auto-Extract - + Directory Operations 目录操作 - + Other... - + Loading... 载入中... - - - + + + A file or directory with that name already exists! Please pick a different name. 已有相同名字的文件或目录存在!请选择一个不同的名字。 - + Error Creating Directory 创建目录错误 - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. 目录无法被建立。请检查您有更改当前目录的适当权限。 - + Current 当前 - + Create... 创建... - + File 文件 - + Directory 目录 - + Application Launcher 应用程序启动器 - + Launch... 启动... - + Terminal 终端 - + SlideShow 幻灯片 - + Multimedia Player 多媒体播放器 - + Open with... - + View Files... 查看文件... - + Checksums 校验 - + Properties 属性 - + File Checksums: 文件校验值: - + Missing Utility 缺少的工具 - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. 无法在您的系统里找到 "lumina-fileinfo" 工具。请先安装它。 - + Open 打开 - + Rename... 重命名... - + Cut Selection 剪切选中部分 - + Copy Selection 复制选中部分 - + Paste 粘贴 - + Delete Selection 删除选中部分 @@ -1224,67 +1224,67 @@ New Location: %2 XDGDesktopList - + Multimedia 多媒体 - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts index fe0d752a..f861bab6 100644 --- a/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts +++ b/src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts @@ -188,194 +188,194 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Auto-Extract - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection @@ -1211,67 +1211,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_af.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_af.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_af.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_af.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_az.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_az.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_az.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_az.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts index de983a8f..cf821280 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Име - + Size Размер - + Type Тип - + Date Modified Дата на промяна - + Date Created Дата на създаване - + Capacity: %1 Вместимост: %1 - + Files: %1 (%2) Файлове: %1 (%2) - + Files: %1 - + Dirs: %1 Директории: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Форма - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Назад - - + + Go back to previous directory Връщане към предишната директория - + Up Нагоре - - + + Go to parent directory Отиване в родителската директория - + Home Домашна директория - - + + Go to home directory Отиване в домашната директория - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Ограничен достъп) - - + + New Document Нов документ - - - + + + Name: Име: - + Error Creating Document Грешка при създаване на документа - + The document could not be created. Please ensure that you have the proper permissions. Документа не може да бъде създаден. Моля, уверете се, че разполагате с необходимите права. - + New Directory Нова директория - - - + + + Invalid Name Неправилно име - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл или директория с това име вече съществува! Моля, изберете друго име. - + Error Creating Directory Грешка при създаване на директория - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Директорията не може да бъде създадена. Моля, уверете се, че разполагате с необходимите права да променяте текущата директория. - + Current Текуща - + Create... - + File Файл - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Контролни суми на файла: - + Missing Utility Липсващ инструмент - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Инструментът "lumina-fileinfo" не може да бъде намерен на системата. Моля, първо го инсталирайте. - + Open Отваряне - + Rename... Преименуване... - + Cut Selection Изрязване на избраното - + Copy Selection Копиране на избраното - + Paste Поставяне - + Delete Selection Изтриване на избраното + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ New Location: %2 Вникване - + Shift+Left Shift+Лява стрелка - + Shift+Right Shift+Дясна стрелка @@ -628,377 +653,382 @@ New Location: %2 Файл - + View Изглед - + View Mode Режим на изгледа - + Bookmarks Отметки - + External Devices Външни устройства - + Git - + New Tab - + New Browser Нов браузър - + Show Image Previews - + Search Directory... Търсене в директория... - + Increase Icon Size Увеличаване размера на иконите - + Decrease Icon Size Намаляване размера на иконите - + Larger Icons По-големи икони - + Ctrl++ Ctrl++ - + Smaller Icons По-малки икони - + Ctrl+- Ctrl+- - + New Window Нов прозорец - + Ctrl+N Ctrl+Н - + Add Bookmark Добавяне на отметка - + Ctrl+D Ctrl+Д - + Delete Selection Изтриване на избраното - + Del Del - + Refresh Опресняване - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+Т - + Exit Изход - + Ctrl+Q Ctrl+Q - + &Preferences &Настройки - + Show Hidden Files Показване на скритите файлове - + Scan for Devices Сканиране за устройства - + Manage Bookmarks Управление на отметки - + Show Action Buttons Показване на бутоните за действия - + Ctrl+F Ctrl+F - + Detailed List Подробен списък - + Basic List Основен списък - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Преименуване... - + F2 F2 - + Cut Selection Изрязване на избраното - + Copy Selection Копиране на избраното - + Paste Поставяне - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Невалидни директории - + The following directories are invalid and could not be opened: Следните директории са невалидни и не могат да бъдат отворени: - + CTRL+B - + CTRL+E - + Root Root - + %1 (Type: %2) %1 (Тип: %2) - + Filesystem: %1 Файлова система: %1 - + New Bookmark Нова отметка - + Name: Име: - + Invalid Name Невалидно име - + This bookmark name already exists. Please choose another. Отметка с това име вече съществува. Моля, изберете друго. - + Git Repository Status - + Multimedia Мултимедия - + Slideshow Слайдшоу - + Items to be removed: Елементи, които ще бъдат премахнати: - + Verify Quit Потвърдете затварянето - + Ctrl+H Ctrl+П - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Имате отворени множество подпрозорци. Сигурни ли сте, че искате да ги затворите? - + Verify Removal Потвърждение на премахването - + WARNING: This will permanently delete the file(s) from the system! ПРЕДУПРЕЖДЕНИЕ: Това завинаги ще изтрие файловете от системата! - + Are you sure you want to continue? Сигурни ли сте, че искате да продължите? - + Rename File Преименуване на файл - + New Name: Ново име: - + Overwrite File? Презаписване на файла? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Съществуващ файл със същото име ще бъде заменен. Сигурни ли сте, че искате да продължите? @@ -1214,67 +1244,67 @@ New Location: %2 XDGDesktopList - + Multimedia Мултимедия - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts index 68d32404..94a09e10 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nom - + Size Mida - + Type Tipus - + Date Modified Data de modificació - + Date Created Data de creació - + Capacity: %1 Capacitat: %1 - + Files: %1 (%2) Fitxers: %1 (%2) - + Files: %1 Fitxers: %1 - + Dirs: %1 Directoris: %1 - + No Directory Contents No hi ha contingut de directori @@ -115,270 +115,295 @@ Formulari - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Augmenta la mida de les icones - + Decrease Icon Sizes Disminueix la mida de les icones - + Back Enrere - - + + Go back to previous directory Torna al directori anterior - + Up Amunt - - + + Go to parent directory Vés al directori principal - + Home Inici - - + + Go to home directory Vés al directori principal - + Menu Menú - + Select Action Seleccioneu l'acció - + Single Column Columna simple - + Single column view Vista d'una columna - + Dual Column Dues columnes - + Dual Column View Vista de dues columnes - + (Limited Access) (Accés limitat) - - + + New Document Document nou - - - + + + Name: Nom: - + Error Creating Document Error en crear el document - + The document could not be created. Please ensure that you have the proper permissions. No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. - + New Directory Directori nou - - - + + + Invalid Name El nom no és vàlid - - File Operations - Operacions de fitxers + + Open Current Dir in a Terminal + - - Auto-Extract - Extreu automàticament + + File Operations + Operacions de fitxers - + Directory Operations Operacions de directoris - + Other... Altres... - + Loading... Carregant... - - - + + + A file or directory with that name already exists! Please pick a different name. Ja existeix un fitxer o un directori amb este mateix nom, utilitzeu-ne un altre. - + Error Creating Directory Error en crear el directori - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. - + Current Actual - + Create... Crea... - + File Fitxer - + Directory Directori - + Application Launcher Llançador d'aplicacions - + Launch... Obre... - - Terminal - Terminal - - - + SlideShow Presentació - + Multimedia Player Reproductor multimèdia - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... Obre amb... - + View Files... Mostra els fitxers... - + Checksums Sumes de verificació - + Properties Propietats - + File Checksums: Sumes de verificació del fitxer: - + Missing Utility Utilitat no present - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. - + Open Obre - + Rename... Reanomena... - + Cut Selection Talla la selecció - + Copy Selection Copia la selecció - + Paste Enganxa - + Delete Selection Suprimeix la selecció + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Localització nova: %2 Vista - + Shift+Left Majúscules + Esquerra - + Shift+Right Majúscula + Dreta @@ -628,377 +653,382 @@ Localització nova: %2 Fitxer - + View Vista - + View Mode Mode de visualització - + Bookmarks Adreces d'interès - + External Devices Dispositius externs - + Git Git - + New Tab Pestanya nova - + New Browser Navegador nou - + Show Image Previews Mostra previsualitzacions d'imatges - + Search Directory... Directori de cerca... - + Increase Icon Size Augmenta la mida de les icones - + Decrease Icon Size Redueix la mida de les icones - + Larger Icons Icones més grosses - + Ctrl++ Ctrl++ - + Smaller Icons Icones més petites - + Ctrl+- Ctrl+- - + New Window Finestra nova - + Ctrl+N Ctrl+N - + Add Bookmark Afegeix una adreça d'interès - + Ctrl+D Ctrl+D - + Delete Selection Suprimeix la selecció - + Del Supr - + Refresh Actualitza - + Close Tab Tanca la pestanya - + Repo Status Estat del repositori - + Clone Repository Clona el repositori - + Show Directory Tree Window Mostra la finestra de l'arbre de directoris - + Show Directory Tree Pane Mostra el plafó de l'arbre de directoris - + Ctrl+P Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Surt - + Ctrl+Q Ctrl+Q - + &Preferences &Preferències - + Show Hidden Files Mostra els fitxers ocults - + Scan for Devices Explora si hi ha dispositius - + Manage Bookmarks Gestiona les adreces d'interès / marcadors - + Show Action Buttons Mostra els botons d'acció - + Ctrl+F Ctrl+F - + Detailed List Llista detallada - + Basic List Llista bàsica - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Reanomena... - + F2 F2 - + Cut Selection Talla la selecció - + Copy Selection Copia la selecció - + Paste Enganxa - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Directoris no vàlids - + The following directories are invalid and could not be opened: Els directoris següents no són vàlids i no s'han pogut obrir: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root Arrel - + %1 (Type: %2) %1 (Tipus: %2) - + Filesystem: %1 Sistema de fitxers: %1 - + New Bookmark Adreça d'interès nova - + Name: Nom: - + Invalid Name El nom no és vàlid - + This bookmark name already exists. Please choose another. Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. - + Git Repository Status Estat del repositori Git - + Multimedia Multimèdia - + Slideshow Projecció de diapositives - + Items to be removed: Ítems per suprimir: - + Verify Quit Verifiqueu la sortida - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Teniu diverses pestanyes obertes. Esteu segur que voleu sortir? - + Verify Removal Verificació de la supressió - + WARNING: This will permanently delete the file(s) from the system! AVÍS: això suprimirà permanentment el fitxer o fitxers del sistema! - + Are you sure you want to continue? Esteu segur que voleu continuar? - + Rename File Reanomena el fitxer - + New Name: Nom nou: - + Overwrite File? Voleu sobreescriure el fitxer? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Se substituirà un fitxer existent amb el mateix nom. Esteu segur que voleu continuar? @@ -1214,67 +1244,67 @@ Localització nova: %2 XDGDesktopList - + Multimedia Multimèdia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts index 2ec6178a..c999c698 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Název - + Size Velikost - + Type Typ - + Date Modified Datum změny - + Date Created Datum vytvoření - + Capacity: %1 Kapacita: %1 - + Files: %1 (%2) Soubory: %1 (%2) - + Files: %1 Soubory: %1 - + Dirs: %1 Složky: %1 - + No Directory Contents Složka nic neobsahuje @@ -115,270 +115,295 @@ Formulář - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Zvětšit velikost ikon - + Decrease Icon Sizes Zmenšit velikost ikon - + Back Zpět - - + + Go back to previous directory Zpět do předchozí složky - + Up Nahoru - - + + Go to parent directory Přejít do nadřazené složky - + Home Domů - - + + Go to home directory Přejít do domovské složky - + Menu Nabídka - + Select Action Vybrat akci - + Single Column Jeden sloupec - + Single column view Pohled s jedním sloupcem - + Dual Column Dva sloupce - + Dual Column View Pohled se dvěma sloupci - + (Limited Access) (Omezený přístup) - - + + New Document Nový dokument - - - + + + Name: Název: - + Error Creating Document Chyba při vytváření dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokument se nepodařilo vytvořit. Ověřte že máte potřebná oprávnění. - + New Directory Nová složka - - - + + + Invalid Name Neplatný název - - File Operations - Operace se soubory + + Open Current Dir in a Terminal + - - Auto-Extract - Automatické rozbalení + + File Operations + Operace se soubory - + Directory Operations Operace se složkami - + Other... Ostatní… - + Loading... Načítání… - - - + + + A file or directory with that name already exists! Please pick a different name. Soubor nebo složka se stejným názvem už existuje! Použijte jiný. - + Error Creating Directory Chyba při vytváření složky - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Složku se nepodařilo vytvořit. Ověřte že máte potřebná oprávnění k úpravám ve stávající složce. - + Current Stávající - + Create... Vytvořit… - + File Soubor - + Directory Složka - + Application Launcher Spouštěč aplikací - + Launch... Spustit… - - Terminal - Terminál - - - + SlideShow Promítání - + Multimedia Player Přehrávač - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... Otevřít s… - + View Files... Zobrazit soubory... - + Checksums Kontrolní součty - + Properties Vlastnosti - + File Checksums: Kontrolní součty souborů: - + Missing Utility Chybějící nástroj - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. - + Open Otevřít - + Rename... Přejmenovat… - + Cut Selection Vyjmout výběr - + Copy Selection Kopírovat výběr - + Paste Vložit - + Delete Selection Smazat výběr + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Nové umístění: %2 Náhled - + Shift+Left Shift+šipka vlevo - + Shift+Right Shift+šipka vpravo @@ -628,377 +653,382 @@ Nové umístění: %2 Soubor - + View Zobrazit - + View Mode Režim zobrazení - + Bookmarks Záložky - + External Devices Vnější zařízení - + Git Git - + New Tab Nová karta - + New Browser Nový prohlížeč - + Show Image Previews Zobrazovat náhledy obrázků - + Search Directory... Prohledat složku… - + Increase Icon Size Zvětšit velikost ikon - + Decrease Icon Size Zmenšit velikost ikon - + Larger Icons Větší ikony - + Ctrl++ Ctrl++ - + Smaller Icons Menší ikony - + Ctrl+- Ctrl+- - + New Window Nové okno - + Ctrl+N Ctrl+N - + Add Bookmark Přidat záložku - + Ctrl+D Ctrl+D - + Delete Selection Smazat výběr - + Del Del - + Refresh Načíst znovu - + Close Tab Zavřít kartu - + Repo Status Stav repozitáře - + Clone Repository Klonovat repozitář - + Show Directory Tree Window Zobrazit okno s adresářovým stromem - + Show Directory Tree Pane Zobrazit podokno s adresářovým stromem - + Ctrl+P Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Ukončit - + Ctrl+Q Ctrl+Q - + &Preferences &Předvolby - + Show Hidden Files Zobrazit skryté soubory - + Scan for Devices Hledat zařízení - + Manage Bookmarks Spravovat záložky - + Show Action Buttons Zobrazit tlačítka akcí - + Ctrl+F Ctrl+F - + Detailed List Podrobný seznam - + Basic List Základní seznam - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Přejmenovat… - + F2 F2 - + Cut Selection Vyjmout výběr - + Copy Selection Kopírovat výběr - + Paste Vložit - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Neplatné složky - + The following directories are invalid and could not be opened: Následující složky nejsou platné a nepodařilo se je otevřít: - + CTRL+B Ctrl+B - + CTRL+E CTRL+E - + Root Kořen - + %1 (Type: %2) %1 (typ: %2) - + Filesystem: %1 Souborový systém: %1 - + New Bookmark Nová záložka - + Name: Název: - + Invalid Name Neplatný název - + This bookmark name already exists. Please choose another. Záložka s tímto názvem už existuje. Zvolte jiný. - + Git Repository Status Stav Git repozitáře - + Multimedia Multimédia - + Slideshow Prezentace - + Items to be removed: Soubory k odstranění: - + Verify Quit Ověřit ukončení - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Máte otevřeno několik karet. Opravdu si přejete skončit? - + Verify Removal Ověřit odstranění - + WARNING: This will permanently delete the file(s) from the system! Varování: Tímto budou soubory trvale odstraněny ze systému! - + Are you sure you want to continue? Opravdu chcete pokračovat? - + Rename File Přejmenovat soubor - + New Name: Nový název: - + Overwrite File? Přepsat soubor? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Stávající soubor se stejným názvem bude nahrazen. Opravdu chcete pokračovat? @@ -1214,67 +1244,67 @@ Nové umístění: %2 XDGDesktopList - + Multimedia Multimédia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts index a086ad6a..c7c108f4 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Navn - + Size Størrelse - + Type Type - + Date Modified Ændringsdato - + Date Created Oprettelsesdato - + Capacity: %1 Kapacitet: %1 - + Files: %1 (%2) Filer: %1 (%2) - + Files: %1 Filer: %1 - + Dirs: %1 Mapper: %1 - + No Directory Contents Intet mappeindhold @@ -115,270 +115,295 @@ Formular - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Større ikoner - + Decrease Icon Sizes Mindre ikoner - + Back Tilbage - - + + Go back to previous directory Gå tilbage til den forrige mappe - + Up Op - - + + Go to parent directory Til overmappe - + Home Hjem - - + + Go to home directory Gå til hjemmemappe - + Menu Menu - + Select Action Vælg handling - + Single Column Enkel kolonne - + Single column view Enkelkolonnevisning - + Dual Column Dobbeltkolonne - + Dual Column View Dobbeltkolonnevisning - + (Limited Access) (begrænset adgang) - - + + New Document Nyt dokument - - - + + + Name: Navn: - + Error Creating Document Kunne ikke oprette dokument - + The document could not be created. Please ensure that you have the proper permissions. Dokumentet kunne ikke oprettes. Sørg venligst for at du har de korrekte tilladelser. - + New Directory Ny mappe - - - + + + Invalid Name Ugyldigt navn - - File Operations - Filhandlinger + + Open Current Dir in a Terminal + - - Auto-Extract - Automatisk udpakning + + File Operations + Filhandlinger - + Directory Operations Mappehandlinger - + Other... Andet... - + Loading... Indlæser ... - - - + + + A file or directory with that name already exists! Please pick a different name. En fil eller mappe med det samme navn eksisterer allerede. Vælg venligst et andet navn. - + Error Creating Directory Fejl ved oprettelse af mappe - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Mappen kunne ikke oprettes. Sørg venligst for at du har de fornødne tilladelser til at ændre den aktuelle mappe. - + Current Aktuelle - + Create... Opret ... - + File Fil - + Directory Mappe - + Application Launcher Programstarter - + Launch... Start ... - - Terminal - Terminal - - - + SlideShow Diasshow - + Multimedia Player Multimedieafspiller - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... Åbn med... - + View Files... Vis filer ... - + Checksums Tjeksummer - + Properties Egenskaber - + File Checksums: Fil-tjeksummer: - + Missing Utility Manglende redskab - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Kunne ikke finde "lumina-fileinfo"-redskabet på systemet. Installér det venligst først. - + Open Åbn - + Rename... Omdøb ... - + Cut Selection Klip valgte - + Copy Selection Kopiér valgte - + Paste Indsæt - + Delete Selection Slet valgte + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Ny placering: %2 Indsigt - + Shift+Left Skift+Venstre - + Shift+Right Skift+Højre @@ -628,377 +653,382 @@ Ny placering: %2 Fil - + View Vis - + View Mode Visningstilstand - + Bookmarks Bogmærker - + External Devices Eksterne enheder - + Git Git - + New Tab Nyt faneblad - + New Browser Ny browser - + Show Image Previews Vis forhåndsvisninger af billeder - + Search Directory... Søg i bibliotek ... - + Increase Icon Size Større ikoner - + Decrease Icon Size Mindre ikoner - + Larger Icons Større ikoner - + Ctrl++ Ctrl++ - + Smaller Icons Mindre ikoner - + Ctrl+- Ctrl+- - + New Window Nyt vindue - + Ctrl+N Ctrl+N - + Add Bookmark Tilføj bogmærke - + Ctrl+D Ctrl+D - + Delete Selection Slet valgte - + Del Del - + Refresh Genopfrisk - + Close Tab Luk faneblad - + Repo Status Arkivstatus - + Clone Repository Klon arkiv - + Show Directory Tree Window Vis vindue med mappetræ - + Show Directory Tree Pane Vis rude med mappetræ - + Ctrl+P Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Afslut - + Ctrl+Q Ctrl+Q - + &Preferences &Præferencer - + Show Hidden Files Vis skjulte filer - + Scan for Devices Skan efter enheder - + Manage Bookmarks Håndter bogmærker - + Show Action Buttons Vis handlingsknapper - + Ctrl+F Ctrl+F - + Detailed List Detaljeret liste - + Basic List Basisliste - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Omdøb ... - + F2 F2 - + Cut Selection Klip valgte - + Copy Selection Kopiér valgte - + Paste Indsæt - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Ugyldige mapper - + The following directories are invalid and could not be opened: De følgende mapper er ugyldige og kan ikke åbnes: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root Rod - + %1 (Type: %2) %1 (type: %2) - + Filesystem: %1 Filsystem: %1 - + New Bookmark Nyt bogmærke - + Name: Navn: - + Invalid Name Ugyldigt navn - + This bookmark name already exists. Please choose another. Dette bogmærkenavn findes allerede. Vælg venligst et andet. - + Git Repository Status Status for Git-arkiv - + Multimedia Multimedie - + Slideshow Diasshow - + Items to be removed: Elementer som skal fjernes: - + Verify Quit Bekræft afslut - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Du har adskillige åbne faneblade. Er du sikker på, at du vil afslutte? - + Verify Removal Bekræft fjernelse - + WARNING: This will permanently delete the file(s) from the system! ADVARSEL: Dette vil slette filen/filerne permanent fra systemet! - + Are you sure you want to continue? Er du sikker på, at du vil fortsætte? - + Rename File Omdøb fil - + New Name: Nyt navn: - + Overwrite File? Overskriv fil? - + An existing file with the same name will be replaced. Are you sure you want to proceed? En eksisterende fil med der samme navn vil blive erstattet. Er du sikker på, at du vil fortsætte? @@ -1214,67 +1244,67 @@ Ny placering: %2 XDGDesktopList - + Multimedia Multimedie - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_de.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_de.ts index 40e54e96..b11a6e43 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_de.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_de.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Name - + Size Größe - + Type Typ - + Date Modified Änderungsdatum - + Date Created Erstellungsdatum - + Capacity: %1 Kapazität: %1 - + Files: %1 (%2) Dateien: %1 (%2) - + Files: %1 Dateien: %1 - + Dirs: %1 Verzeichnisse: %1 - + No Directory Contents Kein Verzeichnisinhalt @@ -116,270 +116,295 @@ Form - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Symbolgrößen erhöhen - + Decrease Icon Sizes Symbolgrößen verringern - + Back Zurück - - + + Go back to previous directory Zurück zum vorherigen Verzeichnis - + Up hoch - - + + Go to parent directory Zum übergeordneten Verzeichnis wechseln - + Home Persönlicher Ordner - - + + Go to home directory Gehe zum persönlichen Verzeichnis - + Menu Menü - + Select Action Aktion auswählen - + Single Column - + Single column view Einzelspaltenansicht - + Dual Column Doppelspalte - + Dual Column View Doppelspaltenansicht - + (Limited Access) (Beschränkter Zugriff) - - + + New Document Neues Dokument - - - + + + Name: Name: - + Error Creating Document Fehler beim Erstellen des Dokuments - + The document could not be created. Please ensure that you have the proper permissions. Das Dokument konnte nicht erstellt werden. Bitte stelle sicher, dass du die korrekten Dateirechte hast. - + New Directory Neues Verzeichnis - - - + + + Invalid Name Ungültiger Name - - File Operations - Dateioperationen + + Open Current Dir in a Terminal + - - Auto-Extract - + + File Operations + Dateioperationen - + Directory Operations Verzeichnisoperationen - + Other... - + Loading... Ladevorgang... - - - + + + A file or directory with that name already exists! Please pick a different name. Eine Datei oder ein Ordner mit diesem Namen existiert bereits! Bitte einen neuen Namen auswählen. - + Error Creating Directory Fehler beim Erstellen des Verzeichnisses - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Das Verzeichnis konnte nicht erstellt werden. Bitte sicherstellen, dass du die nötigen Rechte zum modifizieren des Verzeichnisses hast. - + Current Aktuell - + Create... Erstellen... - + File Datei - + Directory Verzeichnis - + Application Launcher Anwendungsstarter - + Launch... Starten... - - Terminal - Terminal - - - + SlideShow - + Multimedia Player Multimedia-Abspieler - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... - + View Files... Dateien ansehen... - + Checksums Prüfsummen - + Properties Eigenschaften - + File Checksums: Datei-Prüfsummen - + Missing Utility Fehlendes Dienstprogramm - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Das "lumina-fileinfo" Dienstprogramm konnte nicht gefunden werden. Bitte erst installieren. - + Open Öffnen - + Rename... Umbenennen … - + Cut Selection Auswahl ausschneiden - + Copy Selection Auswahl kopieren - + Paste Einfügen - + Delete Selection Auswahl löschen + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -614,12 +639,12 @@ Neue Position: %2 Einsicht - + Shift+Left Umschalt+Links - + Shift+Right Umschalt+Rechts @@ -629,377 +654,382 @@ Neue Position: %2 Datei - + View Ansicht - + View Mode Ansichtsmodus - + Bookmarks Lesezeichen - + External Devices Externe Geräte - + Git Git - + New Tab Neue Registerkarte - + New Browser Neuer Browser - + Show Image Previews - + Search Directory... Im Verzeichnis suchen... - + Increase Icon Size Symbolgröße vergrößern - + Decrease Icon Size Symbolgröße verkleinern - + Larger Icons Größere Symbole - + Ctrl++ Strg++ - + Smaller Icons Kleinere Symbole - + Ctrl+- Strg+- - + New Window Neues Fenster - + Ctrl+N Strg+N - + Add Bookmark Lesezeichen hinzufügen - + Ctrl+D Strg+D - + Delete Selection Auswahl löschen - + Del Entf - + Refresh Aktualisieren - + Close Tab Registerkarte schließen - + Repo Status Repositoriumsstatus - + Clone Repository Repositorium klonen - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Strg+T - + Exit Beenden - + Ctrl+Q Strg+Q - + &Preferences &Persönliche Einstellungen - + Show Hidden Files Versteckte Dateien anzeigen - + Scan for Devices Nach Geräten suchen - + Manage Bookmarks Lesezeichen verwalten - + Show Action Buttons Schaltknöpfe anzeigen - + Ctrl+F Strg+F - + Detailed List Detailansicht - + Basic List Einfache Liste - + Ctrl+W Strg+W - + F5 F5 - + Ctrl+C Strg+C - + Rename... Umbenennen … - + F2 F2 - + Cut Selection Auswahl ausschneiden - + Copy Selection Auswahl kopieren - + Paste Einfügen - + Ctrl+V Strg+V - + Ctrl+X Strg+X - + Invalid Directories Ungültiges Verzeichnis - + The following directories are invalid and could not be opened: Die folgenden Verzeichnis sind ungültig und können nicht geöffnet werden: - + CTRL+B STRG+B - + CTRL+E STRG+E - + Root Basisverzeichnis - + %1 (Type: %2) %1 (Typ: %2) - + Filesystem: %1 Dateisystem: %1 - + New Bookmark Neues Lesezeichen - + Name: Name: - + Invalid Name Ungültiger Name - + This bookmark name already exists. Please choose another. Der Name des Lesezeichens ist bereits vorhanden. Bitte einen anderen Namen wählen. - + Git Repository Status Status des Git Repositorys - + Multimedia Multimedia - + Slideshow Präsentation - + Items to be removed: Elemente, welche entfernt werden sollen: - + Verify Quit Beenden bestätigen - + Ctrl+H Strg+H - + Ctrl+L Strg+L - + You have multiple tabs open. Are you sure you want to quit? Es sind mehrere Reiter offen. Soll wirklich beendet werden? - + Verify Removal Entfernen überprüfen - + WARNING: This will permanently delete the file(s) from the system! ACHTUNG: Dies wird die Datei(en) dauerhaft vom System entfernen! - + Are you sure you want to continue? Sind Sie sicher, dass Sie fortsetzen möchten? - + Rename File Datei umbenennen - + New Name: Neuer Name: - + Overwrite File? Datei überschreiben? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Eine vorhandene Datei mit dem gleichen Namen wird ersetzt. Fortfahren? @@ -1215,67 +1245,67 @@ Neue Position: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_el.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_el.ts index a74f1ff7..37d674e8 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_el.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_el.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Όνομα - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: Όνομα: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Μη έγκυρο όνομα - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File Αρχείο - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 Αρχείο - + View Προβολή - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks Διαχείριση σελιδοδεικτών - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: Όνομα: - + Invalid Name Μη έγκυρο όνομα - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_AU.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_AU.ts index 32e73d19..0f6e6829 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_AU.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Name - + Size Size - + Type Type - + Date Modified Date Modified - + Date Created Date Created - + Capacity: %1 Capacity: %1 - + Files: %1 (%2) Files: %1 (%2) - + Files: %1 - + Dirs: %1 Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Form - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Back - - + + Go back to previous directory Go back to previous directory - + Up Up - - + + Go to parent directory Go to parent directory - + Home Home - - + + Go to home directory Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Limited Access) - - + + New Document New Document - - - + + + Name: Name: - + Error Creating Document Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. The document could not be created. Please ensure that you have the proper permissions. - + New Directory New Directory - - - + + + Invalid Name Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Current - + Create... - + File File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: File Checksums: - + Missing Utility Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Open - + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ New Location: %2 Insight - + Shift+Left Shift+Left - + Shift+Right Shift+Right @@ -628,377 +653,382 @@ New Location: %2 File - + View View - + View Mode View Mode - + Bookmarks Bookmarks - + External Devices External Devices - + Git - + New Tab - + New Browser New Browser - + Show Image Previews - + Search Directory... Search Directory... - + Increase Icon Size Increase Icon Size - + Decrease Icon Size Decrease Icon Size - + Larger Icons Larger Icons - + Ctrl++ Ctrl++ - + Smaller Icons Smaller Icons - + Ctrl+- Ctrl+- - + New Window New Window - + Ctrl+N Ctrl+N - + Add Bookmark Add Bookmark - + Ctrl+D Ctrl+D - + Delete Selection Delete Selection - + Del Del - + Refresh Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Exit - + Ctrl+Q Ctrl+Q - + &Preferences &Preferences - + Show Hidden Files Show Hidden Files - + Scan for Devices Scan for Devices - + Manage Bookmarks Manage Bookmarks - + Show Action Buttons Show Action Buttons - + Ctrl+F Ctrl+F - + Detailed List Detailed List - + Basic List Basic List - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Rename... - + F2 F2 - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Invalid Directories - + The following directories are invalid and could not be opened: The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root Root - + %1 (Type: %2) %1 (Type: %2) - + Filesystem: %1 Filesystem: %1 - + New Bookmark New Bookmark - + Name: Name: - + Invalid Name Invalid Name - + This bookmark name already exists. Please choose another. This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia Multimedia - + Slideshow Slideshow - + Items to be removed: Items to be removed: - + Verify Quit Verify Quit - + Ctrl+H Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? You have multiple tabs open. Are you sure you want to quit? - + Verify Removal Verify Removal - + WARNING: This will permanently delete the file(s) from the system! WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? Are you sure you want to continue? - + Rename File Rename File - + New Name: New Name: - + Overwrite File? Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1214,67 +1244,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_GB.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_GB.ts index 9edf3707..f3551abf 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_GB.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Name - + Size Size - + Type Type - + Date Modified Date Modified - + Date Created Date Created - + Capacity: %1 Capacity: %1 - + Files: %1 (%2) Files: %1 (%2) - + Files: %1 - + Dirs: %1 Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Form - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Back - - + + Go back to previous directory Go back to previous directory - + Up Up - - + + Go to parent directory Go to parent directory - + Home Home - - + + Go to home directory Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Limited Access) - - + + New Document New Document - - - + + + Name: Name: - + Error Creating Document Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. The document could not be created. Please ensure that you have the proper permissions. - + New Directory New Directory - - - + + + Invalid Name Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Current - + Create... - + File File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: File Checksums: - + Missing Utility Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Open - + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ New Location: %2 Insight - + Shift+Left Shift+Left - + Shift+Right Shift+Right @@ -628,377 +653,382 @@ New Location: %2 File - + View View - + View Mode View Mode - + Bookmarks Bookmarks - + External Devices External Devices - + Git - + New Tab - + New Browser New Browser - + Show Image Previews - + Search Directory... Search Directory... - + Increase Icon Size Increase Icon Size - + Decrease Icon Size Decrease Icon Size - + Larger Icons Larger Icons - + Ctrl++ Ctrl++ - + Smaller Icons Smaller Icons - + Ctrl+- Ctrl+- - + New Window New Window - + Ctrl+N Ctrl+N - + Add Bookmark Add Bookmark - + Ctrl+D Ctrl+D - + Delete Selection Delete Selection - + Del Del - + Refresh Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Exit - + Ctrl+Q Ctrl+Q - + &Preferences &Preferences - + Show Hidden Files Show Hidden Files - + Scan for Devices Scan for Devices - + Manage Bookmarks Manage Bookmarks - + Show Action Buttons Show Action Buttons - + Ctrl+F Ctrl+F - + Detailed List Detailed List - + Basic List Basic List - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Rename... - + F2 F2 - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Invalid Directories - + The following directories are invalid and could not be opened: The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root Root - + %1 (Type: %2) %1 (Type: %2) - + Filesystem: %1 Filesystem: %1 - + New Bookmark New Bookmark - + Name: Name: - + Invalid Name Invalid Name - + This bookmark name already exists. Please choose another. This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia Multimedia - + Slideshow Slideshow - + Items to be removed: Items to be removed: - + Verify Quit Verify Quit - + Ctrl+H Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? You have multiple tabs open. Are you sure you want to quit? - + Verify Removal Verify Removal - + WARNING: This will permanently delete the file(s) from the system! WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? Are you sure you want to continue? - + Rename File Rename File - + New Name: New Name: - + Overwrite File? Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1214,67 +1244,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_ZA.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_ZA.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_en_ZA.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_es.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_es.ts index 09bfef7d..b69dfc5b 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_es.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_es.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nombre - + Size Tamaño - + Type Tipo - + Date Modified Fecha de Modificación - + Date Created Fecha de Creación - + Capacity: %1 Capacidad: %1 - + Files: %1 (%2) Archivos: %1 (%2) - + Files: %1 Archivos: %1 - + Dirs: %1 Directorios: %1 - + No Directory Contents No Directorio Contentos @@ -115,270 +115,295 @@ Formulario - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Aumentar los tamaños de iconos - + Decrease Icon Sizes Disminuir los tamaños de iconos - + Back Atrás - - + + Go back to previous directory Ir al directorio anterior - + Up Arriba - - + + Go to parent directory Ir al directorio superior - + Home Inicio - - + + Go to home directory Ir a la carpeta personal - + Menu Menú - + Select Action Elegir acción - + Single Column Única Columna - + Single column view Vista de columna única - + Dual Column Columna doble - + Dual Column View Vista de columna doble - + (Limited Access) (Acceso Limitado) - - + + New Document Nuevo Documento - - - + + + Name: Nombre: - + Error Creating Document Error Al Crear El Documento - + The document could not be created. Please ensure that you have the proper permissions. El documento no pudo ser creado. Por favor, asegúrese de tener los permisos requeridos. - + New Directory Nuevo Directorio - - - + + + Invalid Name Nombre No Válido - - File Operations - Operaciones de archivo + + Open Current Dir in a Terminal + - - Auto-Extract - Auto-Extraer + + File Operations + Operaciones de archivo - + Directory Operations Operaciones de directorio - + Other... Otro... - + Loading... Cargando... - - - + + + A file or directory with that name already exists! Please pick a different name. Un archivo o directorio con ese nombre ya existe! Por favor use un nombre diferente. - + Error Creating Directory Error al Crear el Directorio - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. EL directorio no pudo ser creado. Por favor asegúrese de tener los permisos requeridos para modificar el directorio actual. - + Current Actual - + Create... Crear... - + File Archivo - + Directory Directorio - + Application Launcher Aplicación Iniciador - + Launch... Iniciar... - - Terminal - Terminal - - - + SlideShow Presentación - + Multimedia Player Reproductor Multimedia - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... Abrir con... - + View Files... Ver archivos... - + Checksums Suma de verificación - + Properties Propiedades - + File Checksums: Suma de Verificación del Archivo: - + Missing Utility Utilería Faltante - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. La utilería "lumina-fileinfo" no se puede encontrar en el sistema. Por favor instálelo primero. - + Open Abrir - + Rename... Renombrar... - + Cut Selection Cortar Selección - + Copy Selection Copiar Selección - + Paste Pegar - + Delete Selection Eliminar Selección + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Ubicación Nueva: %2 A la vista - + Shift+Left Shift+Izq - + Shift+Right Shift+Der @@ -628,377 +653,382 @@ Ubicación Nueva: %2 Archivo - + View Ver - + View Mode Modo de Visualización - + Bookmarks Marcadores - + External Devices Dispositivos Externos - + Git - + New Tab - + New Browser Nuevo Navegador - + Show Image Previews - + Search Directory... Buscar en el Directorio... - + Increase Icon Size Aumentar Tamaño de los Iconos - + Decrease Icon Size Disminuir Tamaño de los Iconos - + Larger Icons Iconos Grandes - + Ctrl++ Ctrl++ - + Smaller Icons Iconos Pequeños - + Ctrl+- Ctrl+- - + New Window Nueva Ventana - + Ctrl+N Ctrl+N - + Add Bookmark Añadir Marcador - + Ctrl+D Ctrl+D - + Delete Selection Eliminar Selección - + Del Supr - + Refresh Actualizar - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Salir - + Ctrl+Q Ctrl+Q - + &Preferences &Preferencias - + Show Hidden Files Mostrar Archivos Ocultos - + Scan for Devices Buscar Dispositivos - + Manage Bookmarks Administrar Marcadores - + Show Action Buttons Mostrar Botones de Acción - + Ctrl+F Ctrl+F - + Detailed List Lista Detallada - + Basic List Lista Básica - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Renombrar... - + F2 F2 - + Cut Selection Cortar Selección - + Copy Selection Copiar Selección - + Paste Pegar - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl-X - + Invalid Directories Directorios inválidos - + The following directories are invalid and could not be opened: Los siguientes directorios son inválidos y no se pueden abrir: - + CTRL+B - + CTRL+E - + Root Raíz - + %1 (Type: %2) %1 (Tipo: %2) - + Filesystem: %1 Sistema de Archivos: %1 - + New Bookmark Nuevo Marcador - + Name: Nombre: - + Invalid Name Nombre no Válido - + This bookmark name already exists. Please choose another. Este nombre de marcador ya existe. Por favor elija otro. - + Git Repository Status - + Multimedia Multimedia - + Slideshow Presentación - + Items to be removed: Elementos para remover: - + Verify Quit Verificar Salida - + Ctrl+H Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Tiene multiples pestañas abiertas. Esta seguro de que quiere salir? - + Verify Removal Verificar Eliminación - + WARNING: This will permanently delete the file(s) from the system! ADVERTENCIA: Esto eliminará permanentemente el/los archivo(s) del sistema! - + Are you sure you want to continue? ¿Está seguro de que quiere continuar? - + Rename File Renombrar Archivo - + New Name: Nombre Nuevo: - + Overwrite File? ¿Sobrescribir Archivo? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Un archivo existente con el mismo nombre será reemplazado. Está seguro de que quiere proceder? @@ -1214,67 +1244,67 @@ Ubicación Nueva: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_et.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_et.ts index 3706fd81..d1774826 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_et.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_et.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nimi - + Size Maht - + Type Tüüp - + Date Modified Muutmiskuupäev - + Date Created Loomiskuupäev - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 Kaustasid: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Tagasi - - + + Go back to previous directory Mine tagasi eelmisesse kausta - + Up Üles - - + + Go to parent directory Mine ülemkausta - + Home Kodu - - + + Go to home directory Mine kodukausta - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Piiratud ligipääs) - - + + New Document Uus dokument - - - + + + Name: Nimi: - + Error Creating Document Viga dokumendi loomisel - + The document could not be created. Please ensure that you have the proper permissions. Dokumenti ei õnnestunud luua. Veendu, et selleks on olemas vastavad load. - + New Directory Uus kaust - - - + + + Invalid Name Vigane nimi - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Sama nimega fail või kaust on juba olemas. Palun kasuta mõnda teist nime. - + Error Creating Directory Viga kausta loomisel - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Kausta ei õnnestunud luua. Veendu, et selleks on olemas vastavad load. - + Current Praegune - + Create... - + File Fail - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Faili kontrollsummad: - + Missing Utility Puuduv tööriist - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Programmi "lumina-fileinfo" ei leitud. Palun paigalda see. - + Open Ava - + Rename... Nimeta ümber... - + Cut Selection Lõika valik - + Copy Selection Kopeeri valik - + Paste Aseta - + Delete Selection Kustuta valik + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Uus asukoht: %2 Insight - + Shift+Left - + Shift+Right @@ -628,377 +653,382 @@ Uus asukoht: %2 Fail - + View Vaade - + View Mode Vaaterežiim - + Bookmarks Järjehoidjad - + External Devices Välisseadmed - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... Otsi kaustast... - + Increase Icon Size Suurenda ikooni suurust - + Decrease Icon Size Vähenda ikooni suurust - + Larger Icons Suuremad ikoonid - + Ctrl++ Ctrl++ - + Smaller Icons Väiksemad ikoonid - + Ctrl+- Ctrl+- - + New Window Uus aken - + Ctrl+N Ctrl+N - + Add Bookmark Lisa järjehoidja - + Ctrl+D Ctrl+D - + Delete Selection Kustuta valik - + Del Del - + Refresh Värskenda - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit Välju - + Ctrl+Q Ctrl+Q - + &Preferences &Eelistused - + Show Hidden Files Näita peidetud faile - + Scan for Devices Otsi seadmeid - + Manage Bookmarks Järjehoidjate haldamine - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... Nimeta ümber... - + F2 - + Cut Selection Lõika valik - + Copy Selection Kopeeri valik - + Paste Aseta - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: Nimi: - + Invalid Name Vigane nimi - + This bookmark name already exists. Please choose another. Selle nimega järjehoidja on juba olemas. Palun vali muu nimi. - + Git Repository Status - + Multimedia - + Slideshow Slaidiseanss - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? Kas soovid kindlasti jätkata? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1214,67 +1244,67 @@ Uus asukoht: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts index f6980011..b499a3b3 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Izena - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: Izena: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Izen baliogabea - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks Laster-markak kudeatu - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: Izena: - + Invalid Name Izen baliogabea - + This bookmark name already exists. Please choose another. Laster-markaren izena jadanik badago. Beste bat aukeratu. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts index f1d9de20..cdeb4246 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nimi - + Size Koko - + Type Tyyppi - + Date Modified Muokkauspäivä - + Date Created Luontipäivä - + Capacity: %1 Kapasiteetti: %1 - + Files: %1 (%2) Tiedostoja: %1 (%2) - + Files: %1 - + Dirs: %1 Kansioita: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Lomake - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Takaisin - - + + Go back to previous directory Palaa edelliseen kansioon - + Up Ylemmäs - - + + Go to parent directory Siirry yläkansioon - + Home Koti - - + + Go to home directory Siirry kotikansioon - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Rajallinen käyttöoikeus) - - + + New Document Uusi asiakirja - - - + + + Name: Nimi: - + Error Creating Document Virhe luotaessa asiakirjaa - + The document could not be created. Please ensure that you have the proper permissions. Asiakirjaa ei voitu luoda. Varmista, että oikeutesi ovat riittävät. - + New Directory Uusi kansio - - - + + + Invalid Name Virheellinen nimi - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Saman niminen tiedosto tai kansio on jo olemassa! Valitse toinen nimi. - + Error Creating Directory Virhe luotaessa kansiota - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Kansiota ei voitu luoda. Varmista, että sinulla on tarvittavat käyttöoikeudet nykyisen kansion muokkaamiseksi. - + Current Nykyinen - + Create... - + File Tiedosto - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Tiedoston tarkistussummat: - + Missing Utility Puuttuva työkalu - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. ”lumina-fileinfo”-työkalua ei löytynyt järjestelmästä. Asenna se ensin. - + Open Avaa - + Rename... Muuta nimeä… - + Cut Selection Leikkaa valinta - + Copy Selection Kopioi valinta - + Paste Liitä - + Delete Selection Poista valinta + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Uusi sijainti: %2 Näkemys - + Shift+Left Vaihto+Vasen - + Shift+Right Vaihto+Oikea @@ -628,377 +653,382 @@ Uusi sijainti: %2 Tiedosto - + View Näkymä - + View Mode Näkymätila - + Bookmarks Kirjanmerkit - + External Devices Ulkoiset laitteet - + Git - + New Tab - + New Browser Uusi selain - + Show Image Previews - + Search Directory... Etsi kansiota… - + Increase Icon Size Suurenna kuvakekokoa - + Decrease Icon Size Pienennä kuvakekokoa - + Larger Icons Suuremmat kuvakkeet - + Ctrl++ Ctrl++ - + Smaller Icons Pienemmät kuvakkeet - + Ctrl+- Ctrl+- - + New Window Uusi ikkuna - + Ctrl+N Ctrl+N - + Add Bookmark Lisää kirjanmerkki - + Ctrl+D Ctrl+D - + Delete Selection Poista valinta - + Del Del - + Refresh Päivitä - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Lopeta - + Ctrl+Q Ctrl+Q - + &Preferences &Asetukset - + Show Hidden Files Näytä piilotiedostot - + Scan for Devices Etsi laitteita - + Manage Bookmarks Kirjanmerkkien hallinta - + Show Action Buttons Näytä toimintopainikkeet - + Ctrl+F Ctrl+F - + Detailed List Yksityiskohtainen luettelo - + Basic List Yksinkertainen luettelo - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Muuta nimeä… - + F2 F2 - + Cut Selection Leikkaa valinta - + Copy Selection Kopioi valinta - + Paste Liitä - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Virheellisiä kansioita - + The following directories are invalid and could not be opened: Seuraavat kansiot ovat virheellisiä eikä niitä voi avata: - + CTRL+B - + CTRL+E - + Root Juuri - + %1 (Type: %2) %1 (tyyppi: %2) - + Filesystem: %1 Tiedostojärjestelmä: %1 - + New Bookmark Uusi kirjanmerkki - + Name: Nimi: - + Invalid Name Virheellinen nimi - + This bookmark name already exists. Please choose another. Tämän niminen kirjanmerkki on jo olemassa. Valitse toinen nimi. - + Git Repository Status - + Multimedia Multimedia - + Slideshow Kuvaesitys - + Items to be removed: Poistettavat tietueet: - + Verify Quit Vahvista lopetus - + Ctrl+H Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Useampia välilehtiä on auki. Haluatko varmasti lopettaa? - + Verify Removal Vahvista poisto - + WARNING: This will permanently delete the file(s) from the system! VAROITUS: Tämä poistaa tiedostot järjestelmästä pysyvästi! - + Are you sure you want to continue? Haluatko varmasti jatkaa? - + Rename File Muuta tiedoston nimeä - + New Name: Uusi nimi: - + Overwrite File? Korvataanko tiedosto? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Olemassa oleva saman niminen tiedosto korvataan. Haluatko varmasti jatkaa? @@ -1214,67 +1244,67 @@ Uusi sijainti: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts index 77b7ea3d..23cf1066 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nom - + Size Taille - + Type Type - + Date Modified Date de Modification - + Date Created Date de Création - + Capacity: %1 Capacité: %1 - + Files: %1 (%2) Fichiers: %1 (%2) - + Files: %1 Fichiers: %1 - + Dirs: %1 Répertoires: %1 - + No Directory Contents Pas de Contenu de Répertoire @@ -115,270 +115,295 @@ Formulaire - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Augmenter les Tailles des Icônes - + Decrease Icon Sizes Diminuer les Tailles des Icônes - + Back Retour - - + + Go back to previous directory Retour au répertoire précédent - + Up Haut - - + + Go to parent directory Aller au répertoire parent - + Home Accueil - - + + Go to home directory Aller au répertoire personnel - + Menu Menu - + Select Action Sélectionnez l'Action - + Single Column Seule Colonne - + Single column view Affichage à une seule colonne - + Dual Column - + Dual Column View - + (Limited Access) (Accès limité) - - + + New Document Nouveau document - - - + + + Name: Nom: - + Error Creating Document Erreur à la création du document - + The document could not be created. Please ensure that you have the proper permissions. Le document ne peut pas être créé. Assurez vous d'avoir les permissions adéquates. - + New Directory Nouveau répertoire - - - + + + Invalid Name Nom invalide - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Un fichier ou répertoire du même nom existe déjà. Veuillez utiliser un autre nom. - + Error Creating Directory Erreur à la création du répertoire - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Le répertoire ne peut pas être créé. Veuillez vous assurer d'avoir les permissions adéquates pour modifier le répertoire actuel. - + Current Actuel - + Create... - + File Fichier - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Somme de Contrôle de Fichier: - + Missing Utility Utilitaires manquant - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. L'utilitaire "lumina-fileinfo" est introuvable. Veuillez l'installer. - + Open Ouvrir - + Rename... Renommer... - + Cut Selection Couper la sélection - + Copy Selection Copier la sélection - + Paste Coller - + Delete Selection Supprimer la sélection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 En profondeur - + Shift+Left Maj. gauche - + Shift+Right Maj. Droite @@ -625,377 +650,382 @@ New Location: %2 Fichier - + View Regarder - + View Mode Mode d'affichage - + Bookmarks Signets - + External Devices Périphérique externe - + Git - + New Tab - + New Browser Nouveau navigateur - + Show Image Previews - + Search Directory... Répertoire de Recherche... - + Increase Icon Size Augmenter la taille de l'icône - + Decrease Icon Size Diminuer la taille de l'icône - + Larger Icons Icônes plus grands - + Ctrl++ Ctrl++ - + Smaller Icons Icônes plus petits - + Ctrl+- Ctrl+- - + New Window Nouvelle fenêtre - + Ctrl+N Ctrl+N - + Add Bookmark Ajouter un signet - + Ctrl+D Ctrl+D - + Delete Selection Supprimer la Sélection - + Del Suppr - + Refresh Actualiser - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Quitter - + Ctrl+Q Ctrl+Q - + &Preferences &Préférences - + Show Hidden Files Afficher les fichiers cachés - + Scan for Devices Rechercher les périphériques - + Manage Bookmarks Gérer les signets - + Show Action Buttons Afficher les Boutons d'action - + Ctrl+F Ctrl+F - + Detailed List Liste détaillée - + Basic List Liste basique - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Renommer... - + F2 F2 - + Cut Selection Couper la sélection - + Copy Selection Copier la sélection - + Paste Coller - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl-X - + Invalid Directories Répertoires invalides - + The following directories are invalid and could not be opened: Les répertoires suivants sont invalides et ne peuvent pas être ouverts: - + CTRL+B - + CTRL+E - + Root Superutilisateur - + %1 (Type: %2) %1 (Type: %2) - + Filesystem: %1 Système de fichiers: %1 - + New Bookmark Nouveau signet - + Name: Nom : - + Invalid Name Nom invalide - + This bookmark name already exists. Please choose another. Raccourci déjà utilisé. Veuillez choisir un autre nom. - + Git Repository Status - + Multimedia Multimédia - + Slideshow Diaporama - + Items to be removed: Elements à supprimer: - + Verify Quit Vérifier la sortie - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Des onglets sont ouverts. Etes-vous sûr de vouloir sortir? - + Verify Removal Vérifier la suppression - + WARNING: This will permanently delete the file(s) from the system! ATTENTION: Ceci supprime définitivement le(s) fichier(s) du système! - + Are you sure you want to continue? Voulez-vous vraiment continuer ? - + Rename File Renommer un fichier - + New Name: Nouveau nom: - + Overwrite File? Écraser le fichier ? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Un fichier existant avec le même nom sera remplacé. Etes-vous sûr de vouloir procéder? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimédia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr_CA.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr_CA.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_fr_CA.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_he.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_he.ts index c2bc9d7e..0703ddf5 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_he.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_he.ts @@ -58,52 +58,52 @@ BrowserWidget - + Name שם - + Size גודל - + Type טיפוס - + Date Modified תאריך שינוי - + Date Created תאריך יצירה - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -116,270 +116,295 @@ טופס - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home בית - - + + Go to home directory עבור לספריית בית - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: שם: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory ספרייה חדשה - - - + + + Invalid Name שם לא חוקי - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File קובץ - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: סכומי ביקורת קובץ: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open פתח - + Rename... שנה שם... - + Cut Selection גזור בחירה - + Copy Selection העתק בחירה - + Paste הדבק - + Delete Selection מחק בחירה + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -611,12 +636,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -626,377 +651,382 @@ New Location: %2 קובץ - + View תצוגה - + View Mode מצב תצוגה - + Bookmarks סימניות - + External Devices התקנים חיצוניים - + Git - + New Tab - + New Browser דפדפן חדש - + Show Image Previews - + Search Directory... חפש ספרייה... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection מחק בחירה - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... שנה שם... - + F2 - + Cut Selection גזור בחירה - + Copy Selection העתק בחירה - + Paste הדבק - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: שם: - + Invalid Name שם לא חוקי - + This bookmark name already exists. Please choose another. שם סימנייה זה כבר קיים. אנא בחר אחר. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1212,67 +1242,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts index 94865834..7427f4ab 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name नाम - + Size आकार - + Type प्रकार - + Date Modified तारीख बदल दी गयी है - + Date Created तारीख तय कर दी गयी है - + Capacity: %1 क्षमता: %1 - + Files: %1 (%2) फाइलें: %1 (%2) - + Files: %1 - + Dirs: %1 डायरेक्टरी:%1 - + No Directory Contents @@ -115,270 +115,295 @@ फॉर्म - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back वापस - - + + Go back to previous directory पिछली डायरेक्टरी ए वापस जाएँ - + Up ऊपर - - + + Go to parent directory मुख्य डायरेक्टरी में जाएँ - + Home होम - - + + Go to home directory होम डायरेक्टरी में जाएँ - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (सीमित पहुँच) - - + + New Document न्य डॉक्यूमेंट - - - + + + Name: नाम: - + Error Creating Document डॉक्यूमेंट बनाने में त्रुटि - + The document could not be created. Please ensure that you have the proper permissions. डॉक्यूमेंट नहीं बनाया जा सकता - + New Directory नई डायरेक्टरी - - - + + + Invalid Name अवैध नाम - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. इस नाम की फाइल या डायरेक्टरी हले से ही मौजूद है|कृपया अलग नाम चुनें| - + Error Creating Directory डायरेक्टरी निर्माण में त्रुटि - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. ये डायरेक्टरी नहीं बनाई जा सकती | कृपया पहले सुनिश्चित कर लीजिये कि आपको तत्कालीन डायरेक्टरी में बदलाव की अनुमति है या नहीं| - + Current तत्कालीन - + Create... - + File फाइल - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: फाइल अवरोध: - + Missing Utility सुविधा उपलब्ध नहीं है - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "लुमिना-फाइलइन्फो" नमक सुविधा उपकरण में नहीं है|कृपया पहले इनस्टॉल करें| - + Open खोलें - + Rename... नाम दोबारा तय... - + Cut Selection चुने हुए भाग को कट करें - + Copy Selection चुने हुए भाग को कॉपी करें - + Paste चिपकाएँ - + Delete Selection चुने हुए भाग हो डिलीट करे + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 निरीक्षण - + Shift+Left शिफ्ट+लेफ्ट - + Shift+Right शिफ्ट+राइट @@ -625,377 +650,382 @@ New Location: %2 फाइल - + View देखें - + View Mode दृश्य मोड - + Bookmarks बुकमार्क्स - + External Devices बाह्य उपकरण - + Git - + New Tab - + New Browser नया ब्राउज़र - + Show Image Previews - + Search Directory... डायरेक्टरी खोज - + Increase Icon Size चित्रों का आकार बढ़ाएं - + Decrease Icon Size चित्रों का आकार घटाएँ - + Larger Icons बड़े चित्र - + Ctrl++ कण्ट्रोल++ - + Smaller Icons छोटे चित्र - + Ctrl+- कण्ट्रोल+- - + New Window नई विंडो - + Ctrl+N कण्ट्रोल +N - + Add Bookmark बुकमार्क जोड़ें - + Ctrl+D कण्ट्रोल+D - + Delete Selection चुने हुए भाग को नष्ट करें - + Del डिलीट - + Refresh रिफ्रेश - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T कण्ट्रोल+T - + Exit निकास - + Ctrl+Q कण्ट्रोल+Q - + &Preferences &प्राथमिकताएँ - + Show Hidden Files छुपी हुई फाइलें दिखाएँ - + Scan for Devices उपकरण खोजें - + Manage Bookmarks बूक्मराक्स का प्रबंधन - + Show Action Buttons क्रिया बटन दिखाएँ - + Ctrl+F कण्ट्रोल+F - + Detailed List पूर्ण सूचि सहित - + Basic List सामान्य सूचि - + Ctrl+W कण्ट्रोल+W - + F5 F5 - + Ctrl+C कण्ट्रोल+C - + Rename... नाम दोबारा तय... - + F2 F2 - + Cut Selection चुने हुए भाग को कट करें - + Copy Selection चुने हुए भाग को कॉपी करें - + Paste स्थापित - + Ctrl+V कण्ट्रोल+V - + Ctrl+X कण्ट्रोल+X - + Invalid Directories अवैध डायरेक्टरिज़ - + The following directories are invalid and could not be opened: निम्नलिखित डायरेक्टरियाँ अवैध है और इन्हें नहीं खोला जा सकता: - + CTRL+B - + CTRL+E - + Root मुख्य - + %1 (Type: %2) %1 (प्रकार: %2) - + Filesystem: %1 फाइलसिस्टम:%1 - + New Bookmark नया बुकमार्क - + Name: नाम: - + Invalid Name अवैध नाम - + This bookmark name already exists. Please choose another. ये बुकमार्क पहले से ही मौजूद है|कृपया कोई अन्य चुने| - + Git Repository Status - + Multimedia मल्टीमीडिया - + Slideshow स्लाइड शो - + Items to be removed: हटाए जाने वाले विषय - + Verify Quit निकासी सुनिश्चित करें - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? आपने कई टैब्स खोली हुई है|क्या आप सचमुच बाहर निकलना चाहते हैं? - + Verify Removal हटाव सुनिश्चित करें - + WARNING: This will permanently delete the file(s) from the system! चेतावनी:ये आपकी फाइलों को हमेशा के लिए आपके उपकरण से नष्ट कर देगा! - + Are you sure you want to continue? क्या आप सचमुच ये प्रक्रिया जारी रखना चाहते हैं? - + Rename File फाइल का नाम दोबारा तय करें - + New Name: नया नाम - + Overwrite File? फाइल के ऊपर लिखे? - + An existing file with the same name will be replaced. Are you sure you want to proceed? इसी नाम की मौजूदा फाइल नई फाइल से बदल दी जाएगी| क्या आप सचमुच ऐसा करना चाहते हैं? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia मल्टीमीडिया - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts index c3254fca..9089c363 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Név - + Size Méret - + Type Típus - + Date Modified Módosítás dátuma - + Date Created Létrehozás dátuma - + Capacity: %1 Kapacitás: %1 - + Files: %1 (%2) Fájl: %1 (%2) - + Files: %1 - + Dirs: %1 Könyvtár: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Űrlap - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Vissza - - + + Go back to previous directory Vissza az előző könyvtárra - + Up Fel - - + + Go to parent directory Ugrás a szülő könyvtárba - + Home Saját mappa - - + + Go to home directory Ugrás a saját könyvtárba - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document Új dokumentum - - - + + + Name: Név: - + Error Creating Document Hiba a dokumentum létrehozásakor - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory Új könyvtár - - - + + + Invalid Name Érvénytelen név - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Egy ugyanilyen nevű fájl vagy könyvtár már létezik. Használjon más nevet. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Jelenlegi - + Create... - + File Fájl - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Fájl-ellenőrzőösszegek: - + Missing Utility Hiányzó segédeszköz - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. A "lumina-fileinfo" segédeszköz nem található. Kérem telepítse. - + Open Megnyitás - + Rename... Átnevezés… - + Cut Selection Kijelölés kivágása - + Copy Selection Kijelölés másolása - + Paste Beillesztés - + Delete Selection Kijelölés törlése + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 Insight - + Shift+Left Shift+balra - + Shift+Right Shift+jobbra @@ -625,377 +650,382 @@ New Location: %2 Fájl - + View Nézet - + View Mode Nézetmód - + Bookmarks Könyvjelzők - + External Devices Külső eszközök - + Git - + New Tab - + New Browser Új böngésző - + Show Image Previews - + Search Directory... - + Increase Icon Size Ikonméret növelése - + Decrease Icon Size Ikonméret csökkentése - + Larger Icons Nagyobb ikonok - + Ctrl++ Ctrl++ - + Smaller Icons Kisebb ikonok - + Ctrl+- Ctrl+- - + New Window Új ablak - + Ctrl+N Ctrl+N - + Add Bookmark Könyvjelző hozzáadása - + Ctrl+D Ctrl+D - + Delete Selection Kijelölés törlése - + Del Del - + Refresh Frissítés - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Kilépés - + Ctrl+Q Ctrl+Q - + &Preferences &Beállítások - + Show Hidden Files Rejtett fájlok megjelenítése - + Scan for Devices Eszközök keresése - + Manage Bookmarks Könyvjelzők kezelése - + Show Action Buttons Műveletgombok megjelenítése - + Ctrl+F Ctrl+F - + Detailed List Részletes lista - + Basic List Alap lista - + Ctrl+W Ctrl+W - + F5 - + Ctrl+C Ctrl+C - + Rename... Átnevezés… - + F2 - + Cut Selection Kijelölés kivágása - + Copy Selection Kijelölés másolása - + Paste Beillesztés - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl-X - + Invalid Directories Érvénytelen könyvtárak - + The following directories are invalid and could not be opened: A következő könyvtárak érvénytelenek, és nem nyithatóak meg: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) %1 (típus: %2) - + Filesystem: %1 Fájlrendszer: %1 - + New Bookmark Új könyvjelző - + Name: Név: - + Invalid Name Érvénytelen név - + This bookmark name already exists. Please choose another. Ez a könyvjelzőnév már foglalt. Válasszon másikat. - + Git Repository Status - + Multimedia Multimédia - + Slideshow Diavetítés - + Items to be removed: - + Verify Quit Kilépés megerősítése - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Több lap is meg van nyitva, biztosan ki szeretne lépni? - + Verify Removal Törlés megerősítése - + WARNING: This will permanently delete the file(s) from the system! FIGYELEM: ez véglegesen törölni fogja a fájl(oka)t! - + Are you sure you want to continue? Biztos, hogy folytatni kívánja? - + Rename File Fájl átnevezése - + New Name: Új név: - + Overwrite File? Felülírja a fájlt? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimédia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_id.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_id.ts index 0a16c863..7569c0ab 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_id.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_id.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nama - + Size Ukuran - + Type Tipe - + Date Modified Tanggal Modifikasi - + Date Created Tanggal Dibuat - + Capacity: %1 Kapasitas: %1 - + Files: %1 (%2) Berkas: %1 (%2) - + Files: %1 - + Dirs: %1 Direktori: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Membentuk - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Kembali - - + + Go back to previous directory Kembali ke direktori sebelumnya - + Up Naik - - + + Go to parent directory Ke direktori atasnya - + Home Beranda - - + + Go to home directory Ke direktori home - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Akses terbatas) - - + + New Document Dokumen Baru - - - + + + Name: Nama: - + Error Creating Document Galat saat membuat dokument - + The document could not be created. Please ensure that you have the proper permissions. Dokumen tidak dapat dibuat. Pastikan bahwa Anda memiliki izin yang tepat. - + New Directory Direktori Baru - - - + + + Invalid Name Nama Tak Valid - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Sebuah berkas / direktori dengan nama yang sama sudah ada. Coba gunakan nama yang lain. - + Error Creating Directory Galat sewaktu membuat direktori - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Direktori tidak dapat dibuat. Pastikan bahwa Anda memiliki izin yang tepat untuk memodifikasi direktori saat ini. - + Current Saat Ini - + Create... - + File Berkas - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Checksum Berkas: - + Missing Utility Hilang Utilitas - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "Lumina-Fileinfo" utilitas tidak dapat ditemukan pada sistem. Silahkan install terlebih dahulu. - + Open Buka - + Rename... Ganti Nama… - + Cut Selection Potong data terpilih - + Copy Selection Salin pilihan - + Paste Pasta - + Delete Selection Hapus Seleksi + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 Insight - + Shift+Left Shift + Kiri - + Shift+Right Shift+Right @@ -625,377 +650,382 @@ New Location: %2 Berkas - + View Tampilan - + View Mode Mode Tampilan - + Bookmarks Penanda - + External Devices Perangkat eksternal - + Git - + New Tab - + New Browser Baru Peramban - + Show Image Previews - + Search Directory... Cari dalam Direktori... - + Increase Icon Size Besarkan Ukuran Ikon - + Decrease Icon Size Kecilkan Ukuran Ikon - + Larger Icons Ikon Besar - + Ctrl++ Ctrl++ - + Smaller Icons Ikon kecil - + Ctrl+- Ctrl +- - + New Window Jendela Baru - + Ctrl+N Ctrl+N - + Add Bookmark Tambah Penanda - + Ctrl+D Ctrl+D - + Delete Selection Hapus Seleksi - + Del Del - + Refresh Segarkan - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Keluar - + Ctrl+Q Ctrl+Q - + &Preferences &Preferensi - + Show Hidden Files Tampilkan Berkas Tersembunyi - + Scan for Devices Pindai divais - + Manage Bookmarks Mengelola penanda taut - + Show Action Buttons menunjukkan tombol tindakan - + Ctrl+F Ctrl+F - + Detailed List Senarai Detail - + Basic List dasar Daftar - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Ganti Nama… - + F2 F2 - + Cut Selection Potong seleksi - + Copy Selection Salin pilihan - + Paste Tempel - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Direktori tidak valid - + The following directories are invalid and could not be opened: Direktori berikut tidak valid dan tidak bisa dibuka: - + CTRL+B - + CTRL+E - + Root Akar - + %1 (Type: %2) %1 (Type: %2) - + Filesystem: %1 Sistem berkas %1 - + New Bookmark Markah Baru - + Name: Nama: - + Invalid Name Nama Tak Valid - + This bookmark name already exists. Please choose another. Nama pembatas buku sudah ada. Harap pilih nama lain. - + Git Repository Status - + Multimedia Multimedia - + Slideshow Pertunjukan Slide - + Items to be removed: Item yang akan dihapus: - + Verify Quit memverifikasi Anda ingin keluar - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Anda memiliki banyak tab yang terbuka, anda yakin bahwa anda ingin keluar? - + Verify Removal verifikasi penghapusan - + WARNING: This will permanently delete the file(s) from the system! PERINGATAN: Ini akan secara permanen menghapus berkas dari sistem! - + Are you sure you want to continue? Anda yakin ingin melanjutkan? - + Rename File Ganti nama berkas - + New Name: Nama baru: - + Overwrite File? Timpa Berkas? - + An existing file with the same name will be replaced. Are you sure you want to proceed? berkas yang ada dengan nama yang sama akan diganti. Apakah Anda yakin ingin melanjutkan? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_is.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_is.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_is.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_is.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_it.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_it.ts index f0c594a2..2a700376 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_it.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_it.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nome - + Size Dimensioni - + Type Tipo - + Date Modified Data Modificata - + Date Created Data di Creazione - + Capacity: %1 Capacità: %1 - + Files: %1 (%2) File: %1 (%2) - + Files: %1 Files: %1 - + Dirs: %1 Cartelle: %1 - + No Directory Contents Nessun contenuto nella Cartella @@ -115,270 +115,295 @@ Modulo - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Aumentare le dimensioni Icona - + Decrease Icon Sizes Ridurre le dimensioni Icona - + Back Indietro - - + + Go back to previous directory Torna alla directory precedente - + Up Su - - + + Go to parent directory Vai alla directory superiore - + Home Home - - + + Go to home directory Vai alla Home directory - + Menu Menù - + Select Action Selezionare Azione - + Single Column - + Single column view Vista colonna singola - + Dual Column Colonna doppia - + Dual Column View Vista colonna doppia - + (Limited Access) (Accesso Limitato) - - + + New Document Nuovo Documento - - - + + + Name: Nome: - + Error Creating Document Errore Creazione Documento - + The document could not be created. Please ensure that you have the proper permissions. Impossibile creare il documento. Verifica di avere i permessi giusti. - + New Directory Nuova Directory - - - + + + Invalid Name Nome non valido - - File Operations - Operazioni su file + + Open Current Dir in a Terminal + - - Auto-Extract - + + File Operations + Operazioni su file - + Directory Operations Operazioni su Cartella - + Other... - + Loading... Caricamento... - - - + + + A file or directory with that name already exists! Please pick a different name. Un file o una directory con questo nome esiste già! Per favore scegli un altro nome. - + Error Creating Directory Errore Creazione Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. La directory non può essere creata. Verifica di avere le autorizzazioni appropriate per modificare la directory corrente. - + Current Attuale - + Create... Creando... - + File File - + Directory Cartella - + Application Launcher Applicazione di Avvio - + Launch... Avviando... - - Terminal - Terminale - - - + SlideShow Presentazione - + Multimedia Player Riproduttore multimediale - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... - + View Files... Vista Files... - + Checksums Controlli - + Properties Proprietà - + File Checksums: Controllo dei File: - + Missing Utility Utilità mancante - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. L'utilità "lumina-fileinfo" non e' stata trovata sul sistema. Per favore installala. - + Open Apri - + Rename... Rinomina... - + Cut Selection Taglia Selezione - + Copy Selection Copia Selezione - + Paste Incolla - + Delete Selection Elimina selezione + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Nuova posizione: %2 Intuizione - + Shift+Left Shift+Sinistra - + Shift+Right Shift+Destra @@ -628,377 +653,382 @@ Nuova posizione: %2 File - + View Visualizza - + View Mode Modalità di Visualizzazione - + Bookmarks Preferiti - + External Devices Dispositivi Esterni - + Git Git - + New Tab Nuova Tab - + New Browser Nuovo Browser - + Show Image Previews - + Search Directory... Cerca Directory... - + Increase Icon Size Aumenta Dimensione Icona - + Decrease Icon Size Diminuisci Dimensione Icona - + Larger Icons Icone Più Grandi - + Ctrl++ Ctrl++ - + Smaller Icons Icone Più Piccole - + Ctrl+- Ctrl+- - + New Window Nuova Finestra - + Ctrl+N Ctrl+N - + Add Bookmark Aggiungi segnalibro - + Ctrl+D Ctrl+D - + Delete Selection Elimina selezione - + Del Canc - + Refresh Aggiorna - + Close Tab Chiudi Tab - + Repo Status Informazioni di Stato - + Clone Repository Clonare Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Uscita - + Ctrl+Q Ctrl+Q - + &Preferences &Preferenze - + Show Hidden Files Mostra File Nascosti - + Scan for Devices Cerca Dispositivi - + Manage Bookmarks Gestire Segnalibri - + Show Action Buttons Mostra Pulsanti d'Azione - + Ctrl+F Ctrl+F - + Detailed List Lista Dettagliata - + Basic List Lista Base - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Rinomina... - + F2 F2 - + Cut Selection Taglia Selezione - + Copy Selection Copia Selezione - + Paste Incolla - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl-X - + Invalid Directories Directory non validi - + The following directories are invalid and could not be opened: Le seguenti directory non sono valide e non hanno potuto essere aperte: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root Radice - + %1 (Type: %2) %1 (Tipo: %2) - + Filesystem: %1 File system: %1 - + New Bookmark Nuovo Preferito - + Name: Nome: - + Invalid Name Nome non valido - + This bookmark name already exists. Please choose another. Questo bookmark è già usato. Scegline un altro. - + Git Repository Status Stato del Git Repository - + Multimedia Multimediale - + Slideshow Slideshow - + Items to be removed: Elementi da Rimuovere: - + Verify Quit Verifica Quit - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Ci sono diverse schede aperte, se sicuro di voler uscire? - + Verify Removal Verifica Rimozione - + WARNING: This will permanently delete the file(s) from the system! ATTENZIONE: Questo modo eliminara' definitivamente il/i file dal sistema! - + Are you sure you want to continue? Sei sicuro di voler continuare? - + Rename File Rinomina File - + New Name: Nuovo Nome: - + Overwrite File? Sovrascrivi File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Un file esistente con lo stesso nome verrà sostituito. Sei sicuro di voler procedere? @@ -1214,67 +1244,67 @@ Nuova posizione: %2 XDGDesktopList - + Multimedia Multimediale - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts index 075665b3..1e872f25 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts @@ -60,52 +60,52 @@ BrowserWidget - + Name 名前 - + Size サイズ - + Type 種類 - + Date Modified 変更日時 - + Date Created 作成日時 - + Capacity: %1 使用済み容量: %1 - + Files: %1 (%2) ファイル数: %1 (%2) - + Files: %1 ファイル: %1 - + Dirs: %1 ディレクトリー: %1 - + No Directory Contents ディレクトリーがありません @@ -118,271 +118,296 @@ フォーム - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes アイコンサイズを大きくする - + Decrease Icon Sizes アイコンサイズを小さくする - + Back 戻る - - + + Go back to previous directory 前のディレクトリーに戻る - + Up 上へ - - + + Go to parent directory 親ディレクトリーへ移動します - + Home ホーム - - + + Go to home directory ホームディレクトリーへ移動します - + Menu メニュー - + Select Action アクションを選択します - + Single Column - + Single column view 一列で表示 - + Dual Column 二列表示 - + Dual Column View 二列で表示 - + (Limited Access) (アクセス制限あり) - - + + New Document 新しいドキュメント - - - + + + Name: 名前: - + Error Creating Document ドキュメントの作成中にエラーが発生しました - + The document could not be created. Please ensure that you have the proper permissions. ドキュメントを作成できません。パーミッション設定を確認してください。 - + New Directory 新しいディレクトリー - - - + + + Invalid Name 名前が無効です - - File Operations - ファイル操作 + + Open Current Dir in a Terminal + - - Auto-Extract - + + File Operations + ファイル操作 - + Directory Operations ディレクトリー操作 - + Other... - + Loading... ロードしています... - - - + + + A file or directory with that name already exists! Please pick a different name. 同名のファイルまたはディレクトリーが存在します。別の名前にしてください。 - + Error Creating Directory ディレクトリーの作成時にエラーが発生しました - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. ディレクトリーを作成できません。現在作業中のディレクトリーの書き込みパーミッション設定を確認してください。 - + Current スナップショットが存在する場合にはスナップショット名が入る 現行版 - + Create... 作成... - + File ファイル - + Directory ディレクトリー - + Application Launcher アプリケーションの起動 - + Launch... 起動... - - Terminal - 端末 - - - + SlideShow スライドショー - + Multimedia Player マルチメディアプレイヤー - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... - + View Files... ファイルの情報を表示... - + Checksums チェックサム - + Properties プロパティー - + File Checksums: ファイルのチェックサム: - + Missing Utility ユーティリティーがありません - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" ユーティリティーはシステムに存在しません。先にインストールしてください。 - + Open 開く - + Rename... 名前の変更... - + Cut Selection 選択したアイテムを切り取る - + Copy Selection 選択したアイテムをコピー - + Paste 貼り付け - + Delete Selection 選択したアイテムを削除 + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -620,12 +645,12 @@ New Location: %2 Insight - + Shift+Left Shift+Left - + Shift+Right Shift+Right @@ -635,380 +660,385 @@ New Location: %2 ファイル - + View 表示 - + View Mode 表示モード - + Bookmarks ブックマーク - + External Devices 外部デバイス - + Git Git - + New Tab 新しいタブ - + New Browser 新しいブラウザー - + Show Image Previews - + Search Directory... ディレクトリー内を検索... - + Increase Icon Size アイコンを大きくする - + Decrease Icon Size アイコンを小さくする - + Larger Icons 大きいアイコン - + Ctrl++ Ctrl++ - + Smaller Icons 小さいアイコン - + Ctrl+- Ctrl+- - + New Window 新しいウィンドウ - + Ctrl+N Ctrl+N - + Add Bookmark ブックマークへ追加 - + Ctrl+D Ctrl+D - + Delete Selection 選択したアイテムを削除 - + Del 削除 - + Refresh 再読み込み - + Close Tab タブを閉じる - + Repo Status リポジトリーの状態 - + Clone Repository リポジトリーのクローン... - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit 終了 - + Ctrl+Q Ctrl+Q - + &Preferences 設定(&P) - + Show Hidden Files チェックボックスのキャプション 隠しファイルを表示する - + Scan for Devices デバイスをスキャンする - + Manage Bookmarks ブックマークの管理 - + Show Action Buttons アクションボタンを表示する - + Ctrl+F Ctrl+F - + Detailed List ラジオボタンの選択肢 詳細な一覧表示 - + Basic List シンプルな一覧表示 - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... 名前の変更... - + F2 F2 - + Cut Selection 選択したアイテムを切り取る - + Copy Selection 選択したアイテムをコピー - + Paste 貼り付け - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories 無効なディレクトリー - + The following directories are invalid and could not be opened: このディレクトリーは無効なので、開くことはできません: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root ルート - + %1 (Type: %2) %1: ディレクトリー名 %2: ファイルシステム名 %1 (種類: %2) - + Filesystem: %1 ファイルシステム: %1 - + New Bookmark 新しいブックマーク - + Name: 名前: - + Invalid Name 名前が無効です - + This bookmark name already exists. Please choose another. このブックマーク名はすでに使用されています。別の名前を選択してください。 - + Git Repository Status Git リポジトリーの状態 - + Multimedia マルチメディア - + Slideshow スライドショー - + Items to be removed: これらのアイテムが削除されます: - + Verify Quit 終了の確認 - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? 複数のタブを開いています。終了しますか? - + Verify Removal 削除の確認 - + WARNING: This will permanently delete the file(s) from the system! 警告: これらのファイルはシステムから永久に削除されます! - + Are you sure you want to continue? 本当に続けますか? - + Rename File ファイル名の変更 - + New Name: 新しい名前: - + Overwrite File? ファイルを上書きしますか? - + An existing file with the same name will be replaced. Are you sure you want to proceed? 既にある同名のフィアルに上書きされます。本当に続けますか? @@ -1231,67 +1261,67 @@ New Location: %2 XDGDesktopList - + Multimedia マルチメディア - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts index f2bce842..f5356712 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name 이름 - + Size 크기 - + Type 종류 - + Date Modified 변경 날짜 - + Date Created 만든 날짜 - + Capacity: %1 용량: %1 - + Files: %1 (%2) 파일: %1 (%2) - + Files: %1 - + Dirs: %1 디렉터리: %1 - + No Directory Contents @@ -115,270 +115,295 @@ 양식 - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back 뒤로 - - + + Go back to previous directory 이전 디렉터리로 돌아가기 - + Up 위로 - - + + Go to parent directory 상위 디렉터리로 가기 - + Home - - + + Go to home directory 홈 디렉터리로 가기 - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (제한된 접근) - - + + New Document 새 문서 - - - + + + Name: 이름: - + Error Creating Document 문서 만드는 중 오류 - + The document could not be created. Please ensure that you have the proper permissions. 문서를 만들 수 없습니다. 필요한 권한이 있는지 확인하십시오. - + New Directory 새 디렉터리 - - - + + + Invalid Name 잘못된 이름 - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. 같은 이름의 파일이나 디렉터리가 이미 있습니다! 다른 이름을 선택하십시오. - + Error Creating Directory 디렉터리 만드는 중 오류 - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. 디렉터리를 만들 수 없습니다. 현재 디렉터리를 변경할 권한이 있는지 확인하십시오. - + Current 현재 - + Create... - + File 파일 - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: 파일 체크섬: - + Missing Utility 유틸리티 없음 - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" 유틸리티가 시스템에 없습니다. 먼저 설치하십시오. - + Open 열기 - + Rename... - + Cut Selection 선택 항목 삭제 - + Copy Selection 선택 항목 복사 - + Paste 붙여 넣기 - + Delete Selection 선택 항목 삭제 + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ New Location: %2 인사이트 - + Shift+Left Shift+Left - + Shift+Right Shift+Right @@ -628,377 +653,382 @@ New Location: %2 파일 - + View 보기 - + View Mode 보기 모드 - + Bookmarks 책갈피 - + External Devices 외부 장치 - + Git - + New Tab - + New Browser 새 탐색기 - + Show Image Previews - + Search Directory... - + Increase Icon Size 아이콘 크기 확대 - + Decrease Icon Size 아이콘 크기 축소 - + Larger Icons 좀 더 큰 아이콘 - + Ctrl++ - + Smaller Icons 좀 더 작은 아이콘 - + Ctrl+- - + New Window 새 창 - + Ctrl+N Ctrl+N - + Add Bookmark 책갈피 추가 - + Ctrl+D Ctrl+D - + Delete Selection 선택 항목 삭제 - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit 종료 - + Ctrl+Q Ctrl+Q - + &Preferences 설정(&P) - + Show Hidden Files 숨겨진 파일 보기 - + Scan for Devices 장치 검색 - + Manage Bookmarks 책갈피 관리 - + Show Action Buttons 동작 버튼 보기 - + Ctrl+F Ctrl+F - + Detailed List 자세한 목록 - + Basic List 기본 목록 - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... - + F2 F2 - + Cut Selection 선택 항목 삭제 - + Copy Selection 선택 항목 복사 - + Paste 붙여 넣기 - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories 잘못된 디렉터리 - + The following directories are invalid and could not be opened: 다음의 디렉터리가 잘못되어 열 수 없습니다: - + CTRL+B - + CTRL+E - + Root 루트 - + %1 (Type: %2) %1 (종류: %2) - + Filesystem: %1 파일시스템: %1 - + New Bookmark 새 책갈피 - + Name: 이름: - + Invalid Name 잘못된 이름 - + This bookmark name already exists. Please choose another. 책갈피 이름이 이미 사용중입니다. 다른 이름을 선택하십시오. - + Git Repository Status - + Multimedia 멀티미디어 - + Slideshow 슬라이드쇼 - + Items to be removed: 지울 아이템: - + Verify Quit 종료 확인 - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? 여러 탭이 열려 있습니다. 종료하시겠습니까? - + Verify Removal 삭제 확인 - + WARNING: This will permanently delete the file(s) from the system! 경고: 파일을 시스템에서 영구히 삭제합니다! - + Are you sure you want to continue? 정말로 계속 하시겠습니까? - + Rename File 파일 이름 변경 - + New Name: 새 이름: - + Overwrite File? 파일을 덮어쓰시겠습니까? - + An existing file with the same name will be replaced. Are you sure you want to proceed? 이미 존재하는 같은 이름의 파일이 교체됩니다. 계속하시겠습니까? @@ -1214,67 +1244,67 @@ New Location: %2 XDGDesktopList - + Multimedia 멀티미디어 - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts index c13d043c..5b149f8f 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Pavadinimas - + Size Dydis - + Type Tipas - + Date Modified Keitimo data - + Date Created Sukūrimo data - + Capacity: %1 Talpa: %1 - + Files: %1 (%2) Failai: %1 (%2) - + Files: %1 Failai: %1 - + Dirs: %1 Katalogai: %1 - + No Directory Contents Nėra katalogo turinio @@ -115,270 +115,295 @@ Forma - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Padidinti piktogramų dydį - + Decrease Icon Sizes Sumažinti piktogramų dydį - + Back Atgal - - + + Go back to previous directory Grįžti į ankstesnį katalogą - + Up Aukštyn - - + + Go to parent directory Pereiti į virškatalogį - + Home Namai - - + + Go to home directory Pereiti į namų katalogą - + Menu Meniu - + Select Action Pasirinkti veiksmą - + Single Column Vienas stulpelis - + Single column view Vieno stulpelio rodinys - + Dual Column Dvigubas stulpelis - + Dual Column View Dvigubo stulpelio rodinys - + (Limited Access) (Prieiga apribota) - - + + New Document Naujas dokumentas - - - + + + Name: Pavadinimas: - + Error Creating Document Klaida, kuriant dokumentą - + The document could not be created. Please ensure that you have the proper permissions. Dokumento sukurti nepavyko. Įsitikinkite, kad turite tinkamus leidimus. - + New Directory Naujas katalogas - - - + + + Invalid Name Netinkamas pavadinimas - - File Operations - Failų operacijos + + Open Current Dir in a Terminal + - - Auto-Extract - Automatiškai išskleisti + + File Operations + Failų operacijos - + Directory Operations Katalogų operacijos - + Other... Kita... - + Loading... Įkeliama... - - - + + + A file or directory with that name already exists! Please pick a different name. Failas ar katalogas tokiu pavadinimu jau yra! Prašome pasirinkti kitą pavadinimą. - + Error Creating Directory Klaida, kuriant katalogą - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Katalogo sukurti nepavyko. Įsitikinkite, kad turite tinkamus leidimus tam, kad keistumėte esamą katalogą. - + Current Esamas - + Create... Sukurti... - + File Failą - + Directory Katalogą - + Application Launcher Programos leistuką - + Launch... Paleisti... - - Terminal - Terminalą - - - + SlideShow Skaidrių rodymą - + Multimedia Player Multimedijos grotuvą - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... Atverti naudojant... - + View Files... Rodyti failų... - + Checksums Kontrolinės sumos - + Properties Savybės - + File Checksums: Failų kontrolinės sumos: - + Missing Utility Trūksta paslaugų programos - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Sistemoje nepavyko rasti "lumina-fileinfo" paslaugų programos. Prašome, iš pradžių, ją įdiegti. - + Open Atverti - + Rename... Pervadinti... - + Cut Selection Iškirpti žymėjimą - + Copy Selection Kopijuoti žymėjimą - + Paste Įdėti - + Delete Selection Ištrinti žymėjimą + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Nauja vieta: %2 Insight - + Shift+Left Shift(Lyg2)+Kairėn - + Shift+Right Shift(Lyg2)+Dešinėn @@ -628,377 +653,382 @@ Nauja vieta: %2 Failas - + View Rodinys - + View Mode Rodymo veiksena - + Bookmarks Žymelės - + External Devices Išoriniai įrenginiai - + Git Git - + New Tab Nauja kortelė - + New Browser Nauja naršyklė - + Show Image Previews Rodyti paveikslų peržiūras - + Search Directory... Ieškoti kataloge... - + Increase Icon Size Padidinti piktogramų dydį - + Decrease Icon Size Sumažinti piktogramų dydį - + Larger Icons Didesnės piktogramos - + Ctrl++ Ctrl(Vald)++ - + Smaller Icons Mažesnės piktogramos - + Ctrl+- Ctrl(Vald)+- - + New Window Naujas langas - + Ctrl+N Ctrl(Vald)+N - + Add Bookmark Pridėti žymelę - + Ctrl+D Ctrl(Vald)+D - + Delete Selection Ištrinti žymėjimą - + Del Del(Šal) - + Refresh Įkelti iš naujo - + Close Tab Užverti kortelę - + Repo Status Saugyklos būsena - + Clone Repository Klonuoti saugyklą - + Show Directory Tree Window Rodyti katalogų medžio langą - + Show Directory Tree Pane Rodyti katalogų medžio polangį - + Ctrl+P Ctrl(Vald)+P - + + Open as Root + + + + Ctrl+T Ctrl(Vald)+T - + Exit Išeiti - + Ctrl+Q Ctrl(Vald)+Q - + &Preferences &Nuostatos - + Show Hidden Files Rodyti paslėptus failus - + Scan for Devices Ieškoti įrenginių - + Manage Bookmarks Tvarkyti žymeles - + Show Action Buttons Rodyti veiksmų mygtukus - + Ctrl+F Ctrl(Vald)+F - + Detailed List Išsamus sąrašas - + Basic List Paprastas sąrašas - + Ctrl+W Ctrl(Vald)+W - + F5 F5 - + Ctrl+C Ctrl(Vald)+C - + Rename... Pervadinti... - + F2 F2 - + Cut Selection Iškirpti žymėjimą - + Copy Selection Kopijuoti žymėjimą - + Paste Įdėti - + Ctrl+V Ctrl(Vald)+V - + Ctrl+X Ctrl(Vald)+X - + Invalid Directories Netinkami katalogai - + The following directories are invalid and could not be opened: Šie katalogai yra netinkami ir jų nepavyko atverti: - + CTRL+B CTRL(VALD)+B - + CTRL+E CTRL(Vald)+E - + Root Šaknis - + %1 (Type: %2) %1 (Tipas: %2) - + Filesystem: %1 Failų sistema: %1 - + New Bookmark Nauja žymelė - + Name: Pavadinimas: - + Invalid Name Netinkamas pavadinimas - + This bookmark name already exists. Please choose another. Toks žymelės pavadinimas jau yra. Pasirinkite kitą. - + Git Repository Status Git saugyklos būsena - + Multimedia Multimedija - + Slideshow Skaidrių rodymas - + Items to be removed: Elementai, kurie bus pašalinti: - + Verify Quit Patvirtinti baigimą - + Ctrl+H Ctrl(Vald)+H - + Ctrl+L Ctrl(Vald)+L - + You have multiple tabs open. Are you sure you want to quit? Jūs esate atvėrę kelias korteles. Ar tikrai norite baigti programos darbą? - + Verify Removal Patvirtinti šalinimą - + WARNING: This will permanently delete the file(s) from the system! ĮSPĖJIMAS: Tai visiems laikams ištrins failą(-us) iš sistemos! - + Are you sure you want to continue? Ar tikrai norite tęsti? - + Rename File Pervadinti failą - + New Name: Naujas pavadinimas: - + Overwrite File? Perrašyti failą? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Esamas failas tokiu pačiu pavadinimu bus pakeistas. Ar tikrai norite tęsti? @@ -1214,67 +1244,67 @@ Nauja vieta: %2 XDGDesktopList - + Multimedia Multimedija - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts index f1694f1a..9b0e8cc5 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Vārds - + Size Lielums - + Type Veids - + Date Modified Modificēšanas datums - + Date Created Izveidošanas datums - + Capacity: %1 Ietilpība: %1 - + Files: %1 (%2) Faili: %1 (%2) - + Files: %1 - + Dirs: %1 Katalogi: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Forma - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Atpakaļ - - + + Go back to previous directory Atgriezties iepriekšējā katalogā - + Up Augšup - - + + Go to parent directory Iet uz vecāku katalogu - + Home Mājas - - + + Go to home directory Iet uz mājas katalogu - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Ierobežota piekļuve) - - + + New Document Jauns dokuments - - - + + + Name: Vārds: - + Error Creating Document Kļūda, veidojot dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokumentu nevar izveidot. Lūdzu, pārliecinieties, ka ir pietiekamas tiesības. - + New Directory Jauns katalogs - - - + + + Invalid Name Nederīgs nosaukums - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Fails vai katalogs ar šādu nosaukumu jau eksistē! Lūdzu, izvēlieties citu. - + Error Creating Directory Kļūda, veidojot katalogu - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Katalogu nevar izveidot. Lūdzu, pārliecinieties, ka ir pietiekamas tiesības modificēt pašreizējo katalogu. - + Current Pašreizējais - + Create... - + File Fails - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Failu kontrolsummas: - + Missing Utility Trūkstoša utilīta - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Utilīta "lumina-fileinfo" sistēmā nav atrodama. Lūdzu, vispirms to uzstādiet. - + Open Atvērt - + Rename... Pārsaukt... - + Cut Selection Izgriezt atlasi - + Copy Selection Kopēt atlasi - + Paste Ielīmēt - + Delete Selection Dzēst atlasi + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Jaunā atrašanās vieta: %2 Ieskats - + Shift+Left Shift+Pa kreisi - + Shift+Right Shift+Pa labi @@ -628,377 +653,382 @@ Jaunā atrašanās vieta: %2 Fails - + View Skats - + View Mode Skata režīms - + Bookmarks Grāmatzīmes - + External Devices Ārējās ierīces - + Git - + New Tab - + New Browser Jauns pārlūks - + Show Image Previews - + Search Directory... Meklēt katalogā... - + Increase Icon Size Palielināt ikonas izmēru - + Decrease Icon Size Samazināt ikonas izmēru - + Larger Icons Lielākas ikonas - + Ctrl++ Ctrl++ - + Smaller Icons Mazākas ikonas - + Ctrl+- Ctrl+- - + New Window Jauns logs - + Ctrl+N Ctrl+N - + Add Bookmark Pievienot grāmatzīmi - + Ctrl+D Ctrl+D - + Delete Selection Dzēst atlasi - + Del Del - + Refresh Atsvaidzināt - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Iziet - + Ctrl+Q Ctrl+Q - + &Preferences &Preferences - + Show Hidden Files Rādīt slēptos failus - + Scan for Devices Skenēt ierīces - + Manage Bookmarks Pārvaldīt grāmatzīmes - + Show Action Buttons Rādīt darbību pogas - + Ctrl+F Ctrl+F - + Detailed List Detalizēts saraksts - + Basic List Pamatsaraksts - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Pārsaukt... - + F2 F2 - + Cut Selection Izgriezt atlasi - + Copy Selection Kopēt atlasi - + Paste Ielīmēt - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Nederīgi katalogi - + The following directories are invalid and could not be opened: Sekojošie katalogi ir nederīgi un nav atverami: - + CTRL+B - + CTRL+E - + Root Sakne - + %1 (Type: %2) %1 (Tips: %2) - + Filesystem: %1 Failu sistēma: %1 - + New Bookmark Jauna grāmatzīme - + Name: Vārds: - + Invalid Name Nederīgs vārds - + This bookmark name already exists. Please choose another. Jau eksistē grāmatzīme ar šādu vārdu. Lūdzu, izvēlieties citu. - + Git Repository Status - + Multimedia Multivide - + Slideshow Slaidrāde - + Items to be removed: Noņemamie vienumi: - + Verify Quit Iziešanas pārbaude - + Ctrl+H Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Jums ir atvērtas vairākas cilnes. Vai tiešām vēlaties iziet? - + Verify Removal Noņemšanas pārbaude - + WARNING: This will permanently delete the file(s) from the system! UZMANĪBU: Tas neatgriezeniski dzēsīs failu/-s no sistēmas! - + Are you sure you want to continue? Vai tiešām vēlaties turpināt? - + Rename File Pārdēvēt failu - + New Name: Jauns nosaukums: - + Overwrite File? Vai pārrakstīt failu? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Esošais fails ar šādu pat nosaukumu tiks aizvietots. Vai tiešām vēlaties turpināt? @@ -1214,67 +1244,67 @@ Jaunā atrašanās vieta: %2 XDGDesktopList - + Multimedia Multivide - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts index 133fdf53..b138955e 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Naam - + Size Grootte - + Type Soort - + Date Modified Wijzigingsdatum - + Date Created Creatiedatum - + Capacity: %1 Capaciteit: %1 - + Files: %1 (%2) Bestanden: %1 (%2) - + Files: %1 - + Dirs: %1 Mappen: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Formulier - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Terug - - + + Go back to previous directory Ga terug naar vorige map - + Up Omhoog - - + + Go to parent directory Ga naar bovenliggende map - + Home Persoonlijke map - - + + Go to home directory Ga naar persoonlijke map - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Beperkte toegang) - - + + New Document Nieuw document - - - + + + Name: Naam: - + Error Creating Document Fout bij creëren van document - + The document could not be created. Please ensure that you have the proper permissions. Het document kan niet worden gecreëerd. Zorg ervoor dat u beschikt over de juiste rechten. - + New Directory Nieuwe map - - - + + + Invalid Name Ongeldige naam - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Er bestaat al een bestand of map met dezelfde naam. Kies een andere naam. - + Error Creating Directory Fout bij creëren van map - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. De map kan niet worden gecreëerd. Zorg ervoor dat u beschikt over de juiste rechten om de huidige map te mogen bewerken. - + Current Huidig - + Create... - + File Bestand - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Bestandscontrolesommen: - + Missing Utility Ontbrekend hulpmiddel - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Het "lumina-fileinfo"-hulpmiddel kan niet worden gevonden. Installeer het. - + Open Openen - + Rename... Naam wijzigen... - + Cut Selection Selectie knippen - + Copy Selection Selectie kopiëren - + Paste Plakken - + Delete Selection Selectie verwijderen + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Nieuwe locatie: %2 Inzicht - + Shift+Left Shift+Links - + Shift+Right Shift+Rechts @@ -628,377 +653,382 @@ Nieuwe locatie: %2 Bestand - + View Beeld - + View Mode Weergavemodus - + Bookmarks Bladwijzers - + External Devices Externe apparaten - + Git - + New Tab - + New Browser Nieuwe verkenner - + Show Image Previews - + Search Directory... Map doorzoeken... - + Increase Icon Size Pictogramgrootte vergroten - + Decrease Icon Size Pictogramgrootte verkleinen - + Larger Icons Grotere pictogrammen - + Ctrl++ Ctrl++ - + Smaller Icons Kleinere pictogrammen - + Ctrl+- Ctrl+- - + New Window Nieuw venster - + Ctrl+N Ctrl+N - + Add Bookmark Bladwijzer toevoegen - + Ctrl+D Ctrl+D - + Delete Selection Selectie verwijderen - + Del Del - + Refresh Herladen - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Afsluiten - + Ctrl+Q Ctrl+Q - + &Preferences &Voorkeuren - + Show Hidden Files Verborgen bestanden weergeven - + Scan for Devices Zoeken naar apparaten - + Manage Bookmarks Bladwijzers beheren - + Show Action Buttons Actieknoppen weergeven - + Ctrl+F Ctrl+F - + Detailed List Gedetailleerde lijst - + Basic List Standaardlijst - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Naam wijzigen... - + F2 F2 - + Cut Selection Selectie knippen - + Copy Selection Selectie kopiëren - + Paste Plakken - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Ongeldige mappen - + The following directories are invalid and could not be opened: De volgende mappen zijn ongeldig en kunnen daarom niet worden geopend: - + CTRL+B - + CTRL+E - + Root Hoofdmap - + %1 (Type: %2) %1 (Soort: %2) - + Filesystem: %1 Bestandssysteem: %1 - + New Bookmark Nieuwe bladwijzer - + Name: Naam: - + Invalid Name Ongeldige naam - + This bookmark name already exists. Please choose another. Deze bladwijzernaam bestaat al; kies een andere. - + Git Repository Status - + Multimedia Multimedia - + Slideshow Diavoorstelling - + Items to be removed: Te verwijderen items: - + Verify Quit Afsluiten bevestigen - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? U heeft verschillende tabbladen geopend. Weet u zeker dat u af wilt sluiten? - + Verify Removal Verwijderen bevestigen - + WARNING: This will permanently delete the file(s) from the system! WAARSCHUWING: dit zorgt ervoor dat het bestand/de bestanden permanent zullen worden verwijderd van het systeem! - + Are you sure you want to continue? Weet u zeker dat u door wilt gaan? - + Rename File Bestandsnaam wijzigen - + New Name: Nieuwe naam: - + Overwrite File? Bestand overschrijven? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Een bestaand bestand met dezelfde naam zal worden worden vervangen. Weet u zeker dat u door wilt gaan? @@ -1214,67 +1244,67 @@ Nieuwe locatie: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts index 959062ee..865d0f92 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nazwa - + Size Rozmiar - + Type Typ - + Date Modified Data modyfikacji - + Date Created Data utworzenia - + Capacity: %1 Pojemność: %1 - + Files: %1 (%2) Pliki: %1 (%2) - + Files: %1 Pliki: %1 - + Dirs: %1 Katalogi : %1 - + No Directory Contents Brak zawartości katalogu @@ -115,270 +115,295 @@ Formularz - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Zwiększ rozmiar ikon - + Decrease Icon Sizes Zmniejsz rozmiar ikon - + Back Wstecz - - + + Go back to previous directory Wróć do poprzedniego katalogu - + Up W górę - - + + Go to parent directory Przejdź do katalogu nadrzędnego - + Home Katalog domowy - - + + Go to home directory Przejdź do katalogu domowego - + Menu Menu - + Select Action Wybierz działanie - + Single Column - + Single column view Widok kolumny pojedynczej - + Dual Column Kolumna podwójna - + Dual Column View Widok kolumny podwójnej - + (Limited Access) (Ograniczony dostęp) - - + + New Document Nowy dokument - - - + + + Name: Nazwa: - + Error Creating Document Błąd podczas tworzenia dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Nie udało się utworzyć dokumentu. Upewnij się czy masz właściwe uprawnienia. - + New Directory Nowy katalog - - - + + + Invalid Name Nieprawidłowa nazwa - - File Operations - Operacje na plikach + + Open Current Dir in a Terminal + - - Auto-Extract - + + File Operations + Operacje na plikach - + Directory Operations Operacje na katalogach - + Other... - + Loading... Wczytywanie... - - - + + + A file or directory with that name already exists! Please pick a different name. Plik lub katalog o podanej nazwie już istnieje! Proszę wybrać inną nazwę. - + Error Creating Directory Błąd podczas tworzenia katalogu - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Nie udało się stworzyć katalogu. Proszę upewnij się czy masz właściwe uprawnienia by móc modyfikować ten katalog. - + Current Bieżący - + Create... Utwórz... - + File Plik - + Directory Katalog - + Application Launcher Aplikację - + Launch... Uruchom... - - Terminal - Terminal - - - + SlideShow Pokaz slajdów - + Multimedia Player Odtwarzacz multimedialny - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... - + View Files... Podgląd... - + Checksums Suma kontrolna - + Properties Właściwości - + File Checksums: Suma kontrolna: - + Missing Utility Brak odpowiedniego narzędzia - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Nie udało się w systemie odnaleźć narzędzia "lumina-fileinfo". Proszę je najpierw zainstalować. - + Open Otwórz - + Rename... Zmień nazwę... - + Cut Selection Wytnij - + Copy Selection Kopiuj - + Paste Wklej - + Delete Selection Usuń + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Nowa lokalizacja: %2 Insight - + Shift+Left Shift+lewo - + Shift+Right Shift+prawo @@ -628,377 +653,382 @@ Nowa lokalizacja: %2 Plik - + View Widok - + View Mode Tryb widoku - + Bookmarks Zakładki - + External Devices Urządzenia zewnętrzne - + Git Git - + New Tab Nowa zakładka - + New Browser Nowa przeglądarka - + Show Image Previews - + Search Directory... Przeszukaj katalog... - + Increase Icon Size Zwiększ rozmiaru ikon - + Decrease Icon Size Zmniejsz rozmiar ikon - + Larger Icons Większe ikony - + Ctrl++ Ctrl++ - + Smaller Icons Mniejsze ikony - + Ctrl+- Ctrl+- - + New Window Nowe okno - + Ctrl+N Ctrl+N - + Add Bookmark Dodaj zakładkę - + Ctrl+D Ctrl+D - + Delete Selection Usuń - + Del Del - + Refresh Odśwież - + Close Tab Zamknij zakładkę - + Repo Status Stan repozytorium - + Clone Repository Klonuj repozytorium - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Wyjście - + Ctrl+Q Ctrl+Q - + &Preferences &Ustawienia - + Show Hidden Files Pokaż ukryte pliki - + Scan for Devices Wyszukaj urządzenia - + Manage Bookmarks Zarządzaj zakładkami - + Show Action Buttons Pokaż przyciski akcji - + Ctrl+F Ctrl+F - + Detailed List Lista szczegółowa - + Basic List Lista podstawowa - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Zmień nazwę... - + F2 F2 - + Cut Selection Wytnij - + Copy Selection Kopiuj - + Paste Wklej - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl-X - + Invalid Directories Nieprawidłowe katalogi - + The following directories are invalid and could not be opened: Następujące katalogi są nieprawidłowe i nie można ich otworzyć: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root Katalog główny - + %1 (Type: %2) %1 (Wpisz: %2) - + Filesystem: %1 System plików: %1 - + New Bookmark Nowa zakładka - + Name: Nazwa: - + Invalid Name Nieprawidłowa nazwa - + This bookmark name already exists. Please choose another. Taka zakładka już istnieje. Proszę wybrać inną. - + Git Repository Status Stan repozytorium Git - + Multimedia Multimedia - + Slideshow Pokaz slajdów - + Items to be removed: Elementy do usunięcia: - + Verify Quit Potwierdzenie zamknięcia - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Otwartych jest wiele kart. Na pewno zakończyć? - + Verify Removal Potwierdź usuwanie - + WARNING: This will permanently delete the file(s) from the system! OSTRZEŻENIE: Ta operacja trwale usunie plik(i) z systemu! - + Are you sure you want to continue? Na pewno kontynuować? - + Rename File Zmień nazwę pliku - + New Name: Nowa nazwa: - + Overwrite File? Nadpisać plik? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Istniejący plik o tej samej nazwie zostanie nadpisany. Na pewno kontynuować? @@ -1214,67 +1244,67 @@ Nowa lokalizacja: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts index 7ea83ecc..112f39e5 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nome - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Voltar - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: Nome: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Nome Inválido - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File Arquivo - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open Abrir - + Rename... - + Cut Selection Cortar a seleção - + Copy Selection Copiar a selecção - + Paste Colar - + Delete Selection Remover a Selecção + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Nova Localização: %2 Visão - + Shift+Left Shift+Esquerda - + Shift+Right Shift+Direita @@ -628,377 +653,382 @@ Nova Localização: %2 Arquivo - + View Visualizar - + View Mode - + Bookmarks Favoritos - + External Devices Dispositivos Externos - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection Remover a Selecção - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Sair - + Ctrl+Q Ctrl+Q - + &Preferences &Preferências - + Show Hidden Files Exibir Arquivos Ocultos - + Scan for Devices Procurar Dispositivos - + Manage Bookmarks Gerenciar Favoritos - + Show Action Buttons Exibir Botões de Ações - + Ctrl+F Ctrl+F - + Detailed List Lista detalhada - + Basic List Lista Básica - + Ctrl+W Ctrl+W - + F5 - + Ctrl+C Ctrl+C - + Rename... - + F2 - + Cut Selection Cortar a seleção - + Copy Selection Copiar a selecção - + Paste Colar - + Ctrl+V Ctrl+V - + Ctrl+X - + Invalid Directories Diretório Inválido - + The following directories are invalid and could not be opened: Os seguintes diretórios são inválidos e não puderam ser abertos: - + CTRL+B - + CTRL+E - + Root Raiz - + %1 (Type: %2) %1 (Tipo: %2) - + Filesystem: %1 Sistema de arquivos: 1% - + New Bookmark - + Name: Nome: - + Invalid Name Nome Inválido - + This bookmark name already exists. Please choose another. Esse nome de favorito já existe. Por favor, escolha outro. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit Verificar Saída - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Você tem múltiplas páginas abertas. Você tem certeza que deseja sair? - + Verify Removal Verificar Remoção - + WARNING: This will permanently delete the file(s) from the system! ATENÇÃO: Isso iá excluir os arquivos permanentemente do sistema! - + Are you sure you want to continue? Tem a certeza de que deseja continuar? - + Rename File Renomear Arquivo - + New Name: Novo Nome: - + Overwrite File? Sobrepor o Arquivo? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Um arquivo existente com o mesmo nome será substituído. Tem certeza de que deseja continuar? @@ -1214,67 +1244,67 @@ Nova Localização: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt_BR.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt_BR.ts index 82713926..4fc7c36d 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_pt_BR.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Nome - + Size Tamanho - + Type Tipo - + Date Modified Modificado em - + Date Created Data criada - + Capacity: %1 Capacidade: %1 - + Files: %1 (%2) Arquivos: %1 (%2) - + Files: %1 Arquivos: %1 - + Dirs: %1 Diretórios: %1 - + No Directory Contents Nenhum Conteúdo do Diretório @@ -115,270 +115,295 @@ Formulário - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Aumentar o tamanho dos ícones - + Decrease Icon Sizes Diminuir tamanhos de ícones - + Back Voltar - - + + Go back to previous directory Voltar para a pasta anterior - + Up Acima - - + + Go to parent directory Ir para pasta-pai - + Home Inicio - - + + Go to home directory Ir para a pasta inicial - + Menu Menu - + Select Action Selecione Ação - + Single Column - + Single column view Vista de coluna única - + Dual Column Coluna dupla - + Dual Column View Vista de coluna dupla - + (Limited Access) (Acesso limitado) - - + + New Document Novo Documento - - - + + + Name: Nome: - + Error Creating Document Erro ao Criar Documento - + The document could not be created. Please ensure that you have the proper permissions. O documento não pode ser criado. Por favor, certifique-se que possuí permissão necessária. - + New Directory Novo Diretório - - - + + + Invalid Name Nome Inválido - - File Operations - Operações de Arquivo + + Open Current Dir in a Terminal + - - Auto-Extract - + + File Operations + Operações de Arquivo - + Directory Operations Operações de diretório - + Other... - + Loading... Carregando... - - - + + + A file or directory with that name already exists! Please pick a different name. Já existe um arquivo ou pasta com este nome. Por favor, use um nome diferente. - + Error Creating Directory Erro ao Criar Pasta - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. A pasta não pode ser criada. Por favor, verifique suas permissões. - + Current Atual - + Create... Criar... - + File Arquivo - + Directory Diretório - + Application Launcher Iniciador de Aplicativos - + Launch... Lançamento... - - Terminal - Terminal - - - + SlideShow ApresentaçãodeSlides - + Multimedia Player Leitor Multimidia - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... - + View Files... Ver arquivos... - + Checksums Verificação de somas - + Properties Propriedades - + File Checksums: Arquivo checksum: - + Missing Utility Utilitário faltando - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. O "lumina-fileinfo" não pode ser encontrado no sistema. Por favor, instale-o... - + Open Abrir - + Rename... Renomear... - + Cut Selection Cortar seleção - + Copy Selection Copiar seleção - + Paste Colar - + Delete Selection Excluir seleção + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Nova Localização: %2 Compreensão - + Shift+Left Shift+Esquerdo - + Shift+Right Shift+Direito @@ -628,377 +653,382 @@ Nova Localização: %2 Arquivo - + View Ver - + View Mode Modo de Visualização - + Bookmarks Marcadores - + External Devices Dispositivos externos - + Git Git - + New Tab Nova Aba - + New Browser Novo Navegador - + Show Image Previews - + Search Directory... Pesquisar Pasta... - + Increase Icon Size Aumentar tamanho do Ícone - + Decrease Icon Size Diminuir tamanho da ícone - + Larger Icons Ícones maiores - + Ctrl++ Ctrl++ - + Smaller Icons Ícones pequenos - + Ctrl+- Ctrl+- - + New Window Nova janela - + Ctrl+N Ctrl+N - + Add Bookmark Adicionar Marcador - + Ctrl+D Ctrl+D - + Delete Selection Excluir seleção - + Del Del - + Refresh Atualizar - + Close Tab Fechar Aba - + Repo Status Status do Repositório - + Clone Repository Clonar o Repositório - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Sair - + Ctrl+Q Ctrl+Q - + &Preferences &Preferências - + Show Hidden Files Mostrar arquivos ocultos - + Scan for Devices Procurar por dispositivos - + Manage Bookmarks Gerenciar marcadores - + Show Action Buttons Exibir botões de ação - + Ctrl+F Ctrl+F - + Detailed List Lista detalhada - + Basic List Lista básica - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Renomear... - + F2 F2 - + Cut Selection Recortar seleção - + Copy Selection Copiar seleção - + Paste Colar - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Diretórios inválidos - + The following directories are invalid and could not be opened: Os seguintes diretórios são inválidos e não podem ser abertos: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root Root - + %1 (Type: %2) %1 (Tipo: %2) - + Filesystem: %1 Sistema de arquivos: %1 - + New Bookmark Novo Marcador - + Name: Nome: - + Invalid Name Nome inválido - + This bookmark name already exists. Please choose another. Este nome de marcador já existe. Por favor, escolha outro. - + Git Repository Status Status do repositório Git - + Multimedia Multimídia - + Slideshow Apresentação de slides - + Items to be removed: Itens para ser removidos: - + Verify Quit Confirmar saída - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Você possui várias abas abertas. Deseja realmente sair? - + Verify Removal Confirmar remoção - + WARNING: This will permanently delete the file(s) from the system! ATENÇÃO: Isto irá remover permanentemente o(s) arquivo(s) do sistema! - + Are you sure you want to continue? Você tem certeza de que deseja continuar? - + Rename File Renomear arquivo - + New Name: Novo nome: - + Overwrite File? Substituir arquivo? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Um arquivo existente com o mesmo nome será substituído. Tem certeza de que deseja continuar? @@ -1214,67 +1244,67 @@ Nova Localização: %2 XDGDesktopList - + Multimedia Multimídia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts index 9b318711..b9ab2104 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Имя - + Size Размер - + Type Тип - + Date Modified Дата изменения - + Date Created Дата создания - + Capacity: %1 Емкость: %1 - + Files: %1 (%2) Файлы: %1 (%2) - + Files: %1 Файлы: %1 - + Dirs: %1 Папки: %1 - + No Directory Contents В папке нет содержимого @@ -115,270 +115,295 @@ Дириктории - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes Увеличить размеры иконок - + Decrease Icon Sizes Уменьшить размеры иконок - + Back Назад - - + + Go back to previous directory Вернуться к предыдущему каталогу - + Up Вверх - - + + Go to parent directory Перейти в родительский каталог - + Home Домашний каталог - - + + Go to home directory Перейти в домашний каталог - + Menu Меню - + Select Action Выберите действие - + Single Column - + Single column view Вид в одну колонку - + Dual Column Две колонки - + Dual Column View Вид в две колонки - + (Limited Access) (Ограниченный доступ) - - + + New Document Новый документ - - - + + + Name: Имя: - + Error Creating Document Ошибка создания документа - + The document could not be created. Please ensure that you have the proper permissions. Документ не может быть создан. Пожалуйста, убедитесь, что у вас есть соответствующие права. - + New Directory Новый каталог - - - + + + Invalid Name Недопустимое имя - - File Operations - Операции с файлами + + Open Current Dir in a Terminal + - - Auto-Extract - + + File Operations + Операции с файлами - + Directory Operations Операции с директориями - + Other... - + Loading... Загрузка... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл или каталог с таким именем уже существует! Пожалуйста, выберите другое имя. - + Error Creating Directory Ошибка создания каталога - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Каталог не может быть создан. Пожалуйста, убедитесь, что у вас есть соответствующие права, чтобы изменить текущий каталог. - + Current Текущий - + Create... Созание... - + File Файл - + Directory Директория - + Application Launcher Загрузчик приложений - + Launch... Загрузка... - - Terminal - Терминал - - - + SlideShow Слайд шоу - + Multimedia Player Мультимедийный плеер - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... - + View Files... Просмотр файлов... - + Checksums Контрольная сумма - + Properties Свойства - + File Checksums: Контрольные суммы файла: - + Missing Utility Утилита не найдена - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Утилита "Lumina-FileInfo" не может быть найдена в системе. Пожалуйста, установите ее в первую очередь. - + Open Открыть - + Rename... Переименовать... - + Cut Selection Вырезать выделенное - + Copy Selection Копировать выделенное - + Paste Вставить - + Delete Selection Удалить выделенное + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -612,12 +637,12 @@ New Location: %2 Insight - + Shift+Left Shift+Влево - + Shift+Right Shift+Вправо @@ -627,377 +652,382 @@ New Location: %2 Файл - + View Вид - + View Mode Режим просмотра - + Bookmarks Закладки - + External Devices Внешние устройства - + Git Git - + New Tab Новая вкладка - + New Browser Новый браузер - + Show Image Previews - + Search Directory... Поиск в каталоге... - + Increase Icon Size Увеличить размер иконки - + Decrease Icon Size Уменьшить размер иконки - + Larger Icons Большие иконки - + Ctrl++ Ctrl++ - + Smaller Icons Маленькие иконки - + Ctrl+- Ctrl+- - + New Window Новое окно - + Ctrl+N Ctrl+N - + Add Bookmark Добавить закладку - + Ctrl+D Ctrl+D - + Delete Selection Удалить выделенное - + Del Del - + Refresh Обновление - + Close Tab Закрыть вкладку - + Repo Status Статус хранилища - + Clone Repository Клонировать хранилище - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Выход - + Ctrl+Q Ctrl+Q - + &Preferences Настройка &P - + Show Hidden Files Показать скрытые файлы - + Scan for Devices Поиск устройств - + Manage Bookmarks Управление закладками - + Show Action Buttons Показывать кнопки - + Ctrl+F Ctrl+F - + Detailed List Подробный список - + Basic List Список - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Переименовать... - + F2 F2 - + Cut Selection Вырезать выделенное - + Copy Selection Копировать выделенное - + Paste Вставить - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Недопустимая папка - + The following directories are invalid and could not be opened: Следующие папки недопустимы и не могут быть открыты: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root Root - + %1 (Type: %2) %1 (тип: %2) - + Filesystem: %1 Файловая система: %1 - + New Bookmark Новая закладка - + Name: Имя: - + Invalid Name Недопустимое имя - + This bookmark name already exists. Please choose another. Закладка с таким именем уже есть. Задайте другое имя. - + Git Repository Status Статус Git хранилища - + Multimedia Мультимедиа - + Slideshow Слайдшоу - + Items to be removed: Объекты будут удалены: - + Verify Quit Проверка Выхода - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? У вас открыто несколько вкладок. Вы уверены, что хотите выйти? - + Verify Removal Проверка Удаления - + WARNING: This will permanently delete the file(s) from the system! Внимание: Это навсегда удалит файл(ы) из системы! - + Are you sure you want to continue? Вы уверены, что хотите продолжить? - + Rename File Переименовать файл - + New Name: Новое Имя: - + Overwrite File? Перезаписать файл? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Существующий файл с таким именем будет заменен. Вы уверены, что хотите продолжить? @@ -1213,67 +1243,67 @@ New Location: %2 XDGDesktopList - + Multimedia Мультимедиа - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts index 37498a89..0013cb24 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Meno - + Size Veľkosť - + Type Typ - + Date Modified Dátum zmeny - + Date Created Dátum vytvorenia - + Capacity: %1 Kapacita: %1 - + Files: %1 (%2) Súbory : %1 (%2) - + Files: %1 - + Dirs: %1 Adresáre: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Formulár - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Späť - - + + Go back to previous directory Vráťte sa do predchádzajúceho adresára - + Up Hore - - + + Go to parent directory Prejdite do nadriadeného adresára - + Home Domovská zložka - - + + Go to home directory Choďte do domovského adresára - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Limitovaný prístup) - - + + New Document Nový dokument - - - + + + Name: Meno: - + Error Creating Document Chyba pri vytvorení dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokument nie je možné vytvoriť. Uistite sa, či máté dostatočné práva. - + New Directory Nový priečinok - - - + + + Invalid Name Neplatné meno - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Súbor alebo adresár s takým istým názvom už existuje. Prosím, použite iný názov. - + Error Creating Directory Chyba pri vytváraní adresára - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Priečinok nemôže byť vytvorený. Prosím uistite sa, či máte dostatočné práva na úpravu aktuálneho adresára. - + Current Aktuálny - + Create... - + File Súbor - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Kontrolný súčet súboru - + Missing Utility Chýbajú utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-fileinfo" utility nie je možné nájsť v systéme. Prosím najprv ju nainštalujte. - + Open Otvoriť - + Rename... - + Cut Selection Vystrihnúť výber - + Copy Selection Kopírovať označené - + Paste Vložiť - + Delete Selection Zmazať výber + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ New Location: %2 Náhľad - + Shift+Left Shift+Šípka vľavo - + Shift+Right Shift+šípka vpravo @@ -628,377 +653,382 @@ New Location: %2 Súbor - + View Zobraziť - + View Mode Režim zobrazenia - + Bookmarks Záložky - + External Devices Externé rozhranie - + Git - + New Tab - + New Browser Nový prehliadač - + Show Image Previews - + Search Directory... - + Increase Icon Size Zväčšiť veľkosť ikony - + Decrease Icon Size Zmenšiť veľkosť ikony - + Larger Icons Veľké ikony - + Ctrl++ - + Smaller Icons Menšie ikony - + Ctrl+- - + New Window Nové okno - + Ctrl+N Ctrl+N - + Add Bookmark Pridať záložku - + Ctrl+D Ctrl+D - + Delete Selection Zmazať výber - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Ukončiť - + Ctrl+Q Ctrl+Q - + &Preferences &Predvoľby - + Show Hidden Files Zobraziť skryté súbory - + Scan for Devices Hľadať zariadenia - + Manage Bookmarks Správa záložiek - + Show Action Buttons Zobraziť akčné tlačidlá - + Ctrl+F Ctrl+F - + Detailed List Podrobný zoznam - + Basic List Jednoduchý zoznam - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... - + F2 F2 - + Cut Selection Vystrihnúť výber - + Copy Selection Kopírovať označené - + Paste Vložiť - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Neplatné priečinky - + The following directories are invalid and could not be opened: Nasledujúce adresáre sú chybné a nedajú sa otvoriť: - + CTRL+B - + CTRL+E - + Root Správca - + %1 (Type: %2) %1 (Typ: %2) - + Filesystem: %1 Súborový systém: %1 - + New Bookmark Nová záložka - + Name: Meno: - + Invalid Name Neplatné meno - + This bookmark name already exists. Please choose another. Názov záložky už existuje. Prosím vyberte iný. - + Git Repository Status - + Multimedia Multimédiá - + Slideshow Prezentácia - + Items to be removed: Položky na odstránenie: - + Verify Quit Overte ukončenie - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Máte otvorené viaceré karty. Naozaj ich chcete zatvoriť? - + Verify Removal Overte odstránenie - + WARNING: This will permanently delete the file(s) from the system! Výstraha: Budú natrvalo odstránené súbor/y zo systému! - + Are you sure you want to continue? Naozaj chcete pokračovať? - + Rename File Premenovať súbor - + New Name: Nový názov: - + Overwrite File? Prepísať súbor? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Súbor s rovnakým názvom bude predpísaný. Naozaj chcete pokračovať? @@ -1214,67 +1244,67 @@ New Location: %2 XDGDesktopList - + Multimedia Multimédiá - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts index a7938bf3..befcffb4 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Namn - + Size Storlek - + Type Typ - + Date Modified Ändringsdatum - + Date Created Datum skapad - + Capacity: %1 Kapacitet: %1 - + Files: %1 (%2) Filer: %1 (%2) - + Files: %1 Filer: %1 - + Dirs: %1 Kataloger: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Formulär - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Bakåt - - + + Go back to previous directory Gå tillbaka till förra katalogen - + Up Upp - - + + Go to parent directory Gå till föräldrakatalog - + Home Hem - - + + Go to home directory Gå till hemkatalog - + Menu Meny - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Begränsad tillgång) - - + + New Document Nytt dokument - - - + + + Name: Namn: - + Error Creating Document Fel när dokument skulle skapas - + The document could not be created. Please ensure that you have the proper permissions. Detta dokument kunde inte skapas. Se till att du har rätt behörigheter. - + New Directory Ny katalog - - - + + + Invalid Name Ogiltigt namn - - File Operations - Fil operationer + + Open Current Dir in a Terminal + - - Auto-Extract - + + File Operations + Fil operationer - + Directory Operations Katalog operationer - + Other... - + Loading... Laddar... - - - + + + A file or directory with that name already exists! Please pick a different name. En fil med samma namn finns redan. Använd ett annat namn. - + Error Creating Directory Fel vid skapande av katalog - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Denna katalogen kunde inte skapas. Se till att du har rätt behörigheter att modifera den aktuella katalogen. - + Current Aktuell - + Create... Skapar... - + File Fil - + Directory Katalog - + Application Launcher - + Launch... Startar... - - Terminal - Terminal - - - + SlideShow - + Multimedia Player Multimedia spelare - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... - + View Files... Visa filer... - + Checksums - + Properties Egenskaper - + File Checksums: Filkontrollsummor: - + Missing Utility Saknar Verktyg - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "lumina-Fileinfo" verktyget kunde inte hittas på systemet. Installera det först. - + Open Öppna - + Rename... Byt namn... - + Cut Selection Klipp markering - + Copy Selection Kopiera markering - + Paste Klistra in - + Delete Selection Ta bort markering + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Ny Plats: %2 Insight - + Shift+Left Shift+Vänster - + Shift+Right Shift+Höger @@ -628,377 +653,382 @@ Ny Plats: %2 Fil - + View Visa - + View Mode Visningsläge - + Bookmarks Bokmärken - + External Devices Externa enheter - + Git Git - + New Tab Ny flik - + New Browser Ny flik - + Show Image Previews - + Search Directory... Sök Katalog... - + Increase Icon Size Öka ikonstorlek - + Decrease Icon Size Minska ikonstorlek - + Larger Icons Stora ikoner - + Ctrl++ Ctrl++ - + Smaller Icons Små ikoner - + Ctrl+- Ctrl+- - + New Window Nytt fönster - + Ctrl+N Ctrl+N - + Add Bookmark Lägg till bokmärke - + Ctrl+D Ctrl+D - + Delete Selection Ta bort markering - + Del Del - + Refresh Uppdatera - + Close Tab Stäng flik - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Avsluta - + Ctrl+Q Ctrl+Q - + &Preferences &Inställningar - + Show Hidden Files Visa dolda filer - + Scan for Devices Sök efter enheter - + Manage Bookmarks Hantera bokmärken - + Show Action Buttons Visa aktiva knappar - + Ctrl+F Ctrl+F - + Detailed List Detaljerad lista - + Basic List Grundläggande Lista - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Byt namn... - + F2 F2 - + Cut Selection Klipp ut markering - + Copy Selection Kopiera markering - + Paste Klistra in - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Ogiltiga kataloger - + The following directories are invalid and could not be opened: Följande kataloger är ogiltiga och kunde inte öppnas: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root Root - + %1 (Type: %2) %1 (Typ: %2) - + Filesystem: %1 Filsystem: %1 - + New Bookmark Nytt bokmärke - + Name: Namn: - + Invalid Name Ogiltigt namn - + This bookmark name already exists. Please choose another. Det här bokmärks namnet finns redan. Välj ett annat namn. - + Git Repository Status - + Multimedia Multimedia - + Slideshow Bildspel - + Items to be removed: Filer som ska bli borttagna: - + Verify Quit Verifera Avslut - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Du har flera flikar öppna. Är du säker på att du vill avsluta? - + Verify Removal Verifiera Borttagande - + WARNING: This will permanently delete the file(s) from the system! VARNING: Detta kommer att permanent ta bort filerna från systemet! - + Are you sure you want to continue? Är du säker på att du vill fortsätta? - + Rename File Byt namn på fil - + New Name: Nytt namn: - + Overwrite File? Skriv över fil? - + An existing file with the same name will be replaced. Are you sure you want to proceed? En befintlig fil med samma namn kommer att ersättas. Är du säker på att du vill fortsätta? @@ -1214,67 +1244,67 @@ Ny Plats: %2 XDGDesktopList - + Multimedia Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_th.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_th.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_th.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_th.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts index b2516542..354de22a 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Ad - + Size Boyut - + Type Tür - + Date Modified Değiştirilme Tarihi - + Date Created Oluşturulma Tarihi - + Capacity: %1 Kapasite: %1 - + Files: %1 (%2) Dosyalar: %1 (%2) - + Files: %1 - + Dirs: %1 Dizinler: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Form - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Geri - - + + Go back to previous directory Önceki dizine geri git - + Up Yukarı - - + + Go to parent directory Üst dizine git - + Home Ev - - + + Go to home directory Ev dizinine git - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Sınırlı Erişim) - - + + New Document Yeni Belge - - - + + + Name: Ad: - + Error Creating Document Belge Oluşturmada Hata - + The document could not be created. Please ensure that you have the proper permissions. Belge oluşturulamadı. Lütfen uygun izinlere sahip olduğunuza emin olun. - + New Directory Yeni Dizin - - - + + + Invalid Name Geçersiz Ad - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Aynı adda bir dosya ya da dizin zaten mevcut! Lütfen farklı bir ad seçin. - + Error Creating Directory Dizin Oluşturmada Hata - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Dizin oluşturulamadı. Lütfen geçerli dizinde değişiklik yapmak için uygun izinlere sahip olduğunuza emin olun. - + Current Geçerli - + Create... - + File Dosya - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Dosya Sağlama Toplamları: - + Missing Utility Eksik Gereç - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Sistemde "lumina-fileinfo" gereci bulunamadı. Lütfen önce gereci yükleyin. - + Open - + Rename... Yeniden adlandır... - + Cut Selection Seçimi Kes - + Copy Selection Seçimi Kopyala - + Paste Yapıştır - + Delete Selection Seçimi Sil + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ Yeni Konum: %2 Görü - + Shift+Left Shift+Sol - + Shift+Right Shift+Sağ @@ -628,377 +653,382 @@ Yeni Konum: %2 Dosya - + View Görünüm - + View Mode Görünüm Modu - + Bookmarks Yer imleri - + External Devices Harici Agıtlar - + Git - + New Tab - + New Browser Yeni Gözatıcı - + Show Image Previews - + Search Directory... Dizinde Ara... - + Increase Icon Size Simge Boyutunu Arttır - + Decrease Icon Size Simge Boyutunu Azalt - + Larger Icons Daha Büyük Simgeler - + Ctrl++ Ctrl++ - + Smaller Icons Daha Küçük Simgeler - + Ctrl+- Ctrl+- - + New Window Yeni Pencere - + Ctrl+N Ctrl+N - + Add Bookmark Yer İmi Ekle - + Ctrl+D Ctrl+D - + Delete Selection Seçimi Sil - + Del Sil - + Refresh Yenile - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Çık - + Ctrl+Q Ctrl+Q - + &Preferences &Tercihler - + Show Hidden Files Gizli Dosyaları Göster - + Scan for Devices Aygıtlar için Tara - + Manage Bookmarks Yer İmlerini Yönet - + Show Action Buttons Eylem Düğmelerini Göster - + Ctrl+F Ctrl+F - + Detailed List Ayrıntılı Liste - + Basic List Temel Liste - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Yeniden adlandır... - + F2 F2 - + Cut Selection Seçimi Kes - + Copy Selection Seçimi Kopyala - + Paste Yapıştır - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Geçersiz Dizinler - + The following directories are invalid and could not be opened: İzleyen dizinler geçersiz ve açılamadı: - + CTRL+B - + CTRL+E - + Root Kök - + %1 (Type: %2) %1 (Tür: %2) - + Filesystem: %1 Dosya sistemi: %1 - + New Bookmark Yeni Yer İmi - + Name: Ad: - + Invalid Name Geçersiz Ad - + This bookmark name already exists. Please choose another. Bu yer imi adı zaten mevcut. Lütfen başka bir ad seçin. - + Git Repository Status - + Multimedia Multimedya - + Slideshow Slayt gösterisi - + Items to be removed: Kaldırılacak öğeler: - + Verify Quit Çıkışı Doğrula - + Ctrl+H Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? Açık birden çok sekmeniz mevcut. Çıkmak istediğinize emin misiniz? - + Verify Removal Kaldırmayı Doğrula - + WARNING: This will permanently delete the file(s) from the system! UYARI: Bu işlemle dosya(lar) sistemden kalıcı olarak silinecek! - + Are you sure you want to continue? Devam etmek istediğinize emin misiniz? - + Rename File Dosyayı Yeniden Adlandır - + New Name: Yeni Ad: - + Overwrite File? Dosyanın Üzerine Yazılsın Mı? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Aynı ada sahip mevcut bir dosya yenisiyle değiştirilecek. İlerlemek istediğinize emin misiniz? @@ -1214,67 +1244,67 @@ Yeni Konum: %2 XDGDesktopList - + Multimedia Multimedya - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts index 20972879..32e5cdae 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name Ім'я - + Size Розмір - + Type Тип - + Date Modified Дата зміни - + Date Created Дата створення - + Capacity: %1 Місткість: %1 - + Files: %1 (%2) Файли: %1 (%2) - + Files: %1 - + Dirs: %1 Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ Форма - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back Назад - - + + Go back to previous directory Повернутися до попереднього каталогу - + Up Верх - - + + Go to parent directory В батьківську теку - + Home Домівка - - + + Go to home directory В домашню теку - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) (Обмежений доступ) - - + + New Document Новий документ - - - + + + Name: Ім'я: - + Error Creating Document Помилка створення документа - + The document could not be created. Please ensure that you have the proper permissions. Цей документ не може бути створений. Будь ласка, впевніться, що у вас є відповідні права. - + New Directory Новий каталог - - - + + + Invalid Name Некоректна назва - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл або каталог з таким іменем вже існує! Будь ласка, виберіть інше ім'я. - + Error Creating Directory Помилка створення каталогу - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Каталог не може бути створений. Будь ласка, впевніться, що у вас є відповідні права, щоб змінити поточний каталог. - + Current Поточний - + Create... - + File Файл - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: Контрольні суми файлів: - + Missing Utility Утиліта не знайдена - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. Утиліта "Lumina-FileInfo" не може бути знайдена в системі. Будь ласка, встановіть її в першу чергу. - + Open Відкрити - + Rename... Перейменувати... - + Cut Selection Вирізати обране - + Copy Selection Копіювати виділене - + Paste Вставити - + Delete Selection Видалити виділене + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -613,12 +638,12 @@ New Location: %2 Insight - + Shift+Left Shift+ліворуч - + Shift+Right Shift+праворуч @@ -628,377 +653,382 @@ New Location: %2 Файл - + View Вигляд - + View Mode Режим перегляду - + Bookmarks Закладки - + External Devices Зовнішні пристрої - + Git - + New Tab - + New Browser Новий браузер - + Show Image Previews - + Search Directory... Пошук у каталозі... - + Increase Icon Size Збільшити розмір піктограми - + Decrease Icon Size Зменшити розмір піктограми - + Larger Icons Великі піктограми - + Ctrl++ Ctrl++ - + Smaller Icons Малі піктограми - + Ctrl+- Ctrl+- - + New Window Нове вікно - + Ctrl+N Ctrl+N - + Add Bookmark Додати закладку - + Ctrl+D Ctrl+D - + Delete Selection Видалити виділене - + Del Del - + Refresh Оновити - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit Вихід - + Ctrl+Q Ctrl+Q - + &Preferences &Налаштування - + Show Hidden Files Показати приховані файли - + Scan for Devices Пошук пристроїв - + Manage Bookmarks Керування закладками - + Show Action Buttons Показати дійові кнопки - + Ctrl+F Ctrl+F - + Detailed List Детальний список - + Basic List Список - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... Перейменувати... - + F2 F2 - + Cut Selection Вирізати обране - + Copy Selection Копіювати виділене - + Paste Вставити - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories Невірний каталог - + The following directories are invalid and could not be opened: Наступні папки недопустимі та не можуть бути відкриті: - + CTRL+B - + CTRL+E - + Root Root - + %1 (Type: %2) %1 (Тип: %2) - + Filesystem: %1 Файлова система: %1 - + New Bookmark Нова закладка - + Name: Ім'я: - + Invalid Name Некоректна назва - + This bookmark name already exists. Please choose another. Закладка з таким іменем вже існує. Виберіть іншу назву. - + Git Repository Status - + Multimedia Мультимедіа - + Slideshow Слайдшоу - + Items to be removed: Об'єкти будуть видалені: - + Verify Quit Перевірка виходу - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? У вас відкрито декілька вкладок, ви дійсно хочете його закрити? - + Verify Removal Перевірити Видалення - + WARNING: This will permanently delete the file(s) from the system! УВАГА: Це назавжди видалить файл(и) з системи! - + Are you sure you want to continue? Ви справді бажаєте продовжити? - + Rename File Перейменувати файл - + New Name: Нова назва: - + Overwrite File? Перезаписати файл? - + An existing file with the same name will be replaced. Are you sure you want to proceed? Існуючий файл з таким іменем буде замінений. Ви впевнені, що хочете продовжити? @@ -1214,67 +1244,67 @@ New Location: %2 XDGDesktopList - + Multimedia Мультимедіа - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_CN.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_CN.ts index 6f6e3797..cc7eafdd 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_CN.ts @@ -59,52 +59,52 @@ BrowserWidget - + Name 名称 - + Size 大小 - + Type 类型 - + Date Modified 修改日期 - + Date Created 建立日期 - + Capacity: %1 容量: %1 - + Files: %1 (%2) 文件: %1 (%2) - + Files: %1 文件: %1 - + Dirs: %1 目录: %1 - + No Directory Contents 目录无内容 @@ -117,270 +117,295 @@ 表单 - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes 增加图标大小 - + Decrease Icon Sizes 减小图标大小 - + Back 返回 - - + + Go back to previous directory 返回上一个目录 - + Up 向上 - - + + Go to parent directory 前往上层目录 - + Home 用户目录 - - + + Go to home directory 回到用户目录 - + Menu 菜单 - + Select Action 选择动作 - + Single Column - + Single column view 单列视图 - + Dual Column 双列 - + Dual Column View 双列视图 - + (Limited Access) (有限访问) - - + + New Document 新文档 - - - + + + Name: 名称: - + Error Creating Document 建立文档出错 - + The document could not be created. Please ensure that you have the proper permissions. 无法建立文档。请确定您有适当的权限。 - + New Directory 新目录 - - - + + + Invalid Name 无效的名称 - - File Operations - 文件操作 + + Open Current Dir in a Terminal + - - Auto-Extract - + + File Operations + 文件操作 - + Directory Operations 目录操作 - + Other... - + Loading... 载入中... - - - + + + A file or directory with that name already exists! Please pick a different name. 已有相同名字的文件或目录存在!请选择一个不同的名字。 - + Error Creating Directory 创建目录错误 - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. 目录无法被建立。请检查您有更改当前目录的适当权限。 - + Current 当前 - + Create... 创建... - + File 文件 - + Directory 目录 - + Application Launcher 应用程序启动器 - + Launch... 启动... - - Terminal - 终端 - - - + SlideShow 幻灯片 - + Multimedia Player 多媒体播放器 - + + Open Current Dir as Root + + + + + Archive Options + + + + Open with... - + View Files... 查看文件... - + Checksums 校验 - + Properties 属性 - + File Checksums: 文件校验值: - + Missing Utility 缺少的工具 - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. 无法在您的系统里找到 "lumina-fileinfo" 工具。请先安装它。 - + Open 打开 - + Rename... 重命名... - + Cut Selection 剪切选中部分 - + Copy Selection 复制选中部分 - + Paste 粘贴 - + Delete Selection 删除选中部分 + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -618,12 +643,12 @@ New Location: %2 启示 - + Shift+Left Shift+Left - + Shift+Right Shift+Right @@ -633,381 +658,386 @@ New Location: %2 文件 - + View 查看 - + View Mode 视图模式 - + Bookmarks 书签 - + External Devices 外部设备 - + Git Git - + New Tab 新标签 - + New Browser 新浏览器 - + Show Image Previews - + Search Directory... 搜索目录... - + Increase Icon Size 增加图标大小 - + Decrease Icon Size 减少图标大小 - + Larger Icons 更大的图标 - + Ctrl++ Ctrl++ - + Smaller Icons 更小的图标 - + Ctrl+- Ctrl+- - + New Window 新窗口 - + Ctrl+N Ctrl+N - + Add Bookmark 添加书签 - + Ctrl+D Ctrl+D - + Delete Selection 删除选择 - + Del Del - + Refresh 刷新 - + Close Tab 关闭标签 - + Repo Status 回复状态 - + Clone Repository 克隆存储库 - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T Ctrl+T - + Exit 退出 - + Ctrl+Q Ctrl+Q - + &Preferences 首选项(&P) - + Show Hidden Files 显示隐藏文件 - + Scan for Devices 扫描设备 - + Manage Bookmarks 管理书签 - + Show Action Buttons 显示动作按钮 - + Ctrl+F Ctrl+F - + Detailed List 详细列表 - + Basic List 基本清单 - + Ctrl+W Ctrl+W - + F5 F5 - + Ctrl+C Ctrl+C - + Rename... 重命名... - + F2 F2 - + Cut Selection 剪切选中部分 - + Copy Selection 复制选择部分 - + Paste 粘贴 - + Ctrl+V Ctrl+V - + Ctrl+X Ctrl+X - + Invalid Directories 无效的目录 - + The following directories are invalid and could not be opened: 以下目录无效,无法打开: - + CTRL+B CTRL+B - + CTRL+E CTRL+E - + Root - + %1 (Type: %2) %1 (类型:%2) %1 (类型:%2) - + Filesystem: %1 文件系统:%1 - + New Bookmark 新书签 - + Name: 名称: - + Invalid Name 无效的名称 - + This bookmark name already exists. Please choose another. 已经存在这个书签名。请输入另一个名字。 - + Git Repository Status Git 存储库状态 - + Multimedia 多媒体 - + Slideshow 幻灯片 - + Items to be removed: 将要删除的项目: - + Verify Quit 快速退出 快速退出 - + Ctrl+H Ctrl+H - + Ctrl+L Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? 你有多个标签打开。你确定要退出吗? 你有多个标签打开。你确定要退出吗? - + Verify Removal 快速移除 快速移除 - + WARNING: This will permanently delete the file(s) from the system! 警告:这将永久删除系统中的文件! - + Are you sure you want to continue? 您确定要继续吗? - + Rename File 重命名文件 - + New Name: 新名称: - + Overwrite File? 覆盖文件吗? - + An existing file with the same name will be replaced. Are you sure you want to proceed? 将替换同名的现有文件。你确定要继续吗? 将替换同名的现有文件。你确定要继续吗? @@ -1224,67 +1254,67 @@ New Location: %2 XDGDesktopList - + Multimedia 多媒体 - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_HK.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_HK.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_HK.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_TW.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_TW.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zh_TW.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts index 2055ca65..aa308f9c 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts @@ -57,52 +57,52 @@ BrowserWidget - + Name - + Size - + Type - + Date Modified - + Date Created - + Capacity: %1 - + Files: %1 (%2) - + Files: %1 - + Dirs: %1 - + No Directory Contents @@ -115,270 +115,295 @@ - + + * - FILE MANAGER RUNNING AS ROOT- * + + + + Increase Icon Sizes - + Decrease Icon Sizes - + Back - - + + Go back to previous directory - + Up - - + + Go to parent directory - + Home - - + + Go to home directory - + Menu - + Select Action - + Single Column - + Single column view - + Dual Column - + Dual Column View - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - - File Operations + + Open Current Dir in a Terminal - - Auto-Extract + + File Operations - + Directory Operations - + Other... - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - - Terminal + + SlideShow + + + + + Multimedia Player - - SlideShow + + Open Current Dir as Root - - Multimedia Player + + Archive Options - + Open with... - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection + + + Extract Here + + + + + Archive Selection + + + + + Select Archive + + FODialog @@ -610,12 +635,12 @@ New Location: %2 - + Shift+Left - + Shift+Right @@ -625,377 +650,382 @@ New Location: %2 - + View - + View Mode - + Bookmarks - + External Devices - + Git - + New Tab - + New Browser - + Show Image Previews - + Search Directory... - + Increase Icon Size - + Decrease Icon Size - + Larger Icons - + Ctrl++ - + Smaller Icons - + Ctrl+- - + New Window - + Ctrl+N - + Add Bookmark - + Ctrl+D - + Delete Selection - + Del - + Refresh - + Close Tab - + Repo Status - + Clone Repository - + Show Directory Tree Window - + Show Directory Tree Pane - + Ctrl+P - + + Open as Root + + + + Ctrl+T - + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F - + Detailed List - + Basic List - + Ctrl+W - + F5 - + Ctrl+C - + Rename... - + F2 - + Cut Selection - + Copy Selection - + Paste - + Ctrl+V - + Ctrl+X - + Invalid Directories - + The following directories are invalid and could not be opened: - + CTRL+B - + CTRL+E - + Root - + %1 (Type: %2) - + Filesystem: %1 - + New Bookmark - + Name: - + Invalid Name - + This bookmark name already exists. Please choose another. - + Git Repository Status - + Multimedia - + Slideshow - + Items to be removed: - + Verify Quit - + Ctrl+H - + Ctrl+L - + You have multiple tabs open. Are you sure you want to quit? - + Verify Removal - + WARNING: This will permanently delete the file(s) from the system! - + Are you sure you want to continue? - + Rename File - + New Name: - + Overwrite File? - + An existing file with the same name will be replaced. Are you sure you want to proceed? @@ -1211,67 +1241,67 @@ New Location: %2 XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_af.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_af.ts index 584bd823..cebf054f 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_af.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_af.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ar.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ar.ts index 4b4aa633..a54adecd 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ar.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ar.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_az.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_az.ts index 9f6bec09..763367b1 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_az.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_az.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bg.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bg.ts index c9243cfa..d5c3886e 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bg.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bg.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bn.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bn.ts index d75573b9..57764182 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bn.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bn.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bs.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bs.ts index 38d2467c..f3c411bd 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bs.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_bs.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ca.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ca.ts index fbb56eb3..ba197b5c 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ca.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ca.ts @@ -366,67 +366,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Paràmetres - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cs.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cs.ts index bc669d26..b434a529 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cs.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cs.ts @@ -366,67 +366,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Nastavení - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cy.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cy.ts index f33fc060..591baf77 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cy.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_cy.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_da.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_da.ts index 13ec7add..b2f87e32 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_da.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_da.ts @@ -366,67 +366,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Indstillinger - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_de.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_de.ts index 44e75d30..7ab5151e 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_de.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_de.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_el.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_el.ts index 4c3b09b2..c552ee88 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_el.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_el.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_AU.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_AU.ts index c20a3dd3..c6a49cab 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_AU.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_GB.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_GB.ts index 9eb1ef13..7cff517b 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_GB.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_ZA.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_ZA.ts index ed971a17..3fb687a1 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_en_ZA.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_es.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_es.ts index 4afe8e1d..f89ec4a0 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_es.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_es.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_et.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_et.ts index 924c9953..02771f0d 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_et.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_et.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_eu.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_eu.ts index 5e58aad4..e27e2816 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_eu.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_eu.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fa.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fa.ts index 10e17c72..0f0e6308 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fa.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fa.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fi.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fi.ts index ba624171..632ef536 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fi.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fi.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr.ts index 87d5ec0d..b3320024 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr_CA.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr_CA.ts index 94318cc5..a7a68a8d 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_fr_CA.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_gl.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_gl.ts index e107ffb9..5cde8e2b 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_gl.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_gl.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_he.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_he.ts index 3781b4ed..c314c095 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_he.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_he.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hi.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hi.ts index e53f5b89..009e613a 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hi.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hi.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hr.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hr.ts index 09bc3703..150b380e 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hr.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hr.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hu.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hu.ts index afeae7a8..80414a8b 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hu.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_hu.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_id.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_id.ts index 17619fe2..2cbe35b2 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_id.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_id.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_is.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_is.ts index c25a1b66..d25f616f 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_is.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_is.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_it.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_it.ts index d55cc21e..9f116838 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_it.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_it.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ja.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ja.ts index 006ccfc8..15012b7a 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ja.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ja.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ka.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ka.ts index 927cb0de..303af344 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ka.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ka.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ko.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ko.ts index 83012623..b4b73a13 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ko.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ko.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lt.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lt.ts index 62ca1df7..ecaf4cbc 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lt.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lt.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Nustatymai - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lv.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lv.ts index c725c036..e71f3e5b 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lv.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_lv.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mk.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mk.ts index c4a0bf31..8f021ac8 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mk.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mk.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mn.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mn.ts index 247b9ba6..ab7e3628 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mn.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mn.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ms.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ms.ts index 0b2d2be5..c111ad87 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ms.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ms.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mt.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mt.ts index e3d69fea..739f8779 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mt.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_mt.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nb.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nb.ts index 58b7cebb..eabf3fec 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nb.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nb.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nl.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nl.ts index 3e7c1068..ba312720 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nl.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_nl.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pa.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pa.ts index 13a5ba04..1e72bf0d 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pa.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pa.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pl.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pl.ts index 3c655dd2..b1663050 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pl.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pl.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt.ts index 64c343d4..ef987976 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt_BR.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt_BR.ts index c13c9078..f60ce2a0 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_pt_BR.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ro.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ro.ts index 9220c6ff..cae58ffc 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ro.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ro.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ru.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ru.ts index 9eb16e3f..0664622c 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ru.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ru.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Настройки - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sk.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sk.ts index 71b15106..78f7082d 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sk.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sk.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sl.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sl.ts index d8c2d610..c4d56a43 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sl.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sl.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sr.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sr.ts index b7473591..770395c5 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sr.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sr.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sv.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sv.ts index 3efc0baa..8ba267d6 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sv.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sv.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sw.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sw.ts index bb546a05..9d89cf42 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sw.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_sw.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ta.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ta.ts index 4a4ccf7b..eee4dc16 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ta.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_ta.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tg.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tg.ts index 4514b960..f1795889 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tg.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tg.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_th.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_th.ts index 53f9d54a..c5bec10e 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_th.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_th.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tr.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tr.ts index f9a04242..b21c5ba4 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tr.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_tr.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uk.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uk.ts index e4e55793..3f88d4b9 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uk.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uk.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uz.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uz.ts index 2e26c73f..acff1e43 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uz.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_uz.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_vi.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_vi.ts index e5563d59..fc40dc6a 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_vi.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_vi.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_CN.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_CN.ts index 48c35145..86a2bafc 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_CN.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings 设置 - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_HK.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_HK.ts index 852514dd..6539da8e 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_HK.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_TW.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_TW.ts index 6dacdf4a..8328ea5c 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zh_TW.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zu.ts b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zu.ts index 54b342bb..26d5ebbf 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zu.ts +++ b/src-qt5/desktop-utils/lumina-mediaplayer/i18n/l-mediap_zu.ts @@ -365,67 +365,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts index 14281ae0..23786591 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_af.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts index 7900cb58..3a40829b 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ar.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts index 5e7d0d53..50565634 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_az.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts index 37b59d5f..c965a37c 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bg.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts index 58ec50b3..dd1ca1b5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bn.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts index 85b5dec4..521e8075 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_bs.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts index 70719193..ea91d197 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ca.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts index 85754bd4..f5fd3db5 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cs.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts index c8383f8a..3e83c8d2 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_cy.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts index b02a9220..093757c4 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_da.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts index 87cb14b0..b21a2d69 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_de.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts index 5d0d3730..8f5ae32e 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_el.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts index 9b01ebbc..7d4fb176 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_AU.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts index 7df4d774..b2b42a06 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_GB.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts index 91bcca6a..1569ff14 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_en_ZA.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts index f4859ed5..8056b730 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_es.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts index 2eb67231..b52a4a55 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_et.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts index 6c6774c5..ff52b0a1 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_eu.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts index 31d272bf..957ddab9 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fa.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts index 910bba00..2f39d575 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fi.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts index 86bb5047..170c3c66 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts index 57eab0dd..303d7a8d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_fr_CA.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts index 326772ca..f0320950 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_gl.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts index 8618406e..a7e893a6 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_he.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts index e43064ad..fc123b31 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hi.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts index af3be492..e3bdb660 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hr.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts index 33a50231..6d263f2a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_hu.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts index f5dcb4ad..072a7e87 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_id.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts index c1154866..e70dd974 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_is.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts index a211917a..af69dbab 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_it.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts index 413cecb2..65bd0260 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ja.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts index 6d6a4af9..74220a42 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ka.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts index 1ca34a93..3bebe109 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ko.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts index 1de4aa7e..7139153d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lt.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts index 197586d2..1a9e9b10 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_lv.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts index bdf028dd..02b22e68 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mk.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts index 97a55860..72b39381 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mn.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts index 19c7785a..6facf85a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ms.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts index fa613161..c2ba6f0a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_mt.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts index 7ef9f50f..d97bef48 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nb.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts index 40e8c3f0..0ee4f6bc 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ne.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts index 0614dae0..87bf1965 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_nl.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts index ceaaf0fa..29904b2a 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pa.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts index 70fbeada..7a04e51d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pl.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts index 270ce968..b7079696 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts index 270ce968..b7079696 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_pt_BR.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts index 5f4e3dcc..5d60e79f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ro.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts index a54517c5..966216b6 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ru.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts index a09a3e35..693a07dc 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sa.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts index 02a5b0b3..ad150876 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sk.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts index 54fca079..ffcb84bf 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sl.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts index 7645e38f..f90edcbc 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sr.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts index 8d135f59..10c15830 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sv.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts index 257d39c5..461d154b 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_sw.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts index 9768b0de..c5c74e20 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ta.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts index 72fe08db..9b456c7f 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tg.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts index a0148386..215a5cc8 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_th.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts index 70a39405..140eb00c 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_tr.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts index 806fe5b5..724ab1e4 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uk.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts index 3a012813..82dfefbb 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_ur.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts index 5c4f890f..d2cc02fd 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_uz.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts index e5164c70..0b3cab91 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_vi.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts index 0c621541..7f5ccd68 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_CN.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts index 3300103b..f68078d0 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_HK.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts index c687d029..53b36b9d 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zh_TW.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts index 873d25c1..8b76c2c0 100644 --- a/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts +++ b/src-qt5/desktop-utils/lumina-pdf/i18n/l-pdf_zu.ts @@ -30,7 +30,7 @@ - + Open PDF @@ -100,32 +100,32 @@ - + Unlock PDF - + Password: - + %1 (%2) - + Select Screen - + Screen: - + PDF Documents (*.pdf) @@ -133,67 +133,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts index 9a38a4b8..05bb4165 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts index 22ab19c6..23d94ff6 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Paràmetres - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts index 261becae..53f849da 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Nastavení - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts index 2c0693c4..64a8cfb1 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Indstillinger - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts index 4a707c95..a51e512b 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Einstellungen - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts index 14a667f7..199162a7 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_AU.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_AU.ts index ad21dcbe..49a17314 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_AU.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts index 6cdbc01d..50abdb00 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts index d0b06524..3c59c261 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts index f81af5a6..b6a14a38 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts index 8507e35f..1f60d7d8 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts index da93ff87..5763cd82 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts index 908ba94e..9f440697 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts index 7231605f..19b0af3c 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts index c55911aa..a69eb3ac 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts index 870e9dc9..3b8a6588 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts index f93b1bf1..259760f7 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts index abdc1c6f..35a49b0e 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts index 17e13c63..7832e47a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts @@ -220,67 +220,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts index 7786e6d0..7bb9b56f 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts index c1c6cc84..7037576b 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Nustatymai - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts index a77d81c7..2968f087 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts index 74d4e952..8c79c59c 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts index 0b56fa55..77ab6d2a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts index d3da1686..500044d4 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts index b8cf088f..cbae9a4b 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts index 3c5fe915..8a036ffc 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Настройки - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts index ac5ec8ee..ef48fc68 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts index 299fda94..17061024 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings Inställningar - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts index 005bc8ec..64c7f06c 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts index 4034b5ea..a9fb1bbd 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts index 8e4d4f32..6ca33245 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings 设置 - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts index be4d4faf..61aed4ec 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts @@ -215,67 +215,67 @@ XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts index ad8c977b..8e2a8073 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts index 015bdd20..6f8bb051 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Es perden els canvis no desats? @@ -301,15 +300,17 @@ El voleu tancar tanmateix? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Hi ha canvis no desats. -Voleu tancar l'editor tanmateix? - -%1 + @@ -348,67 +349,67 @@ Voleu tancar l'editor tanmateix? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts index 6fe1a0c9..855525f3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Ztratit neuložené změny? @@ -301,15 +300,17 @@ Přesto jej chcete zavřít? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Jsou tu neuložené změny. -Přesto chcete editor zavřít? - -%1 + @@ -348,67 +349,67 @@ Přesto chcete editor zavřít? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index 5b4f7c90..fa05d775 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Mist ændringer som ikke er gemt? @@ -301,15 +300,17 @@ Vil du lukke den alligevel? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Der er ændringer som ikke er gemt. -Vil du lukke redigeringsprogrammet alligevel? - -%1 + @@ -348,67 +349,67 @@ Vil du lukke redigeringsprogrammet alligevel? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts index 250d19a5..18113bd6 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Nicht gespeicherte Änderungen verlieren? @@ -301,15 +300,17 @@ Möchten Sie sie trotzdem schließen? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Es gibt nicht gespeicherte Änderungen. -Möchten Sie den Editor trotzdem schließen? - -%1 + @@ -348,67 +349,67 @@ Möchten Sie den Editor trotzdem schließen? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts index 89496f7d..3895022b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Επιθυμείτε να χάσετε τις μη αποθηκευμένες αλλαγές; @@ -301,15 +300,17 @@ Do you want to close it anyway? % 1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Υπάρχουν μη αποθηκευμένες αλλαγές. -Θέλετε να κλείσετε το πρόγραμμα επεξεργασίας ούτως ή άλλως; - -%1 + @@ -348,67 +349,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_AU.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_AU.ts index 3b76ab89..57cc5595 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_AU.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_AU.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts index 5c3674b0..ffe8ee23 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts index f43bdd4a..df04b6d0 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts index 4f3d13b4..414221c5 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts index d9a226ac..6b802803 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts index b69710f7..3bd25129 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Perdre les modifications non enregistrées ? @@ -301,15 +300,17 @@ Voulez-vous le fermer quand même ? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Il y a des modifications non enregistrées. -Voulez-vous tout de même fermer l'éditeur ? - -%1 + @@ -348,67 +349,67 @@ Voulez-vous tout de même fermer l'éditeur ? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts index 07281b9d..e051b2c5 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts index 0d4ea8b3..2e9c3154 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Odaveszted a mentetlen változásokat ? @@ -301,15 +300,17 @@ Mindenképpen bezárod ? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Mentetlen változások vannak! -Mindenképp bezárod ? - -%1 + @@ -348,67 +349,67 @@ Mindenképp bezárod ? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts index 2e5d2d32..115db3c4 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts index 2bca0345..2eaa3aaf 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Perdere le modifiche non salvate? @@ -301,15 +300,17 @@ Vuoi chiudere comunque? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Ci sono modifiche non salvate. -Vuoi chiudere l'editor comunque? - -% 1 + @@ -348,67 +349,67 @@ Vuoi chiudere l'editor comunque? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts index dd4018fd..6af7a774 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts @@ -286,7 +286,6 @@ - Lose Unsaved Changes? 保存されていない変更を削除しますか? @@ -303,15 +302,17 @@ Do you want to close it anyway? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - 保存されていない変更があります。 -それでもエディターを閉じますか? - -%1 + @@ -350,67 +351,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts index 4e8237c8..7fb5cabe 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Prarasti neįrašytus pakeitimus? @@ -301,15 +300,17 @@ Ar vis tiek norite jį užverti? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Yra neįrašytų pakeitimų. -Ar vis tiek norite užverti redaktorių? - -%1 + @@ -348,67 +349,67 @@ Ar vis tiek norite užverti redaktorių? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts index f4a14d07..8e512922 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts index 50e02241..61e9ad9b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts index b63b6e02..c5467e25 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Porzucić niezapisane zmiany? @@ -301,15 +300,17 @@ Czy na pewno go zamknąć? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Niezapisane dane. -Czy chcesz mimo to zamknąć edytor? - -%1 + @@ -348,67 +349,67 @@ Czy chcesz mimo to zamknąć edytor? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts index 62426c7c..a85ab39b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Perder alterações não salvas? @@ -301,15 +300,17 @@ Deseja fechar mesmo assim? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Há alterações não salvas. -Deseja fechar o editor mesmo assim? - -%1 + @@ -348,67 +349,67 @@ Deseja fechar o editor mesmo assim? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts index 606e3ce9..f2304339 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? Потерять несохраненные изменения? @@ -301,15 +300,17 @@ Do you want to close it anyway? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Есть несохраненные изменения. -Вы все равно хотите закрыть редактор? - -%1 + @@ -348,67 +349,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts index 8f908348..8d28091d 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -301,15 +300,17 @@ Vill du stänga den ändå ? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - Det finns osparade ändringar. -Vill du stänga editorn ändå? - -%1 + @@ -348,67 +349,67 @@ Vill du stänga editorn ändå? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts index c79196b9..234a5c8b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts index fbf2ddf8..c0fa61df 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts index 26bf6cab..3d051cb0 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? 丢弃未保存的更改? @@ -301,15 +300,17 @@ Do you want to close it anyway? %1 - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 - 有未保存的更改。 -是否仍要关闭编辑器? - -%1 + @@ -348,67 +349,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts index f14721db..f14cdee3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts @@ -284,7 +284,6 @@ - Lose Unsaved Changes? @@ -298,9 +297,14 @@ Do you want to close it anyway? - + + Save Changes before closing? + + + + There are unsaved changes. -Do you want to close the editor anyway? +Do you want save them before you close the editor? %1 @@ -342,67 +346,67 @@ Do you want to close the editor anyway? XDGDesktopList - + Multimedia - + Development - + Education - + Games - + Graphics - + Network - + Office - + Science - + Settings - + System - + Utility - + Wine - + Unsorted -- cgit From dd4c337edb937b9ff959ec6348e096cab08c34ca Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 09:49:22 -0500 Subject: Add a clock to the main window top-panel when in presentation mode. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 30 ++++++++++++++++++++++++++++- src-qt5/desktop-utils/lumina-pdf/mainUI.h | 7 +++++++ 2 files changed, 36 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index 07680dcf..a240dc46 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -29,7 +29,16 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ CurrentPage = 0; lastdir = QDir::homePath(); Printer = new QPrinter(); + //Create the interface widgets WIDGET = new QPrintPreviewWidget(Printer,this); + clockTimer = new QTimer(this); + clockTimer->setInterval(1000); //1-second updates to clock + connect(clockTimer, SIGNAL(timeout()), this, SLOT(updateClock()) ); + //frame_presenter = new QFrame(this); + label_clock = new QLabel(this); + label_clock->setAlignment(Qt::AlignVCenter | Qt::AlignRight); + label_clock->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); + //Now put the widgets into the UI this->setCentralWidget(WIDGET); connect(WIDGET, SIGNAL(paintRequested(QPrinter*)), this, SLOT(paintOnWidget(QPrinter*)) ); DOC = 0; @@ -44,7 +53,9 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ progress->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); progress->setFormat("%v/%m (%p%)"); // [current]/[total] progAct = ui->toolBar->addWidget(progress); - progAct->setVisible(false); + progAct->setVisible(false); + clockAct = ui->toolBar->addWidget(label_clock); + clockAct->setVisible(false); //Put the various actions into logical groups QActionGroup *tmp = new QActionGroup(this); tmp->setExclusive(true); @@ -143,6 +154,14 @@ void MainUI::loadPage(int num, Poppler::Document *doc, MainUI *obj, QSize dpi, Q if(PAGE!=0){ //qDebug() << "DPI:" << 4*dpi; loadingHash.insert(num, PAGE->renderToImage(2.5*dpi.width(), 2.5*dpi.height()).scaled(2*page.width(), 2*page.height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation) ); + /* + QList anno = PAGE->annotations(Annotations::AText ); + QStringList annoS; + for(int i=0; i(anno[i])->??? + } + annotateHash.insert(num, PAGE-> + */ }else{ loadingHash.insert(num, QImage()); } @@ -203,6 +222,9 @@ void MainUI::startPresentation(bool atStart){ ui->actionStop_Presentation->setEnabled(true); ui->menuStart_Presentation->setEnabled(false); + updateClock(); + clockAct->setVisible(true); + clockTimer->start(); QApplication::processEvents(); //Now start at the proper page ShowPage(page); @@ -240,6 +262,8 @@ void MainUI::endPresentation(){ presentationLabel->hide(); //just hide this (no need to re-create the label for future presentations) ui->actionStop_Presentation->setEnabled(false); ui->menuStart_Presentation->setEnabled(true); + clockTimer->stop(); + clockAct->setVisible(false); this->releaseKeyboard(); } @@ -355,3 +379,7 @@ void MainUI::OpenNewFile(){ //Now Open it if(!path.isEmpty()){ loadFile(path); } } + +void MainUI::updateClock(){ + label_clock->setText( QDateTime::currentDateTime().toString("hh:mm:ss") ); +} diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index 3609db13..87d2a4e4 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -45,6 +45,10 @@ private: //Other Interface elements QProgressBar *progress; QAction *progAct; //action associated with the progressbar + QTimer *clockTimer; + //QFrame *frame_presenter; + QLabel *label_clock; + QAction *clockAct; //PDF Page Loading cache variables QHash loadingHash; @@ -71,6 +75,9 @@ private slots: //Button Slots void OpenNewFile(); + //Other interface slots + void updateClock(); + signals: void PageLoaded(int); -- cgit From a0a359685fac01e867a369f7bc031b1d7f38c48b Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 10:06:25 -0500 Subject: Change the styling of the presentation clock. use the highlight color/text so it gets a bit more attention. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index a240dc46..39402622 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -36,8 +36,9 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ connect(clockTimer, SIGNAL(timeout()), this, SLOT(updateClock()) ); //frame_presenter = new QFrame(this); label_clock = new QLabel(this); - label_clock->setAlignment(Qt::AlignVCenter | Qt::AlignRight); + label_clock->setAlignment(Qt::AlignCenter ); label_clock->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); + label_clock->setStyleSheet("QLabel{color: palette(highlight-text); background-color: palette(highlight); border-radius: 5px; }"); //Now put the widgets into the UI this->setCentralWidget(WIDGET); connect(WIDGET, SIGNAL(paintRequested(QPrinter*)), this, SLOT(paintOnWidget(QPrinter*)) ); -- cgit From eddbc754bb2e3e744165e6be7a081ab614a6ed26 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 10:40:16 -0500 Subject: Add a context menu "action" for settings the selected image files as the current desktop wallpaper. Caveats: This only is an option when the Lumina desktop is running, and the entire selection is valid image files. --- .../desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 23 ++++++++++++++++++++++ .../desktop-utils/lumina-fm/widgets/DirWidget2.h | 1 + 2 files changed, 24 insertions(+) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index b778b49c..46286ef3 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -557,6 +557,12 @@ void DirWidget::UpdateContextMenu(){ contextMenu->addAction(LXDG::findIcon("system-run",""), tr("Open"), this, SLOT(runFiles()) ); //contextMenu->addAction(LXDG::findIcon("system-run-with",""), tr("Open With..."), this, SLOT(runWithFiles()) ); contextMenu->addMenu(cOpenWithMenu); + bool ok = (QString(getenv("XDG_CURRENT_DESKTOP"))=="Lumina"); + static QStringList imageformats = LUtils::imageExtensions(); + for(int i=0; iaddAction(LXDG::findIcon("preferences-desktop-wallpaper","preferences-desktop"), tr("Set as Wallpaper"), this, SLOT(setAsWallpaper()) ); } } contextMenu->addSection(LXDG::findIcon("unknown",""), tr("File Operations")); // contextMenu->addMenu(cFModMenu); @@ -901,6 +907,23 @@ void DirWidget::autoArchiveFiles(){ ExternalProcess::launch("lumina-archiver", QStringList() << "--aa" << archive << files); } +void DirWidget::setAsWallpaper(){ + QStringList files = currentBrowser()->currentSelection(); + //Get the screen for the wallpaper + QList screens = QApplication::screens(); + QString screenID; + if(screens.length()>1){ + QStringList opts; + for(int i=0; iname(); } + screenID = QInputDialog::getItem(this, tr("Set Wallpaper on Screen"), tr("Screen"), opts, 0, false); + if(screenID.isEmpty()){ return; } + }else{ + screenID = screens[0]->name(); + } + //Now save this to the settings + QSettings deskset("lumina-desktop","desktopsettings"); + deskset.setValue("desktop-"+screenID+"/background/filelist" , files); +} //==================== // PROTECTED diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h index a99c64c7..65f4b971 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.h @@ -160,6 +160,7 @@ private slots: //void attachToNewEmail(); void autoExtractFiles(); void autoArchiveFiles(); + void setAsWallpaper(); // - Context-specific operations void openInSlideshow(); -- cgit From 4b5d87c3e3c8ee2f111a7a4b4614c0f8d581fde8 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 14:17:39 -0500 Subject: Make the new "set as wallpaper" menu option enabled/disabled instead of visible/invisible --- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 46286ef3..453e9e61 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -558,11 +558,13 @@ void DirWidget::UpdateContextMenu(){ //contextMenu->addAction(LXDG::findIcon("system-run-with",""), tr("Open With..."), this, SLOT(runWithFiles()) ); contextMenu->addMenu(cOpenWithMenu); bool ok = (QString(getenv("XDG_CURRENT_DESKTOP"))=="Lumina"); - static QStringList imageformats = LUtils::imageExtensions(); - for(int i=0; iaddAction(LXDG::findIcon("preferences-desktop-wallpaper","preferences-desktop"), tr("Set as Wallpaper"), this, SLOT(setAsWallpaper()) )->setEnabled(ok); } - if(ok){ contextMenu->addAction(LXDG::findIcon("preferences-desktop-wallpaper","preferences-desktop"), tr("Set as Wallpaper"), this, SLOT(setAsWallpaper()) ); } } contextMenu->addSection(LXDG::findIcon("unknown",""), tr("File Operations")); // contextMenu->addMenu(cFModMenu); -- cgit From 8b2a4a09ac2b635ebadd05658f5f34e14d2601f9 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 15:00:15 -0500 Subject: Add in the new manpages from Aaron St.John (lumina-docs repo). Also adjust the "community support" shortcut to point to gitter rather than IRC. --- .../lumina-archiver/lumina-archiver.8 | 62 ++++++++++++++++++++++ .../lumina-archiver/lumina-archiver.pro | 5 +- .../lumina-calculator/lumina-calculator.8 | 29 ++++++++++ .../lumina-calculator/lumina-calculator.pro | 5 +- .../lumina-fileinfo/lumina-fileinfo.8 | 31 +++++++++++ .../lumina-fileinfo/lumina-fileinfo.pro | 5 +- src-qt5/desktop-utils/lumina-fm/lumina-fm.8 | 62 ++++++++++++++++++++++ src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 5 +- .../lumina-mediaplayer/lumina-mediaplayer.8 | 57 ++++++++++++++++++++ .../lumina-mediaplayer/lumina-mediaplayer.pro | 9 ++-- .../lumina-screenshot/lumina-screenshot.8 | 29 ++++++++++ .../lumina-screenshot/lumina-screenshot.pro | 5 +- .../lumina-textedit/lumina-textedit.8 | 26 +++++++++ .../lumina-textedit/lumina-textedit.pro | 5 +- .../lumina-xdg-entry/lumina-xdg-entry.8 | 20 +++++++ .../lumina-xdg-entry/lumina-xdg-entry.pro | 5 +- 16 files changed, 350 insertions(+), 10 deletions(-) create mode 100644 src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 create mode 100644 src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 create mode 100644 src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 create mode 100644 src-qt5/desktop-utils/lumina-fm/lumina-fm.8 create mode 100644 src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 create mode 100644 src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 create mode 100644 src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 create mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 new file mode 100644 index 00000000..02bc6d1a --- /dev/null +++ b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 @@ -0,0 +1,62 @@ +.Dd November 2, 2017 +.Dt LUMINA-ARCHIVER 8 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-archiver +.Nd a graphical front-end to tar. +Manages and creates archives. + +.Sh SYNOPSIS +.Nm +.Op Fl -burn-img Ar FILE +.Op Fl -ax Ar FILE +.Op Fl -aa Ar NEW_ARCHIVE Ar FILES +.Op Fl -sx Ar ARCHIVE Ar EXTRACT_PATH + +.Sh DESCRIPTION +.Nm +is a graphical front end to the tar utility. +.Nm +includes limited support for copying USB images to a USB device. +This uses the dd utility. +.Nm +requires two runtime utilities: tar and dd. +The tar utility is used for the backend archive control system. +The dd utility is used to copy an image file ("*.img") to a USB device. +.Pp +Arguments for +.Nm +include: +.Bl -tag -width indent +.It Ic --burn-img +This launches the burn dialog when lumina-archiver loads. +.It Ic --ax +This auto-extracts a file into a new directory with the same name as +the given file. +.It Ic --aa +Auto extracts files into a new archive the user designates. +.It Ic --sx +Designate an archive and path to place extracted files. +.El + +.Sh EXAMPLES +.Pp +.Dl % lumina-archiver --burn-img ./TrueOS-2017-07-05-x64-USB.img +Opens the burn dialog for TrueOS-2017-07-05-x64-USB.img. +.Pp +.Dl % lumina-archiver --ax ./lumina-master.zip +Auto-extracts lumina-master.zip into a directory called lumina-master. + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-archiver +.El + +.Sh SEE ALSO +.Xr dd(1), +.Xr tar(1) + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro index fce76e30..442aab1e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro +++ b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro @@ -95,7 +95,10 @@ desktop.path=$${L_SHAREDIR}/applications/ #link.path=$${L_BINDIR} #link.extra=ln -sf lumina-archiver $(INSTALL_ROOT)$${L_BINDIR}/lpac -INSTALLS += target desktop +manpage.path=$${L_MANDIR}/man8/ +manpage.extra="$${MAN_ZIP} lumina-archiver.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-archiver.8.gz" + +INSTALLS += target desktop manpage WITH_I18N{ INSTALLS += dotrans diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 new file mode 100644 index 00000000..f01ba5db --- /dev/null +++ b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 @@ -0,0 +1,29 @@ +.Dd October 30, 2017 +.Dt LUMINA-CALCULATOR 8 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-calculator +.Nd full scientific calculator with a simple interface. + +.Sh SYNOPSIS +.Nm + +.Sh DESCRIPTION +.Nm +is a simple scientific calculator interface. +It has exponential, trigonometric, and +logarithmic functions. +It can also calculate percentages, square roots, and hyperbolic +trigonometric functions. +The utility keeps a history of previous calculations. +This history can be saved as a .txt file. + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-calculator +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro index 4560305b..84dc307a 100644 --- a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro +++ b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro @@ -89,7 +89,10 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-calculator.desktop desktop.path=$${L_SHAREDIR}/applications/ -INSTALLS += target desktop +manpage.path=$${L_MANDIR}/man8/ +manpage.extra="$${MAN_ZIP} lumina-calculator.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-calculator.8.gz" + +INSTALLS += target desktop manpage WITH_I18N{ INSTALLS += dotrans diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 new file mode 100644 index 00000000..b2d0f354 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 @@ -0,0 +1,31 @@ +.Dd November 13, 2017 +.Dt LUMINA-FILEINFO 8 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-fileinfo +.Nd views properties of files. +Includes creator for XDG application registrations and XDG-compliant +desktop entries. + +.Sh SYNOPSIS +.Nm + +.Sh DESCRIPTION +.Nm +displays a graphical utility to create XDG-compliant desktop entries. +.Nm +also views file properties. +It shows properties including: type, mimetype, file size, owner, +group, permissions, date created, and date of last modification. + + +.Sh EXAMPLES +.Bl -tag -width indent +.It lumina-fileinfo /usr/home/aaron/Downloads/Testing.png +Opens the utility and shows detailed information about Testing.png +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro index 14345f50..a90287b4 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro +++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro @@ -94,7 +94,10 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-fileinfo.desktop desktop.path=$${L_SHAREDIR}/applications/ -INSTALLS += target desktop +manpage.path=$${L_MANDIR}/man8/ +manpage.extra="$${MAN_ZIP} lumina-fileinfo.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-fileinfo.8.gz" + +INSTALLS += target desktop manpage WITH_I18N{ INSTALLS += dotrans diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.8 b/src-qt5/desktop-utils/lumina-fm/lumina-fm.8 new file mode 100644 index 00000000..8cce5435 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.8 @@ -0,0 +1,62 @@ +.Dd November 2, 2017 +.Dt LUMINA-FM 8 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-fm +.Nd is a utility used for browsing and interacting with files +on the system. + +.Sh SYNOPSIS +.Nm +.Op Fl new-instance +.Op Ar FILE + +.Sh DESCRIPTION +.Nm +is the CLI command to open Insight File Manager. +The file manager interface maintains files stored on the system. +.Nm +can take an optional argument and file path. +If no argument or file path is specified, the command opens the +Insight File Manager in the home directory. +Specifying a file path while the interface is open creates a new tab in +the existing window. +.Pp +.Bl -tag -width indent +.It Ic -new-instance +Opens Insight File Manager in a new window. +.El + +.Sh EXAMPLES +.Pp +.Dl % lumina-fm -new-instance /usr/bin/etc +Opens Insight in a new window pointed to the specified directory. +.Pp +.Dl % lumina-fm /usr/etc/bin +Opens the specified directory with the file manager. +If Insight is already open, a second tab is created. + +.Sh OPTIONAL RUNTIME DEPENDENCIES +If other lumina utilities are installed more options are available. +The following are optional for +.Nm +.Pp +.Bl -tag -width indent +.It Ic lumina-archiver +Gives the option to instantaneously extract an +archive into a new subfolder within the current directory. +.It Ic lumina-open +Gives the option to "open-with". +.It Ic lumina-fileinfo +Provides an option to view the properties of files. +.El + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-fm +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index 349f84c5..98afed4f 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -131,7 +131,10 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-fm.desktop desktop.path=$${L_SHAREDIR}/applications/ -INSTALLS += target desktop icons +manpage.path=$${L_MANDIR}/man8/ +manpage.extra="$${MAN_ZIP} lumina-fm.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-fm.8.gz" + +INSTALLS += target desktop icons manpage WITH_I18N{ INSTALLS += dotrans diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 new file mode 100644 index 00000000..9db08575 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 @@ -0,0 +1,57 @@ +.Dd November 2, 2017 +.Dt LUMINA-MEDIAPLAYER 8 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-mediaplayer +.Nd a graphical utility to play media files and stream online radio +services. + +.Sh SYNOPSIS +.Nm +.Op Fl -pandora +.Op Ar FILES + + +.Sh DESCRIPTION +.Nm +opens the graphical interface for the media player. +The user can sync a Pandora account and stream music. +The user can also create and manage a playlist of media files. +.Pp +Listing multiple files opens them in a playlist. +It can open .mp3, .mp4, .flac, .acc, .mpeg2, and mpeg4 files. +The user can use the command line to add songs by listing media file names. +.Pp +.Nm +has one optional argument: +.Bl -tag -width indent +.It Ic --pandora +Opens the interface on the Pandora account page. +.El + +.Sh EXAMPLES +.Pp +.Dl % lumina-mediaplayer Downloads/Testing.mp3 +Opens the interface and adds Testing.mp3 into the playlist. +.Dl % lumina-mediaplayer Downloads/Testing.mp3 Testing2.mp4 +Opens the interface and adds Testing.mp3 and Testing2.mp4 into the +playlist. + +.Sh OPTIONAL RUNTIME DEPENDENCIES +Installing other utilities can make more options available. +These extra utilities are supported: +.Pp +.Bl -tag -width indent +.It Ic pianobar +This provides streaming from the Pandora online radio service. +.El + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-mediaplayer +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro index d117cb01..81174120 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro +++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro @@ -95,10 +95,13 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-mediaplayer.desktop desktop.path=$${L_SHAREDIR}/applications/ -link.path=$${L_BINDIR} -link.extra=ln -sf lumina-mediaplayer $(INSTALL_ROOT)$${L_BINDIR}/lplay +#link.path=$${L_BINDIR} +#link.extra=ln -sf lumina-mediaplayer $(INSTALL_ROOT)$${L_BINDIR}/lplay -INSTALLS += target desktop +manpage.path=$${L_MANDIR}/man8/ +manpage.extra="$${MAN_ZIP} lumina-mediaplayer.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-mediaplayer.8.gz" + +INSTALLS += target desktop manpage WITH_I18N{ INSTALLS += dotrans diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 new file mode 100644 index 00000000..36065790 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 @@ -0,0 +1,29 @@ +.Dd November 2, 2017 +.Dt LUMINA-SCREENSHOT 8 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-screenshot +.Nd a utility to take and save screenshots of the desktop. + +.Sh SYNOPSIS +.Nm + +.Sh DESCRIPTION +.Nm +opens the graphical utility and takes a screenshot. +Then, it can view, crop, zoom, and save the screenshot. +There is also an option to open the screenshot with a different +application. +There are options to capture the entire session, a single +screen, a single window, or a selected area. +By default, the utility is bound to the "PrintScreen" keyboard button. + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-screenshot +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro index 02b6eaa6..64d8f2d8 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro +++ b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro @@ -95,7 +95,10 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-screenshot.desktop desktop.path=$${L_SHAREDIR}/applications/ -INSTALLS += target desktop +manpage.path=$${L_MANDIR}/man8/ +manpage.extra="$${MAN_ZIP} lumina-screenshot.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-screenshot.8.gz" + +INSTALLS += target desktop manpage WITH_I18N{ INSTALLS += dotrans diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 new file mode 100644 index 00000000..df5b55d0 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 @@ -0,0 +1,26 @@ +.Dd November 7, 2017 +.Dt LUMINA-TEXTEDIT 8 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-textedit +.Nd plaintext editor. + +.Sh SYNOPSIS +.Nm +.Op Ar NEW_FILE | EXISTING_FILE + +.Sh DESCRIPTION +The +.Nm +is a plaintext editor with syntax highlighting, tabs, and find/replace functionality. +The user can specify either a new file name or an existing file name. + +.Sh EXAMPLES +.Pp +.Dl % lumina-textedit Testing_file.txt +Opens a .txt file entitled "Testing_file". + +.Sh AUTHORS +.An Aaron St. John +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro index 9ba9508e..7da86098 100644 --- a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro +++ b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro @@ -102,7 +102,10 @@ link.extra=ln -sf lumina-textedit $(INSTALL_ROOT)$${L_BINDIR}/lte syntax.path=$${L_SHAREDIR}/lumina-desktop/syntax_rules syntax.files=syntax_rules/* -INSTALLS += target desktop link syntax +manpage.path=$${L_MANDIR}/man8/ +manpage.extra="$${MAN_ZIP} lumina-textedit.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-textedit.8.gz" + +INSTALLS += target desktop link syntax manpage WITH_I18N{ INSTALLS += dotrans diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 new file mode 100644 index 00000000..f61ecece --- /dev/null +++ b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 @@ -0,0 +1,20 @@ +.Dd October 23, 2017 +.Dt LUMINA-XDG-ENTRY 8 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-xdg-entry +.Nd is a simple graphical tool for creating XDG desktop entries. + +.Sh SYNOPSIS +.Nm + +.Sh DESCRIPTION +The +.Nm +command brings up the graphical tool to create desktop entries. +The user can create an XDG desktop with a specified name and generic name. + +.Sh AUTHORS +.An Aaron St. John +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro index 5784c76c..38bbf7ab 100644 --- a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro +++ b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro @@ -25,4 +25,7 @@ FORMS += mainwindow.ui desktop.files=lumina-xdg-entry.desktop desktop.path=$${L_SHAREDIR}/applications/ -INSTALLS += target desktop +manpage.path=$${L_MANDIR}/man8/ +manpage.extra="$${MAN_ZIP} lumina-xdg-entry.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-xdg-entry.8.gz" + +INSTALLS += target desktop manpage -- cgit From f0888f5a1323f3fff19b301c892195faac5e05df Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 20 Nov 2017 17:18:00 -0500 Subject: Redo all the new man pages categories. Make sure they are all man1 instead of man8 --- .../lumina-archiver/lumina-archiver.1 | 62 ++++++++++++++++++++++ .../lumina-archiver/lumina-archiver.8 | 62 ---------------------- .../lumina-archiver/lumina-archiver.pro | 4 +- .../lumina-calculator/lumina-calculator.1 | 29 ++++++++++ .../lumina-calculator/lumina-calculator.8 | 29 ---------- .../lumina-calculator/lumina-calculator.pro | 4 +- .../lumina-fileinfo/lumina-fileinfo.1 | 31 +++++++++++ .../lumina-fileinfo/lumina-fileinfo.8 | 31 ----------- .../lumina-fileinfo/lumina-fileinfo.pro | 4 +- src-qt5/desktop-utils/lumina-fm/lumina-fm.1 | 62 ++++++++++++++++++++++ src-qt5/desktop-utils/lumina-fm/lumina-fm.8 | 62 ---------------------- src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 4 +- .../lumina-mediaplayer/lumina-mediaplayer.1 | 57 ++++++++++++++++++++ .../lumina-mediaplayer/lumina-mediaplayer.8 | 57 -------------------- .../lumina-mediaplayer/lumina-mediaplayer.pro | 4 +- .../lumina-screenshot/lumina-screenshot.1 | 29 ++++++++++ .../lumina-screenshot/lumina-screenshot.8 | 29 ---------- .../lumina-screenshot/lumina-screenshot.pro | 4 +- .../lumina-textedit/lumina-textedit.1 | 26 +++++++++ .../lumina-textedit/lumina-textedit.8 | 26 --------- .../lumina-textedit/lumina-textedit.pro | 4 +- .../lumina-xdg-entry/lumina-xdg-entry.1 | 20 +++++++ .../lumina-xdg-entry/lumina-xdg-entry.8 | 20 ------- .../lumina-xdg-entry/lumina-xdg-entry.pro | 4 +- 24 files changed, 332 insertions(+), 332 deletions(-) create mode 100644 src-qt5/desktop-utils/lumina-archiver/lumina-archiver.1 delete mode 100644 src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 create mode 100644 src-qt5/desktop-utils/lumina-calculator/lumina-calculator.1 delete mode 100644 src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 create mode 100644 src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.1 delete mode 100644 src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 create mode 100644 src-qt5/desktop-utils/lumina-fm/lumina-fm.1 delete mode 100644 src-qt5/desktop-utils/lumina-fm/lumina-fm.8 create mode 100644 src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.1 delete mode 100644 src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 create mode 100644 src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.1 delete mode 100644 src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 create mode 100644 src-qt5/desktop-utils/lumina-textedit/lumina-textedit.1 delete mode 100644 src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 create mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.1 delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.1 b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.1 new file mode 100644 index 00000000..3ddbe2bc --- /dev/null +++ b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.1 @@ -0,0 +1,62 @@ +.Dd November 2, 2017 +.Dt LUMINA-ARCHIVER 1 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-archiver +.Nd a graphical front-end to tar. +Manages and creates archives. + +.Sh SYNOPSIS +.Nm +.Op Fl -burn-img Ar FILE +.Op Fl -ax Ar FILE +.Op Fl -aa Ar NEW_ARCHIVE Ar FILES +.Op Fl -sx Ar ARCHIVE Ar EXTRACT_PATH + +.Sh DESCRIPTION +.Nm +is a graphical front end to the tar utility. +.Nm +includes limited support for copying USB images to a USB device. +This uses the dd utility. +.Nm +requires two runtime utilities: tar and dd. +The tar utility is used for the backend archive control system. +The dd utility is used to copy an image file ("*.img") to a USB device. +.Pp +Arguments for +.Nm +include: +.Bl -tag -width indent +.It Ic --burn-img +This launches the burn dialog when lumina-archiver loads. +.It Ic --ax +This auto-extracts a file into a new directory with the same name as +the given file. +.It Ic --aa +Auto extracts files into a new archive the user designates. +.It Ic --sx +Designate an archive and path to place extracted files. +.El + +.Sh EXAMPLES +.Pp +.Dl % lumina-archiver --burn-img ./TrueOS-2017-07-05-x64-USB.img +Opens the burn dialog for TrueOS-2017-07-05-x64-USB.img. +.Pp +.Dl % lumina-archiver --ax ./lumina-master.zip +Auto-extracts lumina-master.zip into a directory called lumina-master. + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-archiver +.El + +.Sh SEE ALSO +.Xr dd(1), +.Xr tar(1) + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 deleted file mode 100644 index 02bc6d1a..00000000 --- a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.8 +++ /dev/null @@ -1,62 +0,0 @@ -.Dd November 2, 2017 -.Dt LUMINA-ARCHIVER 8 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-archiver -.Nd a graphical front-end to tar. -Manages and creates archives. - -.Sh SYNOPSIS -.Nm -.Op Fl -burn-img Ar FILE -.Op Fl -ax Ar FILE -.Op Fl -aa Ar NEW_ARCHIVE Ar FILES -.Op Fl -sx Ar ARCHIVE Ar EXTRACT_PATH - -.Sh DESCRIPTION -.Nm -is a graphical front end to the tar utility. -.Nm -includes limited support for copying USB images to a USB device. -This uses the dd utility. -.Nm -requires two runtime utilities: tar and dd. -The tar utility is used for the backend archive control system. -The dd utility is used to copy an image file ("*.img") to a USB device. -.Pp -Arguments for -.Nm -include: -.Bl -tag -width indent -.It Ic --burn-img -This launches the burn dialog when lumina-archiver loads. -.It Ic --ax -This auto-extracts a file into a new directory with the same name as -the given file. -.It Ic --aa -Auto extracts files into a new archive the user designates. -.It Ic --sx -Designate an archive and path to place extracted files. -.El - -.Sh EXAMPLES -.Pp -.Dl % lumina-archiver --burn-img ./TrueOS-2017-07-05-x64-USB.img -Opens the burn dialog for TrueOS-2017-07-05-x64-USB.img. -.Pp -.Dl % lumina-archiver --ax ./lumina-master.zip -Auto-extracts lumina-master.zip into a directory called lumina-master. - -.Sh FILES -.Bl -tag -width indent -.It Pa /usr/local/bin/lumina-archiver -.El - -.Sh SEE ALSO -.Xr dd(1), -.Xr tar(1) - -.Sh AUTHORS -.An Aaron St. John and Tim Moore -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro index 442aab1e..763407b9 100644 --- a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro +++ b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro @@ -95,8 +95,8 @@ desktop.path=$${L_SHAREDIR}/applications/ #link.path=$${L_BINDIR} #link.extra=ln -sf lumina-archiver $(INSTALL_ROOT)$${L_BINDIR}/lpac -manpage.path=$${L_MANDIR}/man8/ -manpage.extra="$${MAN_ZIP} lumina-archiver.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-archiver.8.gz" +manpage.path=$${L_MANDIR}/man1/ +manpage.extra="$${MAN_ZIP} lumina-archiver.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-archiver.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.1 b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.1 new file mode 100644 index 00000000..9a5d50d1 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.1 @@ -0,0 +1,29 @@ +.Dd October 30, 2017 +.Dt LUMINA-CALCULATOR 1 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-calculator +.Nd full scientific calculator with a simple interface. + +.Sh SYNOPSIS +.Nm + +.Sh DESCRIPTION +.Nm +is a simple scientific calculator interface. +It has exponential, trigonometric, and +logarithmic functions. +It can also calculate percentages, square roots, and hyperbolic +trigonometric functions. +The utility keeps a history of previous calculations. +This history can be saved as a .txt file. + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-calculator +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 deleted file mode 100644 index f01ba5db..00000000 --- a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.8 +++ /dev/null @@ -1,29 +0,0 @@ -.Dd October 30, 2017 -.Dt LUMINA-CALCULATOR 8 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-calculator -.Nd full scientific calculator with a simple interface. - -.Sh SYNOPSIS -.Nm - -.Sh DESCRIPTION -.Nm -is a simple scientific calculator interface. -It has exponential, trigonometric, and -logarithmic functions. -It can also calculate percentages, square roots, and hyperbolic -trigonometric functions. -The utility keeps a history of previous calculations. -This history can be saved as a .txt file. - -.Sh FILES -.Bl -tag -width indent -.It Pa /usr/local/bin/lumina-calculator -.El - -.Sh AUTHORS -.An Aaron St. John and Tim Moore -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro index 84dc307a..c2314545 100644 --- a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro +++ b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro @@ -89,8 +89,8 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-calculator.desktop desktop.path=$${L_SHAREDIR}/applications/ -manpage.path=$${L_MANDIR}/man8/ -manpage.extra="$${MAN_ZIP} lumina-calculator.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-calculator.8.gz" +manpage.path=$${L_MANDIR}/man1/ +manpage.extra="$${MAN_ZIP} lumina-calculator.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-calculator.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.1 b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.1 new file mode 100644 index 00000000..92542617 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.1 @@ -0,0 +1,31 @@ +.Dd November 13, 2017 +.Dt LUMINA-FILEINFO 1 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-fileinfo +.Nd views properties of files. +Includes creator for XDG application registrations and XDG-compliant +desktop entries. + +.Sh SYNOPSIS +.Nm + +.Sh DESCRIPTION +.Nm +displays a graphical utility to create XDG-compliant desktop entries. +.Nm +also views file properties. +It shows properties including: type, mimetype, file size, owner, +group, permissions, date created, and date of last modification. + + +.Sh EXAMPLES +.Bl -tag -width indent +.It lumina-fileinfo /usr/home/aaron/Downloads/Testing.png +Opens the utility and shows detailed information about Testing.png +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 deleted file mode 100644 index b2d0f354..00000000 --- a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.8 +++ /dev/null @@ -1,31 +0,0 @@ -.Dd November 13, 2017 -.Dt LUMINA-FILEINFO 8 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-fileinfo -.Nd views properties of files. -Includes creator for XDG application registrations and XDG-compliant -desktop entries. - -.Sh SYNOPSIS -.Nm - -.Sh DESCRIPTION -.Nm -displays a graphical utility to create XDG-compliant desktop entries. -.Nm -also views file properties. -It shows properties including: type, mimetype, file size, owner, -group, permissions, date created, and date of last modification. - - -.Sh EXAMPLES -.Bl -tag -width indent -.It lumina-fileinfo /usr/home/aaron/Downloads/Testing.png -Opens the utility and shows detailed information about Testing.png -.El - -.Sh AUTHORS -.An Aaron St. John and Tim Moore -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro index a90287b4..8a850a1c 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro +++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro @@ -94,8 +94,8 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-fileinfo.desktop desktop.path=$${L_SHAREDIR}/applications/ -manpage.path=$${L_MANDIR}/man8/ -manpage.extra="$${MAN_ZIP} lumina-fileinfo.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-fileinfo.8.gz" +manpage.path=$${L_MANDIR}/man1/ +manpage.extra="$${MAN_ZIP} lumina-fileinfo.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-fileinfo.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.1 b/src-qt5/desktop-utils/lumina-fm/lumina-fm.1 new file mode 100644 index 00000000..623d3bfa --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.1 @@ -0,0 +1,62 @@ +.Dd November 2, 2017 +.Dt LUMINA-FM 1 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-fm +.Nd is a utility used for browsing and interacting with files +on the system. + +.Sh SYNOPSIS +.Nm +.Op Fl new-instance +.Op Ar FILE + +.Sh DESCRIPTION +.Nm +is the CLI command to open Insight File Manager. +The file manager interface maintains files stored on the system. +.Nm +can take an optional argument and file path. +If no argument or file path is specified, the command opens the +Insight File Manager in the home directory. +Specifying a file path while the interface is open creates a new tab in +the existing window. +.Pp +.Bl -tag -width indent +.It Ic -new-instance +Opens Insight File Manager in a new window. +.El + +.Sh EXAMPLES +.Pp +.Dl % lumina-fm -new-instance /usr/bin/etc +Opens Insight in a new window pointed to the specified directory. +.Pp +.Dl % lumina-fm /usr/etc/bin +Opens the specified directory with the file manager. +If Insight is already open, a second tab is created. + +.Sh OPTIONAL RUNTIME DEPENDENCIES +If other lumina utilities are installed more options are available. +The following are optional for +.Nm +.Pp +.Bl -tag -width indent +.It Ic lumina-archiver +Gives the option to instantaneously extract an +archive into a new subfolder within the current directory. +.It Ic lumina-open +Gives the option to "open-with". +.It Ic lumina-fileinfo +Provides an option to view the properties of files. +.El + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-fm +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.8 b/src-qt5/desktop-utils/lumina-fm/lumina-fm.8 deleted file mode 100644 index 8cce5435..00000000 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.8 +++ /dev/null @@ -1,62 +0,0 @@ -.Dd November 2, 2017 -.Dt LUMINA-FM 8 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-fm -.Nd is a utility used for browsing and interacting with files -on the system. - -.Sh SYNOPSIS -.Nm -.Op Fl new-instance -.Op Ar FILE - -.Sh DESCRIPTION -.Nm -is the CLI command to open Insight File Manager. -The file manager interface maintains files stored on the system. -.Nm -can take an optional argument and file path. -If no argument or file path is specified, the command opens the -Insight File Manager in the home directory. -Specifying a file path while the interface is open creates a new tab in -the existing window. -.Pp -.Bl -tag -width indent -.It Ic -new-instance -Opens Insight File Manager in a new window. -.El - -.Sh EXAMPLES -.Pp -.Dl % lumina-fm -new-instance /usr/bin/etc -Opens Insight in a new window pointed to the specified directory. -.Pp -.Dl % lumina-fm /usr/etc/bin -Opens the specified directory with the file manager. -If Insight is already open, a second tab is created. - -.Sh OPTIONAL RUNTIME DEPENDENCIES -If other lumina utilities are installed more options are available. -The following are optional for -.Nm -.Pp -.Bl -tag -width indent -.It Ic lumina-archiver -Gives the option to instantaneously extract an -archive into a new subfolder within the current directory. -.It Ic lumina-open -Gives the option to "open-with". -.It Ic lumina-fileinfo -Provides an option to view the properties of files. -.El - -.Sh FILES -.Bl -tag -width indent -.It Pa /usr/local/bin/lumina-fm -.El - -.Sh AUTHORS -.An Aaron St. John and Tim Moore -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index 98afed4f..4f66ce0a 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -131,8 +131,8 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-fm.desktop desktop.path=$${L_SHAREDIR}/applications/ -manpage.path=$${L_MANDIR}/man8/ -manpage.extra="$${MAN_ZIP} lumina-fm.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-fm.8.gz" +manpage.path=$${L_MANDIR}/man1/ +manpage.extra="$${MAN_ZIP} lumina-fm.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-fm.1.gz" INSTALLS += target desktop icons manpage diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.1 b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.1 new file mode 100644 index 00000000..b2180e3d --- /dev/null +++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.1 @@ -0,0 +1,57 @@ +.Dd November 2, 2017 +.Dt LUMINA-MEDIAPLAYER 1 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-mediaplayer +.Nd a graphical utility to play media files and stream online radio +services. + +.Sh SYNOPSIS +.Nm +.Op Fl -pandora +.Op Ar FILES + + +.Sh DESCRIPTION +.Nm +opens the graphical interface for the media player. +The user can sync a Pandora account and stream music. +The user can also create and manage a playlist of media files. +.Pp +Listing multiple files opens them in a playlist. +It can open .mp3, .mp4, .flac, .acc, .mpeg2, and mpeg4 files. +The user can use the command line to add songs by listing media file names. +.Pp +.Nm +has one optional argument: +.Bl -tag -width indent +.It Ic --pandora +Opens the interface on the Pandora account page. +.El + +.Sh EXAMPLES +.Pp +.Dl % lumina-mediaplayer Downloads/Testing.mp3 +Opens the interface and adds Testing.mp3 into the playlist. +.Dl % lumina-mediaplayer Downloads/Testing.mp3 Testing2.mp4 +Opens the interface and adds Testing.mp3 and Testing2.mp4 into the +playlist. + +.Sh OPTIONAL RUNTIME DEPENDENCIES +Installing other utilities can make more options available. +These extra utilities are supported: +.Pp +.Bl -tag -width indent +.It Ic pianobar +This provides streaming from the Pandora online radio service. +.El + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-mediaplayer +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 deleted file mode 100644 index 9db08575..00000000 --- a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.8 +++ /dev/null @@ -1,57 +0,0 @@ -.Dd November 2, 2017 -.Dt LUMINA-MEDIAPLAYER 8 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-mediaplayer -.Nd a graphical utility to play media files and stream online radio -services. - -.Sh SYNOPSIS -.Nm -.Op Fl -pandora -.Op Ar FILES - - -.Sh DESCRIPTION -.Nm -opens the graphical interface for the media player. -The user can sync a Pandora account and stream music. -The user can also create and manage a playlist of media files. -.Pp -Listing multiple files opens them in a playlist. -It can open .mp3, .mp4, .flac, .acc, .mpeg2, and mpeg4 files. -The user can use the command line to add songs by listing media file names. -.Pp -.Nm -has one optional argument: -.Bl -tag -width indent -.It Ic --pandora -Opens the interface on the Pandora account page. -.El - -.Sh EXAMPLES -.Pp -.Dl % lumina-mediaplayer Downloads/Testing.mp3 -Opens the interface and adds Testing.mp3 into the playlist. -.Dl % lumina-mediaplayer Downloads/Testing.mp3 Testing2.mp4 -Opens the interface and adds Testing.mp3 and Testing2.mp4 into the -playlist. - -.Sh OPTIONAL RUNTIME DEPENDENCIES -Installing other utilities can make more options available. -These extra utilities are supported: -.Pp -.Bl -tag -width indent -.It Ic pianobar -This provides streaming from the Pandora online radio service. -.El - -.Sh FILES -.Bl -tag -width indent -.It Pa /usr/local/bin/lumina-mediaplayer -.El - -.Sh AUTHORS -.An Aaron St. John and Tim Moore -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro index 81174120..c9ea6a5b 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro +++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro @@ -98,8 +98,8 @@ desktop.path=$${L_SHAREDIR}/applications/ #link.path=$${L_BINDIR} #link.extra=ln -sf lumina-mediaplayer $(INSTALL_ROOT)$${L_BINDIR}/lplay -manpage.path=$${L_MANDIR}/man8/ -manpage.extra="$${MAN_ZIP} lumina-mediaplayer.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-mediaplayer.8.gz" +manpage.path=$${L_MANDIR}/man1/ +manpage.extra="$${MAN_ZIP} lumina-mediaplayer.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-mediaplayer.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.1 b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.1 new file mode 100644 index 00000000..5743b7be --- /dev/null +++ b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.1 @@ -0,0 +1,29 @@ +.Dd November 2, 2017 +.Dt LUMINA-SCREENSHOT 1 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-screenshot +.Nd a utility to take and save screenshots of the desktop. + +.Sh SYNOPSIS +.Nm + +.Sh DESCRIPTION +.Nm +opens the graphical utility and takes a screenshot. +Then, it can view, crop, zoom, and save the screenshot. +There is also an option to open the screenshot with a different +application. +There are options to capture the entire session, a single +screen, a single window, or a selected area. +By default, the utility is bound to the "PrintScreen" keyboard button. + +.Sh FILES +.Bl -tag -width indent +.It Pa /usr/local/bin/lumina-screenshot +.El + +.Sh AUTHORS +.An Aaron St. John and Tim Moore +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 deleted file mode 100644 index 36065790..00000000 --- a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.8 +++ /dev/null @@ -1,29 +0,0 @@ -.Dd November 2, 2017 -.Dt LUMINA-SCREENSHOT 8 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-screenshot -.Nd a utility to take and save screenshots of the desktop. - -.Sh SYNOPSIS -.Nm - -.Sh DESCRIPTION -.Nm -opens the graphical utility and takes a screenshot. -Then, it can view, crop, zoom, and save the screenshot. -There is also an option to open the screenshot with a different -application. -There are options to capture the entire session, a single -screen, a single window, or a selected area. -By default, the utility is bound to the "PrintScreen" keyboard button. - -.Sh FILES -.Bl -tag -width indent -.It Pa /usr/local/bin/lumina-screenshot -.El - -.Sh AUTHORS -.An Aaron St. John and Tim Moore -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro index 64d8f2d8..d0cce451 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro +++ b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro @@ -95,8 +95,8 @@ dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_RO desktop.files=lumina-screenshot.desktop desktop.path=$${L_SHAREDIR}/applications/ -manpage.path=$${L_MANDIR}/man8/ -manpage.extra="$${MAN_ZIP} lumina-screenshot.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-screenshot.8.gz" +manpage.path=$${L_MANDIR}/man1/ +manpage.extra="$${MAN_ZIP} lumina-screenshot.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-screenshot.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.1 b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.1 new file mode 100644 index 00000000..3cc29498 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.1 @@ -0,0 +1,26 @@ +.Dd November 7, 2017 +.Dt LUMINA-TEXTEDIT 1 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-textedit +.Nd plaintext editor. + +.Sh SYNOPSIS +.Nm +.Op Ar NEW_FILE | EXISTING_FILE + +.Sh DESCRIPTION +The +.Nm +is a plaintext editor with syntax highlighting, tabs, and find/replace functionality. +The user can specify either a new file name or an existing file name. + +.Sh EXAMPLES +.Pp +.Dl % lumina-textedit Testing_file.txt +Opens a .txt file entitled "Testing_file". + +.Sh AUTHORS +.An Aaron St. John +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 deleted file mode 100644 index df5b55d0..00000000 --- a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.8 +++ /dev/null @@ -1,26 +0,0 @@ -.Dd November 7, 2017 -.Dt LUMINA-TEXTEDIT 8 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-textedit -.Nd plaintext editor. - -.Sh SYNOPSIS -.Nm -.Op Ar NEW_FILE | EXISTING_FILE - -.Sh DESCRIPTION -The -.Nm -is a plaintext editor with syntax highlighting, tabs, and find/replace functionality. -The user can specify either a new file name or an existing file name. - -.Sh EXAMPLES -.Pp -.Dl % lumina-textedit Testing_file.txt -Opens a .txt file entitled "Testing_file". - -.Sh AUTHORS -.An Aaron St. John -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro index 7da86098..a9c16a0c 100644 --- a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro +++ b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro @@ -102,8 +102,8 @@ link.extra=ln -sf lumina-textedit $(INSTALL_ROOT)$${L_BINDIR}/lte syntax.path=$${L_SHAREDIR}/lumina-desktop/syntax_rules syntax.files=syntax_rules/* -manpage.path=$${L_MANDIR}/man8/ -manpage.extra="$${MAN_ZIP} lumina-textedit.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-textedit.8.gz" +manpage.path=$${L_MANDIR}/man1/ +manpage.extra="$${MAN_ZIP} lumina-textedit.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-textedit.1.gz" INSTALLS += target desktop link syntax manpage diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.1 b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.1 new file mode 100644 index 00000000..174e57fa --- /dev/null +++ b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.1 @@ -0,0 +1,20 @@ +.Dd October 23, 2017 +.Dt LUMINA-XDG-ENTRY 1 +.Os 1.3.3 + +.Sh NAME +.Nm lumina-xdg-entry +.Nd is a simple graphical tool for creating XDG desktop entries. + +.Sh SYNOPSIS +.Nm + +.Sh DESCRIPTION +The +.Nm +command brings up the graphical tool to create desktop entries. +The user can create an XDG desktop with a specified name and generic name. + +.Sh AUTHORS +.An Aaron St. John +.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 deleted file mode 100644 index f61ecece..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.8 +++ /dev/null @@ -1,20 +0,0 @@ -.Dd October 23, 2017 -.Dt LUMINA-XDG-ENTRY 8 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-xdg-entry -.Nd is a simple graphical tool for creating XDG desktop entries. - -.Sh SYNOPSIS -.Nm - -.Sh DESCRIPTION -The -.Nm -command brings up the graphical tool to create desktop entries. -The user can create an XDG desktop with a specified name and generic name. - -.Sh AUTHORS -.An Aaron St. John -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro index 38bbf7ab..7159eccb 100644 --- a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro +++ b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro @@ -25,7 +25,7 @@ FORMS += mainwindow.ui desktop.files=lumina-xdg-entry.desktop desktop.path=$${L_SHAREDIR}/applications/ -manpage.path=$${L_MANDIR}/man8/ -manpage.extra="$${MAN_ZIP} lumina-xdg-entry.8 > $(INSTALL_ROOT)$${L_MANDIR}/man8/lumina-xdg-entry.8.gz" +manpage.path=$${L_MANDIR}/man1/ +manpage.extra="$${MAN_ZIP} lumina-xdg-entry.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-xdg-entry.1.gz" INSTALLS += target desktop manpage -- cgit From 7de410fca082c16f4e725d86b3558e441c619590 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 21 Nov 2017 10:20:06 -0500 Subject: Do not have the main lumina-pdf window grab the keyboard. This breaks the consistency of keyboard shortcuts between presentation mode and normal viewing, but the up/down arrows will properly scroll the window now if a partial-page view mode is selected. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index 39402622..7a310e85 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -94,7 +94,6 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ //Now set the default state of the menu's and actions ui->menuStart_Presentation->setEnabled(false); ui->actionStop_Presentation->setEnabled(false); - this->grabKeyboard(); } MainUI::~MainUI(){ -- cgit From 8b35ad9848dfe24741d37b771b7e2704a4c6f5d0 Mon Sep 17 00:00:00 2001 From: Kjell Tore Ullavik Date: Thu, 23 Nov 2017 06:38:36 +0100 Subject: Fix right click crash when qsudo is not installed. --- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 453e9e61..d3b0ae2b 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -289,7 +289,9 @@ void DirWidget::createMenus(){ cOpenMenu->addAction(LXDG::findIcon("utilities-terminal",""), tr("Open Current Dir in a Terminal"), this, SLOT(openTerminal()), kOpTerm->key()); cOpenMenu->addAction(LXDG::findIcon("media-slideshow",""), tr("SlideShow"), this, SLOT(openInSlideshow()), kOpSS->key()); cOpenMenu->addAction(LXDG::findIcon("media-playback-start-circled","media-playback-start"), tr("Multimedia Player"), this, SLOT(openMultimedia()), kOpMM->key()); - if(LUtils::isValidBinary("qsudo")){ cOpenMenu->addAction(LXDG::findIcon("", ""), tr("Open Current Dir as Root"), this, SLOT(openRootFM())); + if(LUtils::isValidBinary("qsudo")){ + cOpenMenu->addAction(LXDG::findIcon("", ""), tr("Open Current Dir as Root"), this, SLOT(openRootFM())); + } if(cArchiveMenu==0){ cArchiveMenu = new QMenu(this); } cArchiveMenu->setTitle(tr("Archive Options")); @@ -327,9 +329,6 @@ void DirWidget::createMenus(){ if(LUtils::isValidBinary("lumina-fileinfo")){ cFViewMenu->addAction(LXDG::findIcon("edit-find-replace",""), tr("Properties"), this, SLOT(fileProperties()) ); } - -} - } BrowserWidget* DirWidget::currentBrowser(){ -- cgit From 0ca39876f64f6d2813b70e4483a3bc82bd5b828c Mon Sep 17 00:00:00 2001 From: Serg Bormant Date: Fri, 24 Nov 2017 19:23:24 +0000 Subject: Translated using Weblate (Russian) Currently translated at 100.0% (33 of 33 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/ru/ --- .../lumina-calculator/i18n/l-calc_ru.ts | 66 +++++++++++----------- 1 file changed, 33 insertions(+), 33 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ru.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ru.ts index 3ec5b808..e14c13f2 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ru.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_ru.ts @@ -6,67 +6,67 @@ Multimedia - + Мультимедиа Development - + Разработка Education - + Образование Games - + Игры Graphics - + Графика Network - + Сети Office - + Офис Science - + Наука Settings - + Настройки System - + Система Utility - + Инструменты Wine - + Вино Unsorted - + Разное @@ -75,102 +75,102 @@ Calculator - + Калькулятор Advanced Operations - + Расширенные операции Percentage %1 - + Процент %1 Power %1 - + Степень %1 Base-10 Exponential %1 - + 10 в степени %1 Exponential %1 - + Экспонента %1 Constant Pi %1 - + Число Пи %1 Square Root %1 - + Квадратный корень %1 Logarithm %1 - + Логарифм %1 Natural Log %1 - + Нат. логарифм %1 Sine %1 - + Синус %1 Cosine %1 - + Косинус %1 Tangent %1 - + Тангенс %1 Arc Sine %1 - + Арксинус %1 Arc Cosine %1 - + Арккосинус %1 Arc Tangent %1 - + Арктангес %1 Hyperbolic Sine %1 - + Гиперболический синус %1 Hyperbolic Cosine %1 - + Гиперболический косинус %1 Hyperbolic Tangent %1 - + Гиперболический тангенс %1 Save Calculator History - + Сохранить историю калькулятора -- cgit From 930e141075c5eb49e8952c8dd2b95602ebd3f924 Mon Sep 17 00:00:00 2001 From: Kardos László Date: Fri, 24 Nov 2017 12:44:03 +0000 Subject: Translated using Weblate (Hungarian) Currently translated at 12.1% (4 of 33 strings) Translation: lumina/lumina-calculator Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-calculator/hu/ --- .../lumina-calculator/i18n/l-calc_hu.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hu.ts b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hu.ts index 157dbda3..2cea5cfd 100644 --- a/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hu.ts +++ b/src-qt5/desktop-utils/lumina-calculator/i18n/l-calc_hu.ts @@ -6,52 +6,52 @@ Multimedia - + Multimédia Development - + Fejlesztés Education - + Oktatás Games - + Játékok Graphics - + Grafika Network - + Hálózat Office - + Iroda Science - + Tudomány Settings - + Beállítások System - + Rendszer @@ -61,7 +61,7 @@ Wine - + Wine -- cgit From 5ae13b0ce91d22420d8369fc58c5c0511a3c5bc4 Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:02:19 -0500 Subject: add file menu shortcuts into lumina-textedit --- src-qt5/desktop-utils/lumina-textedit/MainUI.ui | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.ui b/src-qt5/desktop-utils/lumina-textedit/MainUI.ui index fec94a21..026521b3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.ui @@ -190,7 +190,7 @@ - File + &File @@ -204,7 +204,7 @@ - View + &View @@ -232,7 +232,7 @@ - Edit + &Edit -- cgit From e1ca1a6d0e962a8f81d6b9b29cc6bd1a60766067 Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:04:33 -0500 Subject: add file menu shortcuts into lumina-archiver --- src-qt5/desktop-utils/lumina-archiver/MainUI.ui | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/MainUI.ui b/src-qt5/desktop-utils/lumina-archiver/MainUI.ui index 7de273a1..878b817a 100644 --- a/src-qt5/desktop-utils/lumina-archiver/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-archiver/MainUI.ui @@ -117,12 +117,12 @@ 0 0 403 - 20 + 28 - File + &File @@ -131,7 +131,7 @@ - Edit + &Edit @@ -142,7 +142,7 @@ - Burn to Disk + &Burn to Disk -- cgit From b6c833bfdd6d422bfd29d7d7a1ca77b58a6ca502 Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:07:54 -0500 Subject: add file menu shortcuts into lumina-fileinfo --- src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui index 5139bbf7..b9cde7c8 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.ui @@ -609,12 +609,12 @@ 0 0 800 - 39 + 28 - File + &File -- cgit From c6925a71a2165a29601e20c6bce7774d835a7891 Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:08:36 -0500 Subject: add file menu shortcuts into lumina-fm --- src-qt5/desktop-utils/lumina-fm/MainUI.ui | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.ui b/src-qt5/desktop-utils/lumina-fm/MainUI.ui index 8a635199..a15f91c9 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.ui @@ -111,7 +111,7 @@ - File + &File @@ -125,7 +125,7 @@ - View + &View @@ -142,7 +142,7 @@ - Bookmarks + &Bookmarks @@ -150,14 +150,14 @@ - External Devices + &External Devices - Git + &Git -- cgit From 23f7674a1e92b193fd0f052de3aa1b75b8677e26 Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:10:06 -0500 Subject: add file menu shortcuts into lumina-mediaplayer --- src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui b/src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui index 57567e52..a07c0bb5 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui +++ b/src-qt5/desktop-utils/lumina-mediaplayer/mainUI.ui @@ -673,19 +673,19 @@ 0 0 405 - 19 + 28 - File + &File - View + &View -- cgit From 8cb0a016aa237866767bef2b559c3e8d13177931 Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:11:29 -0500 Subject: add file menu shortcuts into lumina-pdf --- src-qt5/desktop-utils/lumina-pdf/mainUI.ui | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.ui b/src-qt5/desktop-utils/lumina-pdf/mainUI.ui index bbc76bab..7f555d01 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.ui +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.ui @@ -20,12 +20,12 @@ 0 0 659 - 24 + 28 - File + &File @@ -35,7 +35,7 @@ - Presentation + &Presentation -- cgit From b0a97b73a56cc36e1e910e722b912b3bbe744afe Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:14:26 -0500 Subject: add file menu shortcuts into lumina-xdg --- src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui index 928ce30a..cbcd2f5b 100644 --- a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui +++ b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui @@ -315,12 +315,12 @@ 0 0 564 - 27 + 28 - Menu + &Menu -- cgit From 0069a052e1cbef588e8f93a31314965b0c2af68a Mon Sep 17 00:00:00 2001 From: q5sys Date: Fri, 24 Nov 2017 15:25:42 -0500 Subject: remove lumina-xdg-entry from build --- src-qt5/desktop-utils/desktop-utils.pro | 1 - src-qt5/desktop-utils/lumina-xdg-entry/README.md | 12 - .../lumina-xdg-entry/lumina-xdg-entry.1 | 20 -- .../lumina-xdg-entry/lumina-xdg-entry.desktop | 11 - .../lumina-xdg-entry/lumina-xdg-entry.pro | 31 -- src-qt5/desktop-utils/lumina-xdg-entry/main.cpp | 17 - .../desktop-utils/lumina-xdg-entry/mainwindow.cpp | 138 --------- .../desktop-utils/lumina-xdg-entry/mainwindow.h | 40 --- .../desktop-utils/lumina-xdg-entry/mainwindow.ui | 344 --------------------- 9 files changed, 614 deletions(-) delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/README.md delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.1 delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.desktop delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/main.cpp delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h delete mode 100644 src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/desktop-utils.pro b/src-qt5/desktop-utils/desktop-utils.pro index 5014a9f0..41601fd2 100644 --- a/src-qt5/desktop-utils/desktop-utils.pro +++ b/src-qt5/desktop-utils/desktop-utils.pro @@ -12,6 +12,5 @@ SUBDIRS+= lumina-fm \ lumina-archiver \ # lumina-notify \ lumina-mediaplayer \ - lumina-xdg-entry \ lumina-pdf # lumina-terminal diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/README.md b/src-qt5/desktop-utils/lumina-xdg-entry/README.md deleted file mode 100644 index 32754215..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/README.md +++ /dev/null @@ -1,12 +0,0 @@ -## XDG Desktop Entry Creator for the Lumina Desktop - -This is a simple graphical utility to assist in creating XDG-compliant desktop entries. - -### Library Dependencies - -1. Qt 5.2+ (specific modules listed below) - * core - * gui - * widgets -2. Other Libraries - * libc diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.1 b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.1 deleted file mode 100644 index 174e57fa..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.1 +++ /dev/null @@ -1,20 +0,0 @@ -.Dd October 23, 2017 -.Dt LUMINA-XDG-ENTRY 1 -.Os 1.3.3 - -.Sh NAME -.Nm lumina-xdg-entry -.Nd is a simple graphical tool for creating XDG desktop entries. - -.Sh SYNOPSIS -.Nm - -.Sh DESCRIPTION -The -.Nm -command brings up the graphical tool to create desktop entries. -The user can create an XDG desktop with a specified name and generic name. - -.Sh AUTHORS -.An Aaron St. John -.Aq aaron@ixsystems.com diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.desktop b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.desktop deleted file mode 100644 index a635eb7f..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.desktop +++ /dev/null @@ -1,11 +0,0 @@ -[Desktop Entry] -Type=Application -Version=1.0 -Name=Lumina-XDG-Entry -GenericName=.desktop file Creator -Comment= -Icon= -Terminal=false -Exec=/usr/local/bin/lumina-xdg-entry -Categories=Utility; -Keywords= diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro b/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro deleted file mode 100644 index 7159eccb..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/lumina-xdg-entry.pro +++ /dev/null @@ -1,31 +0,0 @@ -#=========================================== -# Copyright (c) 2017, q5sys (JT) -# Available under the MIT license -# See the LICENSE file for full details -#=========================================== -include("$${PWD}/../../OS-detect.pri") - -QT += core gui - -greaterThan(QT_MAJOR_VERSION, 4): QT += widgets - -TARGET = lumina-xdg-entry -TEMPLATE = app -target.path = $${L_BINDIR} - -DEFINES += QT_DEPRECATED_WARNINGS - -SOURCES += main.cpp\ - mainwindow.cpp - -HEADERS += mainwindow.h - -FORMS += mainwindow.ui - -desktop.files=lumina-xdg-entry.desktop -desktop.path=$${L_SHAREDIR}/applications/ - -manpage.path=$${L_MANDIR}/man1/ -manpage.extra="$${MAN_ZIP} lumina-xdg-entry.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-xdg-entry.1.gz" - -INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp b/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp deleted file mode 100644 index 70ac8671..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/main.cpp +++ /dev/null @@ -1,17 +0,0 @@ -//=========================================== -// Copyright (c) 2017, q5sys (JT) -// Available under the MIT license -// See the LICENSE file for full details -//=========================================== -#include "mainwindow.h" -#include - -int main(int argc, char *argv[]) -{ - QApplication a(argc, argv); - MainWindow w; - w.setWindowTitle(".Desktop Creator"); - w.show(); - - return a.exec(); -} diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp deleted file mode 100644 index 1ad6edcd..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.cpp +++ /dev/null @@ -1,138 +0,0 @@ -//=========================================== -// Copyright (c) 2017, q5sys (JT) -// Available under the MIT license -// See the LICENSE file for full details -//=========================================== - -#include "mainwindow.h" -#include "ui_mainwindow.h" -#include "QDir" -#include "QFile" -#include "QTextStream" -#include "QImageReader" -#include "QFileDialog" -#include "QMessageBox" - - -MainWindow::MainWindow(QWidget *parent) : - QMainWindow(parent), - ui(new Ui::MainWindow) -{ - ui->setupUi(this); - connect(ui->pushButton_executable, SIGNAL(clicked()), this, SLOT(setExec()) ); - connect(ui->pushButton_icon, SIGNAL(clicked()), this, SLOT(setIcon()) ); - connect(ui->pushButton_save, SIGNAL(clicked()), this, SLOT(save()) ); - connect(ui->actionSave, SIGNAL(triggered()), this, SLOT(save()) ); - connect(ui->actionClose, SIGNAL(triggered()), this, SLOT(close()) ); - -} - -MainWindow::~MainWindow() -{ - delete ui; -} - -void MainWindow::setIcon(){ - //Prompt for a new image file - QStringList imgformats; - QList fmts = QImageReader::supportedImageFormats(); - for(int i=0; ilineEdit_icon->setText(iconpath); - icon = ui->lineEdit_icon->text(); - } - - -void MainWindow::setExec(){ - //Prompt for a new executable file - QString execpath = QFileDialog::getOpenFileName(this, tr("Select File"), QDir::homePath(), tr("All Files (*)") ); - ui->lineEdit_executable->setText(execpath); - executable = ui->lineEdit_executable->text(); - } - -void MainWindow::setCategories(){ -if(ui->checkBox_audio->isChecked()){ -catList = catList + "Audio;";} -if(ui->checkBox_video->isChecked()){ -catList = catList + "Video;";} -if(ui->checkBox_development->isChecked()){ -catList = catList + "Development;";} -if(ui->checkBox_education->isChecked()){ -catList = catList + "Education;";} -if(ui->checkBox_game->isChecked()){ -catList = catList + "Game;";} -if(ui->checkBox_graphics->isChecked()){ -catList = catList + "Graphics;";} -if(ui->checkBox_network->isChecked()){ -catList = catList + "Network;";} -if(ui->checkBox_office->isChecked()){ -catList = catList + "Office;";} -if(ui->checkBox_science->isChecked()){ -catList = catList + "Science;";} -if(ui->checkBox_settings->isChecked()){ -catList = catList + "Settings;";} -if(ui->checkBox_system->isChecked()){ -catList = catList + "System;";} -if(ui->checkBox_utility->isChecked()){ -catList = catList + "Utility;";} -categories = catList; -} - -void MainWindow::setOtherValues(){ -name = ui->lineEdit_name->text(); -genericname = ui->lineEdit_genericname->text(); -keywords = ui->lineEdit_keywords->text(); -comment = ui->lineEdit_comment->text(); -if(ui->checkBox_terminal->isChecked()){ -terminal = "true";} else{terminal = "false";}; -} - -void MainWindow::setDesktopFields(){ -setCategories(); -setOtherValues(); -namefield = "Name=" + name; -genericnamefield = "GenericName=" + genericname; -commentfield = "Comment=" + comment; -iconfield = "Icon=" + icon; -terminalfield = "Terminal=" + terminal; -execfield = "Exec=" + executable; -categoriesfield = "Categories=" + categories; -keywordfield = "Keywords=" + keywords; -} - -void MainWindow::save(){ -setDesktopFields(); -QString path = QDir::homePath(); -QString filename; -filename = path + "/" + name + ".desktop"; - -QFile file(filename); -file.open(QIODevice::WriteOnly | QIODevice::Text); -QTextStream stream(&file); -stream << "[Desktop Entry]" << endl; -stream << "Type=Application" << endl; -stream << "Version=1.0" << endl; -stream << namefield << endl; -stream << genericnamefield << endl; -stream << commentfield << endl; -stream << iconfield << endl; -stream << terminalfield << endl; -stream << execfield << endl; -stream << categoriesfield << endl; -stream << keywordfield << endl; -if(file.isOpen()){ - QMessageBox *messageBox = new QMessageBox; - messageBox->setText(tr("File Saved")); - QPushButton *pushButtonOk = messageBox->addButton(tr("Ok"), QMessageBox::YesRole); - messageBox->QDialog::setWindowTitle(tr("Successful")); - messageBox->show();} -else{ QMessageBox *messageBox = new QMessageBox; - messageBox->setText(tr("File Not Saved")); - QPushButton *pushButtonOk = messageBox->addButton(tr("Ok"), QMessageBox::YesRole); - messageBox->QDialog::setWindowTitle(tr("Unsuccessful")); -messageBox->show();} -file.close(); -} diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h deleted file mode 100644 index 1aad8325..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.h +++ /dev/null @@ -1,40 +0,0 @@ -//=========================================== -// Copyright (c) 2017, q5sys (JT) -// Available under the MIT license -// See the LICENSE file for full details -//=========================================== - -#ifndef MAINWINDOW_H -#define MAINWINDOW_H - -#include - -namespace Ui { -class MainWindow; -} - -class MainWindow : public QMainWindow -{ - Q_OBJECT - -public: - explicit MainWindow(QWidget *parent = 0); - ~MainWindow(); - - QString name, genericname, comment, icon, executable, terminal, keywords, catList, categories, iconpath, execpath; - QString namefield, genericnamefield, commentfield, iconfield, terminalfield,execfield, categoriesfield, keywordfield; - -public slots: - void setIcon(); - void setExec(); - void setCategories(); - void setOtherValues(); - void setDesktopFields(); - void save(); - - -private: - Ui::MainWindow *ui; -}; - -#endif // MAINWINDOW_H diff --git a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui b/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui deleted file mode 100644 index cbcd2f5b..00000000 --- a/src-qt5/desktop-utils/lumina-xdg-entry/mainwindow.ui +++ /dev/null @@ -1,344 +0,0 @@ - - - MainWindow - - - - 0 - 0 - 564 - 492 - - - - MainWindow - - - - - - - - - Name - - - lineEdit_name - - - - - - - - - - - - - - Generic Name - - - lineEdit_genericname - - - - - - - - - - - - - - - - - Comment - - - lineEdit_comment - - - - - - - - - - - - - - - - Values seperated by semicolon (no spaces) - - - 3 - - - Keywords - - - lineEdit_keywords - - - - - - - Keywords separated by semicolons with no spaces - - - - - - - - - - - - - Executable - - - lineEdit_executable - - - - - - - - - - Select - - - - - - - - - - - Icon - - - lineEdit_icon - - - - - - - - - - Select - - - - - - - - - Qt::Horizontal - - - - - - - - - Categories - - - - - - - - - Audio - - - - - - - Video - - - - - - - Development - - - - - - - - - - - Education - - - - - - - Game - - - - - - - Graphics - - - - - - - - - - - Network - - - - - - - Office - - - - - - - Science - - - - - - - - - - - Settings - - - - - - - System - - - - - - - Utility - - - - - - - - - - - Qt::Horizontal - - - - - - - - - Qt::RightToLeft - - - Run in Terminal - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Save - - - - - - - - - - - 0 - 0 - 564 - 28 - - - - - &Menu - - - - - - - - - Close - - - - - Save - - - - - - - -- cgit From 6b1a38389925839278b2735041e088224b4a7be2 Mon Sep 17 00:00:00 2001 From: q5sys Date: Mon, 27 Nov 2017 01:34:28 -0500 Subject: remove file manager dev folder --- src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp | 75 -- src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h | 44 - src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui | 101 -- src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp | 161 --- src-qt5/desktop-utils/lumina-fm-dev/Browser.h | 75 -- .../desktop-utils/lumina-fm-dev/BrowserWidget.cpp | 424 ------- .../desktop-utils/lumina-fm-dev/BrowserWidget.h | 94 -- src-qt5/desktop-utils/lumina-fm-dev/DirData.h | 194 --- src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp | 387 ------ src-qt5/desktop-utils/lumina-fm-dev/FODialog.h | 87 -- src-qt5/desktop-utils/lumina-fm-dev/FODialog.ui | 84 -- .../lumina-fm-dev/Insight-FileManager.png | Bin 2829 -> 0 bytes src-qt5/desktop-utils/lumina-fm-dev/MainUI.cpp | 964 --------------- src-qt5/desktop-utils/lumina-fm-dev/MainUI.h | 193 --- src-qt5/desktop-utils/lumina-fm-dev/MainUI.ui | 440 ------- src-qt5/desktop-utils/lumina-fm-dev/OPWidget.cpp | 117 -- src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h | 64 - src-qt5/desktop-utils/lumina-fm-dev/OPWidget.ui | 71 -- src-qt5/desktop-utils/lumina-fm-dev/README.md | 44 - src-qt5/desktop-utils/lumina-fm-dev/ScrollDialog.h | 55 - src-qt5/desktop-utils/lumina-fm-dev/TrayUI.cpp | 93 -- src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h | 47 - src-qt5/desktop-utils/lumina-fm-dev/gitCompat.cpp | 45 - src-qt5/desktop-utils/lumina-fm-dev/gitCompat.h | 88 -- src-qt5/desktop-utils/lumina-fm-dev/gitWizard.cpp | 138 --- src-qt5/desktop-utils/lumina-fm-dev/gitWizard.h | 68 - src-qt5/desktop-utils/lumina-fm-dev/gitWizard.ui | 252 ---- .../lumina-fm-dev/i18n/lumina-fm_af.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ar.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_az.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_bg.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_bn.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_bs.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ca.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_cs.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_cy.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_da.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_de.ts | 1283 ------------------- .../lumina-fm-dev/i18n/lumina-fm_el.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_en_AU.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_en_GB.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_en_ZA.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_es.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_et.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_eu.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_fa.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_fi.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_fr.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_fr_CA.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_fur.ts | 981 --------------- .../lumina-fm-dev/i18n/lumina-fm_gl.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_he.ts | 1280 ------------------- .../lumina-fm-dev/i18n/lumina-fm_hi.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_hr.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_hu.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_id.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_is.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_it.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ja.ts | 1299 -------------------- .../lumina-fm-dev/i18n/lumina-fm_ka.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ko.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_lt.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_lv.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_mk.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_mn.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ms.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_mt.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_nb.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ne.ts | 981 --------------- .../lumina-fm-dev/i18n/lumina-fm_nl.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_pa.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_pl.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_pt.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_pt_BR.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ro.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ru.ts | 1281 ------------------- .../lumina-fm-dev/i18n/lumina-fm_sa.ts | 981 --------------- .../lumina-fm-dev/i18n/lumina-fm_sk.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_sl.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_sr.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_sv.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_sw.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ta.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_tg.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_th.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_tr.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_uk.ts | 1282 ------------------- .../lumina-fm-dev/i18n/lumina-fm_ur.ts | 981 --------------- .../lumina-fm-dev/i18n/lumina-fm_uz.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_vi.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_zh_CN.ts | 1292 ------------------- .../lumina-fm-dev/i18n/lumina-fm_zh_HK.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_zh_TW.ts | 1279 ------------------- .../lumina-fm-dev/i18n/lumina-fm_zu.ts | 1279 ------------------- .../desktop-utils/lumina-fm-dev/lumina-fm.desktop | 18 - src-qt5/desktop-utils/lumina-fm-dev/lumina-fm.pro | 136 -- src-qt5/desktop-utils/lumina-fm-dev/main.cpp | 48 - .../lumina-fm-dev/widgets/DDListWidgets.h | 329 ----- .../lumina-fm-dev/widgets/DirWidget2.cpp | 911 -------------- .../lumina-fm-dev/widgets/DirWidget2.h | 193 --- .../lumina-fm-dev/widgets/DirWidget2.ui | 261 ---- .../lumina-fm-dev/widgets/MultimediaWidget.cpp | 222 ---- .../lumina-fm-dev/widgets/MultimediaWidget.h | 71 -- .../lumina-fm-dev/widgets/MultimediaWidget.ui | 181 --- .../lumina-fm-dev/widgets/SlideshowWidget.cpp | 169 --- .../lumina-fm-dev/widgets/SlideshowWidget.h | 57 - .../lumina-fm-dev/widgets/SlideshowWidget.ui | 346 ------ 107 files changed, 91951 deletions(-) delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/Browser.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/DirData.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/FODialog.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/FODialog.ui delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/Insight-FileManager.png delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/MainUI.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/MainUI.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/MainUI.ui delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/OPWidget.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/OPWidget.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/OPWidget.ui delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/README.md delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/ScrollDialog.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/TrayUI.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/TrayUI.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitCompat.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitCompat.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitWizard.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitWizard.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/gitWizard.ui delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_af.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ar.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_az.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bg.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bn.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_bs.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ca.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cs.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_cy.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_da.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_de.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_el.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_AU.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_GB.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_en_ZA.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_es.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_et.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_eu.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fa.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fi.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fr_CA.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_fur.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_gl.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_he.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hi.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hr.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_hu.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_id.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_is.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_it.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ja.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ka.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ko.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lt.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_lv.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mk.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mn.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ms.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_mt.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nb.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ne.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_nl.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pa.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pl.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_pt_BR.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ro.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ru.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sa.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sk.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sl.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sr.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sv.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_sw.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ta.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tg.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_th.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_tr.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uk.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_ur.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_uz.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_vi.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_CN.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_HK.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zh_TW.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/i18n/lumina-fm_zu.ts delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/lumina-fm.desktop delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/lumina-fm.pro delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/main.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/DDListWidgets.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/DirWidget2.ui delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/MultimediaWidget.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/MultimediaWidget.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/MultimediaWidget.ui delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/SlideshowWidget.cpp delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/SlideshowWidget.h delete mode 100644 src-qt5/desktop-utils/lumina-fm-dev/widgets/SlideshowWidget.ui (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp deleted file mode 100644 index 5125a48e..00000000 --- a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.cpp +++ /dev/null @@ -1,75 +0,0 @@ -//=========================================== -// Lumina-DE source code -// Copyright (c) 2014, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -#include "BMMDialog.h" -#include "ui_BMMDialog.h" - -BMMDialog::BMMDialog(QWidget *parent) : QDialog(parent), ui(new Ui::BMMDialog){ - ui->setupUi(this); //load the designer file - this->setWindowIcon( LXDG::findIcon("bookmarks-organize","") ); - ui->tool_remove->setIcon( LXDG::findIcon("edit-delete","") ); - ui->tool_rename->setIcon( LXDG::findIcon("edit-rename","") ); - ui->push_done->setIcon( LXDG::findIcon("dialog-ok","") ); - connect(ui->tool_remove, SIGNAL(clicked()), this, SLOT(RemoveItem()) ); - connect(ui->tool_rename, SIGNAL(clicked()), this, SLOT(RenameItem()) ); - connect(ui->push_done, SIGNAL(clicked()), this, SLOT(close()) ); -} - -BMMDialog::~BMMDialog(){ -} - -void BMMDialog::loadSettings(QSettings *set){ - settings = set; //save this pointer for later - //Now fill the tree with the items - QStringList BM = settings->value("bookmarks", QStringList()).toStringList(); - ui->treeWidget->clear(); - for(int i=0; itreeWidget->addTopLevelItem( new QTreeWidgetItem(BM[i].split("::::")) ); - } - //Now expand to encompass all the items - ui->treeWidget->resizeColumnToContents(0); - ui->treeWidget->resizeColumnToContents(1); -} -// ==== PRIVATE ==== - -// ==== PRIVATE SLOTS ==== -void BMMDialog::RemoveItem(){ - //Get the currently selected item - if(ui->treeWidget->currentItem()==0){ return; } //nothing selected - QString item = ui->treeWidget->currentItem()->text(0)+"::::"+ui->treeWidget->currentItem()->text(1); - //Remove it from the widget - delete ui->treeWidget->takeTopLevelItem( ui->treeWidget->indexOfTopLevelItem( ui->treeWidget->currentItem() ) ); - //Remove it from the saved bookmarks - QStringList BM = settings->value("bookmarks",QStringList()).toStringList(); - BM.removeAll(item); - settings->setValue("bookmarks",BM); - settings->sync(); -} - -void BMMDialog::RenameItem(){ - //Get the currently selected item - if(ui->treeWidget->currentItem()==0){ return; } //nothing selected - QString olditem = ui->treeWidget->currentItem()->text(0)+"::::"+ui->treeWidget->currentItem()->text(1); - //Prompt for the new name - bool ok = false; - QString name = QInputDialog::getText(this, tr("Rename Bookmark"), tr("Name:"), QLineEdit::Normal, olditem.section("::::",0,0), \ - &ok, 0, Qt::ImhFormattedNumbersOnly | Qt::ImhUppercaseOnly | Qt::ImhLowercaseOnly); - if(!ok || name.isEmpty()){ return; } //cancelled - //Check if this name already exists - QStringList BM = settings->value("bookmarks",QStringList()).toStringList(); - if(BM.filter(name+"::::").length() >0){ - QMessageBox::warning(this, tr("Invalid Name"), tr("This bookmark name already exists. Please choose another.") ); - QTimer::singleShot(0,this, SLOT(RenameItem())); - return; - } - //Rename it in the widget - ui->treeWidget->currentItem()->setText(0,name); - //Replace it in the saved bookmarks - BM.removeAll(olditem); - BM.append(name+"::::"+olditem.section("::::",1,3)); - settings->setValue("bookmarks",BM); - settings->sync(); -} \ No newline at end of file diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h deleted file mode 100644 index d421446c..00000000 --- a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.h +++ /dev/null @@ -1,44 +0,0 @@ -//=========================================== -// Lumina-DE source code -// Copyright (c) 2014, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -// This is the dialog for managing bookmarks (BookMark Manager) -//=========================================== -#ifndef _LUMINA_FILE_MANAGER_BOOKMARK_MANAGER_DIALOG_H -#define _LUMINA_FILE_MANAGER_BOOKMARK_MANAGER_DIALOG_H - -// Qt includes -#include -#include -#include -#include -#include -#include - -// libLumina includes -#include - -namespace Ui{ - class BMMDialog; -}; - -class BMMDialog : public QDialog{ - Q_OBJECT -public: - BMMDialog(QWidget *parent = 0); - ~BMMDialog(); - - void loadSettings(QSettings *); - -private: - Ui::BMMDialog *ui; - QSettings *settings; - -private slots: - void RemoveItem(); - void RenameItem(); -}; - -#endif diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui b/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui deleted file mode 100644 index fbadb61e..00000000 --- a/src-qt5/desktop-utils/lumina-fm-dev/BMMDialog.ui +++ /dev/null @@ -1,101 +0,0 @@ - - - BMMDialog - - - - 0 - 0 - 466 - 238 - - - - Manage Bookmarks - - - - - - - - 5 - - - false - - - true - - - 130 - - - - Name - - - - - Path - - - - - - - - - - - - Remove Bookmark - - - Remove - - - Qt::ToolButtonTextBesideIcon - - - - - - - Rename BookMark - - - Rename - - - Qt::ToolButtonTextBesideIcon - - - - - - - Qt::Horizontal - - - - 40 - 20 - - - - - - - - Finished - - - - - - - - - - diff --git a/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp b/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp deleted file mode 100644 index 36cae5f4..00000000 --- a/src-qt5/desktop-utils/lumina-fm-dev/Browser.cpp +++ /dev/null @@ -1,161 +0,0 @@ -//=========================================== -// Lumina-DE source code -// Copyright (c) 2016, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -#include "Browser.h" - -#include -#include -#include -#include - -#include - -Browser::Browser(QObject *parent) : QObject(parent){ - watcher = new QFileSystemWatcher(this); - connect(watcher, SIGNAL(fileChanged(const QString&)), this, SLOT(fileChanged(QString)) ); - connect(watcher, SIGNAL(directoryChanged(const QString&)), this, SLOT(dirChanged(QString)) ); - showHidden = false; - showThumbs = false; - imageFormats = LUtils::imageExtensions(false); //lowercase suffixes - connect(this, SIGNAL(threadDone(QString, QImage)), this, SLOT(futureFinished(QString, QImage))); //will always be between different threads -} - -Browser::~Browser(){ - //watcher->deleteLater(); -} - -QString Browser::currentDirectory(){ return currentDir; } - -void Browser::showHiddenFiles(bool show){ - if(show !=showHidden){ - showHidden = show; - if(!currentDir.isEmpty()){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } - } -} -bool Browser::showingHiddenFiles(){ - return showHidden; -} - -void Browser::showThumbnails(bool show){ - if(show != showThumbs){ - showThumbs = show; - if(!currentDir.isEmpty()){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } - } -} - -bool Browser::showingThumbnails(){ - return showThumbs; -} - -// PRIVATE -void Browser::loadItem(QString info, Browser *obj){ - QImage pix; - if(imageFormats.contains(info.section(".",-1).toLower()) ){ - QFile file(info); - if(file.open(QIODevice::ReadOnly)){ - QByteArray bytes = file.readAll(); - file.close(); - pix.loadFromData(bytes); - if(pix.width() > 256 || pix.height() > 256 ){ - pix = pix.scaled(256,256, Qt::KeepAspectRatio, Qt::FastTransformation); - } - } - } - - //qDebug() << " - done with item:" << info; - obj->emit threadDone(info, pix); -} - -QIcon Browser::loadIcon(QString icon){ - if(!mimeIcons.contains(icon)){ - mimeIcons.insert(icon, LXDG::findIcon(icon, "unknown")); - } - - return mimeIcons[icon]; -} - - -// PRIVATE SLOTS -void Browser::fileChanged(QString file){ - if(file.startsWith(currentDir+"/") ){ - if(QFile::exists(file) ){ QtConcurrent::run(this, &Browser::loadItem, file, this); } //file modified but not removed - else{ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } //file removed - need to update entire dir - }else if(file==currentDir){ QTimer::singleShot(0, this, SLOT(loadDirectory()) ); } -} - -void Browser::dirChanged(QString dir){ - - if(dir==currentDir){ QTimer::singleShot(500, this, SLOT(loadDirectory()) ); } - else if(dir.startsWith(currentDir)){ QtConcurrent::run(this, &Browser::loadItem, dir, this ); } -} - -void Browser::futureFinished(QString name, QImage icon){ - //Note: this will be called once for every item that loads - QIcon ico; - //LFileInfo info(name); - LFileInfo *info = new LFileInfo(name); - if(!icon.isNull() && showThumbs){ - //qDebug() << " -- Data:"; - QPixmap pix = QPixmap::fromImage(icon); - ico.addPixmap(pix); - //}else if(info->isDir()){ - //qDebug() << " -- Folder:"; - //ico = loadIcon("folder"); - } - if(ico.isNull()){ - //qDebug() << " -- MimeType:" << info.fileName() << info.mimetype(); - ico = loadIcon(info->iconfile()); - } - this->emit itemDataAvailable( ico, info); - //qDebug() << " -- done:" << name; -} - -// PUBLIC SLOTS -void Browser::loadDirectory(QString dir){ - if(dir.isEmpty()){ dir = currentDir; } //reload current directory - if(dir.isEmpty()){ return; } //nothing to do - nothing previously loaded - //qDebug() << "Load Directory" << dir; - if(currentDir != dir){ //let the main widget know to clear all current items (completely different dir) - oldFiles.clear(); - emit clearItems(); - } - currentDir = dir; //save this for later - //clean up the watcher first - QStringList watched; watched << watcher->files() << watcher->directories(); - if(!watched.isEmpty()){ watcher->removePaths(watched); } - QStringList old = oldFiles; //copy this over for the moment (both lists will change in a moment) - oldFiles.clear(); //get ready for re-creating this list - // read the given directory - QDir directory(dir); - if(directory.exists()){ - QStringList files; - if(showHidden){ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoDotAndDotDot, QDir::NoSort); } - else{ files = directory.entryList( QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot, QDir::NoSort); } - emit itemsLoading(files.length()); - for(int i=0; iaddPath(directory.absoluteFilePath(files[i])); - //qDebug() << "Future Starting:" << files[i]; - QString path = directory.absoluteFilePath(files[i]); - if(old.contains(path)){ old.removeAll(path); } - oldFiles << path; //add to list for next time - //if(showThumbs && imageFormats.contains(path.section(".",-1).toLower())){ - QtConcurrent::run(this, &Browser::loadItem, path, this); - /*}else{ - //No special icon loading - just skip the file read step - futureFinished(path, QImage()); //loadItem(path, this); - }*/ - } - watcher->addPath(directory.absolutePath()); - if(!old.isEmpty()){ - old.removeAll(directory.absolutePath()); - for(int i=0; i -#include -#include -#include -//#include - -#include -/*class FileItem{ -public: - QString name; - QByteArray icon; - - FileItem(){} - ~FileItem(){}; -};*/ - -class Browser : public QObject{ - Q_OBJECT -public: - Browser(QObject *parent = 0); - ~Browser(); - - QString currentDirectory(); - void showHiddenFiles(bool); - bool showingHiddenFiles(); - - void showThumbnails(bool); - bool showingThumbnails(); - - //FileItem loadItem(QString info); //this is the main loader class - multiple instances each run in a separate thread - -private: - QString currentDir; - QFileSystemWatcher *watcher; - bool showHidden, showThumbs; - QStringList imageFormats, oldFiles; - QHash mimeIcons; //cache for quickly re-using QIcons - - void loadItem(QString info, Browser *obj); //this is the main loader class - multiple instances each run in a separate thread - QIcon loadIcon(QString icon); //simplification for using/populating the mimIcons cache - -private slots: - void fileChanged(QString); //tied into the watcher - for file change notifications - void dirChanged(QString); // tied into the watcher - for new/removed files in the current dir - - void futureFinished(QString, QImage); - -public slots: - void loadDirectory(QString dir = ""); - -signals: - //Main Signals - void itemRemoved(QString item); //emitted if a file was removed from the underlying - void clearItems(); //emitted when dirs change for example - void itemDataAvailable(QIcon, LFileInfo*); - - //Start/Stop signals for loading of data - void itemsLoading(int); //number of items which are getting loaded - - //Internal signal for the alternate threads - void threadDone(QString, QImage); -}; - -#endif diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.cpp deleted file mode 100644 index d5f219bb..00000000 --- a/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.cpp +++ /dev/null @@ -1,424 +0,0 @@ -//=========================================== -// Lumina-DE source code -// Copyright (c) 2016, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -#include "BrowserWidget.h" - -#include -#include -#include - -#include -#include - -BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ - //Setup the Widget/UI - this->setLayout( new QVBoxLayout(this) ); - ID = objID; - //BROWSER = 0; - //Setup the backend browser object - BROWSER = new Browser(this); - connect(BROWSER, SIGNAL(clearItems()), this, SLOT(clearItems()) ); - connect(BROWSER, SIGNAL(itemRemoved(QString)), this, SLOT(itemRemoved(QString)) ); - connect(BROWSER, SIGNAL(itemDataAvailable(QIcon, LFileInfo*)), this, SLOT(itemDataAvailable(QIcon, LFileInfo*)) ); - connect(BROWSER, SIGNAL(itemsLoading(int)), this, SLOT(itemsLoading(int)) ); - connect(this, SIGNAL(dirChange(QString)), BROWSER, SLOT(loadDirectory(QString)) ); - listWidget = 0; - treeWidget = 0; - readDateFormat(); - freshload = true; //nothing loaded yet - numItems = 0; - this->setMouseTracking(true); -} - -BrowserWidget::~BrowserWidget(){ - BROWSER->deleteLater(); -} - -void BrowserWidget::changeDirectory(QString dir){ - if(BROWSER->currentDirectory()==dir){ return; } //already on this directory - //qDebug() << "Change Directory:" << dir << historyList; - - if( !dir.contains("/.zfs/snapshot/") ){ - if(historyList.isEmpty() || !dir.isEmpty()){ historyList << dir; } - }else{ - //Need to remove the zfs snapshot first and ensure that it is not the same dir (just a diff snapshot) - QString cleaned = dir; - cleaned = cleaned.replace( QRegExp("/\\.zfs/snapshot/(.)+/"), "/" ); - if( (historyList.isEmpty() || historyList.last()!=cleaned) && !cleaned.isEmpty() ){ historyList << cleaned; } - } - //qDebug() << "History:" << historyList; - emit dirChange(dir); -} - -void BrowserWidget::showDetails(bool show){ - //Clean up widgets first - QSize iconsize; - if(show && listWidget!=0){ - //Clean up list widget - iconsize = listWidget->iconSize(); - this->layout()->removeWidget(listWidget); - listWidget->deleteLater(); - listWidget = 0; - }else if(!show && treeWidget!=0){ - iconsize = treeWidget->iconSize(); - this->layout()->removeWidget(treeWidget); - treeWidget->deleteLater(); - treeWidget = 0; - } - // qDebug() << "Create Widget: details:" << show; - //Now create any new widgets - if(show && treeWidget == 0){ - treeWidget = new DDTreeWidget(this); - treeWidget->setContextMenuPolicy(Qt::CustomContextMenu); - if(!iconsize.isNull()){ treeWidget->setIconSize(iconsize); } - this->layout()->addWidget(treeWidget); - connect(treeWidget, SIGNAL(itemActivated(QTreeWidgetItem*,int)), this, SIGNAL(itemsActivated()) ); - connect(treeWidget, SIGNAL(customContextMenuRequested(const QPoint&)), this, SIGNAL(contextMenuRequested()) ); - connect(treeWidget, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(DataDropped(QString, QStringList)) ); - connect(treeWidget, SIGNAL(GotFocus()), this, SLOT(selectionChanged()) ); - retranslate(); - treeWidget->sortItems(0, Qt::AscendingOrder); - if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange(""); } - }else if(!show && listWidget==0){ - listWidget = new DDListWidget(this); - listWidget->setContextMenuPolicy(Qt::CustomContextMenu); - if(!iconsize.isNull()){ listWidget->setIconSize(iconsize); } - this->layout()->addWidget(listWidget); - connect(listWidget, SIGNAL(itemActivated(QListWidgetItem*)), this, SIGNAL(itemsActivated()) ); - connect(listWidget, SIGNAL(customContextMenuRequested(const QPoint&)), this, SIGNAL(contextMenuRequested()) ); - connect(listWidget, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(DataDropped(QString, QStringList)) ); - connect(listWidget, SIGNAL(GotFocus()), this, SLOT(selectionChanged()) ); - if(!BROWSER->currentDirectory().isEmpty()){ emit dirChange(""); } - } - //qDebug() << " Done making widget"; -} - -bool BrowserWidget::hasDetails(){ - return (treeWidget!=0); -} - -void BrowserWidget::showHiddenFiles(bool show){ - BROWSER->showHiddenFiles(show); -} - -bool BrowserWidget::hasHiddenFiles(){ - return BROWSER->showingHiddenFiles(); -} - -void BrowserWidget::showThumbnails(bool show){ - BROWSER->showThumbnails(show); -} - -bool BrowserWidget::hasThumbnails(){ - return BROWSER->showingThumbnails(); -} - -void BrowserWidget::setThumbnailSize(int px){ - bool larger = true; - if(listWidget!=0){ - larger = listWidget->iconSize().height() < px; - listWidget->setIconSize(QSize(px,px)); - }else if(treeWidget!=0){ - larger = treeWidget->iconSize().height() < px; - treeWidget->setIconSize(QSize(px,px)); - } - //qDebug() << "Changing Icon Size:" << px << larger; - if(BROWSER->currentDirectory().isEmpty() || !larger ){ return; } //don't need to reload icons unless the new size is larger - emit dirChange(""); -} - -int BrowserWidget::thumbnailSize(){ - if(listWidget!=0){ return listWidget->iconSize().height(); } - else if(treeWidget!=0){ return treeWidget->iconSize().height(); } - return 0; -} - -void BrowserWidget::setHistory(QStringList paths){ - //NOTE: later items are used first - historyList = paths; -} - -QStringList BrowserWidget::history(){ - return historyList; -} - -void BrowserWidget::setShowActive(bool show){ - QString base = "";//"QListWidget::item,QTreeWidget::item{ border: 1px solid transparent; background-color: red; } QListWidget::item:hover,QTreeWidget::item:hover{ border: 1px solid black; background-color: blue; }"; - if(!show){ base.prepend("QAbstractScrollArea{ background-color: rgba(10,10,10,10); } QHeaderView{ background-color: lightgrey; } "); } - this->setStyleSheet(base); -} - -// This function is only called if user changes sessionsettings. By doing so, operations like sorting by date -// are faster because the date format is already stored in DirWidget::date_format static variable -void BrowserWidget::readDateFormat() { - if(!date_format.isEmpty()) - date_format.clear(); - QSettings settings("lumina-desktop","sessionsettings"); - // If value doesn't exist or is not setted, empty string is returned - date_format << settings.value("DateFormat").toString(); - date_format << settings.value("TimeFormat").toString(); -} - - -QStringList BrowserWidget::currentSelection(){ - QStringList out; - if(listWidget!=0){ - QList sel = listWidget->selectedItems(); - //qDebug() << "Selection number:" << sel.length(); - //if(sel.isEmpty() && listWidget->currentItem()!=0){ sel << listWidget->currentItem(); } - //qDebug() << "Selection number:" << sel.length(); - for(int i=0; iwhatsThis(); qDebug() << "Selection:" << sel[i]->text() << sel[i]->whatsThis(); } - }else if(treeWidget!=0){ - QList sel = treeWidget->selectedItems(); - //if(sel.isEmpty() && treeWidget->currentItem()!=0){ sel << treeWidget->currentItem(); } - for(int i=0; iwhatsThis(0); } - } - out.removeDuplicates(); //just in case - tree widgets sometimes "select" each column as an individual item - return out; -} - -QStringList BrowserWidget::currentItems(int type){ - //type: 0=all, -1=files, +1=dirs - QStringList paths; - if(listWidget!=0){ - for(int i=0; icount(); i++){ - if(i<0 && (listWidget->item(i)->data(Qt::UserRole).toString()=="file") ){ //FILES - paths << listWidget->item(i)->whatsThis(); - }else if(i>0 && (listWidget->item(i)->data(Qt::UserRole).toString()=="dir")){ //DIRS - paths << listWidget->item(i)->whatsThis(); - }else if(i==0){ //ALL - paths << listWidget->item(i)->whatsThis(); - } - } - }else if(treeWidget!=0){ - for(int i=0; itopLevelItemCount(); i++){ - if(i<0 && !treeWidget->topLevelItem(i)->text(1).isEmpty()){ //FILES - paths << treeWidget->topLevelItem(i)->whatsThis(0); - }else if(i>0 && treeWidget->topLevelItem(i)->text(1).isEmpty()){ //DIRS - paths << treeWidget->topLevelItem(i)->whatsThis(0); - }else if(i==0){ //ALL - paths << treeWidget->topLevelItem(i)->whatsThis(0); - } - } - } - return paths; -} - -// ================= -// PUBLIC SLOTS -// ================= -void BrowserWidget::retranslate(){ - if(listWidget!=0){ - - }else if(treeWidget!=0){ - QTreeWidgetItem *it = new QTreeWidgetItem(); - it->setText(0,tr("Name")); - it->setText(1,tr("Size")); - it->setText(2, tr("Type")); - it->setText(3, tr("Date Modified") ); - it->setText(4, tr("Date Created") ); - treeWidget->setHeaderItem(it); - //Now reset the sorting (alphabetically, dirs first) - treeWidget->sortItems(0, Qt::AscendingOrder); // sort by name - treeWidget->sortItems(1, Qt::AscendingOrder); //sort by type - } -} - -// ================= -// PRIVATE -// ================= -QString BrowserWidget::DTtoString(QDateTime dt){ - QStringList fmt = date_format; - if(fmt.isEmpty() || fmt.length()!=2 || (fmt[0].isEmpty() && fmt[1].isEmpty()) ){ - //Default formatting - return dt.toString(Qt::DefaultLocaleShortDate); - }else if(fmt[0].isEmpty()){ - //Time format only - return (dt.date().toString(Qt::DefaultLocaleShortDate)+" "+dt.time().toString(fmt[1])); - }else if(fmt[1].isEmpty()){ - //Date format only - return (dt.date().toString(fmt[0])+" "+dt.time().toString(Qt::DefaultLocaleShortDate)); - }else{ - //both date/time formats set - return dt.toString(fmt.join(" ")); - } -} - -// ================= -// PRIVATE SLOTS -// ================= -void BrowserWidget::clearItems(){ - //qDebug() << "Clear Items"; - if(listWidget!=0){ listWidget->clear(); } - else if(treeWidget!=0){ treeWidget->clear(); } - freshload = true; -} - -void BrowserWidget::itemRemoved(QString item){ - //qDebug() << "item removed" << item; - if(treeWidget!=0){ - QList found = treeWidget->findItems(item.section("/",-1), Qt::MatchExactly, 0); //look for exact name match - if(found.isEmpty()){ return; } //no match - delete found[0]; - }else if(listWidget!=0){ - QList found = listWidget->findItems(item.section("/",-1), Qt::MatchExactly); //look for exact name match - if(found.isEmpty()){ return; } - delete found[0]; - } -} - -void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ - //qDebug() << "Item Data Available:" << info->fileName(); - int num = 0; - if(listWidget!=0){ - //LIST WIDGET - name and icon only - if(info->isDesktopFile() && info->XDG()->isValid()){ - QList items = listWidget->findItems(info->XDG()->name, Qt::MatchExactly); - //Could be multiple items with the same text in this case - check paths as well - bool found = false; - for(int i=0; iwhatsThis()==info->absoluteFilePath()){ - found = true; - items[i]->setText(info->XDG()->name); - items[i]->setIcon(ico); - } - } - if(!found){ - //New Item - QListWidgetItem *it = new CQListWidgetItem(ico, info->XDG()->name, listWidget); - it->setWhatsThis(info->absoluteFilePath()); - it->setData(Qt::UserRole, (info->isDir() ? "dir" : "file")); //used for sorting - listWidget->addItem(it); - } - }else{ - //non-desktop entry - if(!listWidget->findItems(info->fileName(), Qt::MatchExactly).isEmpty()){ - //Update existing item - QListWidgetItem *it = listWidget->findItems(info->fileName(), Qt::MatchExactly).first(); - it->setText(info->fileName()); - it->setWhatsThis(info->absoluteFilePath()); - it->setIcon(ico); - - }else{ - //New item - QListWidgetItem *it = new CQListWidgetItem(ico, info->fileName(), listWidget); - it->setWhatsThis(info->absoluteFilePath()); - it->setData(Qt::UserRole, (info->isDir() ? "dir" : "file")); //used for sorting - listWidget->addItem(it); - } - num = listWidget->count(); - } //end non-desktop entry - }else if(treeWidget!=0){ - QTreeWidgetItem *it = 0; - if(info->isDesktopFile()){ - QList items = treeWidget->findItems(info->XDG()->name, Qt::MatchExactly, 0); - for(int i=0; iwhatsThis(0)==info->absoluteFilePath()){ it = items[i]; } - } - if(it==0){ - //New item - it = new CQTreeWidgetItem(treeWidget); - it->setText(0, info->XDG()->name ); //name (0) - treeWidget->addTopLevelItem(it); - } - }else{ - if( ! treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).isEmpty() ){ it = treeWidget->findItems(info->fileName(), Qt::MatchExactly, 0).first(); } - else{ - it = new CQTreeWidgetItem(treeWidget); - it->setText(0, info->fileName() ); //name (0) - treeWidget->addTopLevelItem(it); - } - } - //Now set/update all the data - it->setIcon(0, ico); - it->setText(1, info->isDir() ? "" : LUtils::BytesToDisplaySize(info->size()) ); //size (1) - it->setText(2, info->mimetype() ); //type (2) - it->setText(3, DTtoString(info->lastModified() )); //modification date (3) - it->setText(4, DTtoString(info->created()) ); //creation date (4) - //Now all the hidden data - it->setWhatsThis(0, info->absoluteFilePath()); - it->setWhatsThis(3, info->lastModified().toString("yyyyMMddhhmmsszzz") ); //sorts by this actually - it->setWhatsThis(4, info->created().toString("yyyyMMddhhmmsszzz") ); //sorts by this actually - num = treeWidget->topLevelItemCount(); - } - - if(num < numItems){ - //Still loading items - //this->setEnabled(false); - }else{ - if(freshload && treeWidget!=0){ - //qDebug() << "Resize Tree Widget Contents"; - for(int i=0; icolumnCount(); i++){ treeWidget->resizeColumnToContents(i); } - } - freshload = false; //any further changes are updates - not a fresh load of a dir - //Done loading items - //this->setEnabled(true); - //Assemble any status message - QString stats = QString(tr("Capacity: %1")).arg(LOS::FileSystemCapacity(BROWSER->currentDirectory())); - int nF, nD; - double bytes = 0; - nF = nD = 0; - if(listWidget!=0){ - bytes = -1; //not supported for this widget - for(int i=0; icount(); i++){ - if(listWidget->item(i)->data(Qt::UserRole).toString()=="dir"){ nD++; } //directory - else{ nF++; } //file - } - }else if(treeWidget!=0){ - for(int i=0; itopLevelItemCount(); i++){ - if(treeWidget->topLevelItem(i)->text(1).isEmpty()){ - nD++; //directory - }else{ - nF++; //file - bytes+=LUtils::DisplaySizeToBytes(treeWidget->topLevelItem(i)->text(1)); - } - } - } - if( (nF+nD) >0){ - stats.prepend("\t"); - if(nF>0){ - //Has Files - if(bytes>0){ - stats.prepend( QString(tr("Files: %1 (%2)")).arg(QString::number(nF), LUtils::BytesToDisplaySize(bytes)) ); - }else{ - stats.prepend( QString(tr("Files: %1")).arg(QString::number(nF)) ); - } - } - if(nD > 0){ - //Has Dirs - if(nF>0){ stats.prepend(" / "); }//has files output already - stats.prepend( QString(tr("Dirs: %1")).arg(QString::number(nD)) ); - } - } - emit updateDirectoryStatus( stats.simplified() ); - statustip = stats.simplified(); //save for later - }//end check for finished loading items -} - -void BrowserWidget::itemsLoading(int total){ - //qDebug() << "Got number of items loading:" << total; - if(listWidget!=0){ listWidget->setWhatsThis( BROWSER->currentDirectory() ); } - if(treeWidget!=0){ treeWidget->setWhatsThis(BROWSER->currentDirectory() ); } - numItems = total; //save this for later - if(total<1){ - emit updateDirectoryStatus( tr("No Directory Contents") ); - this->setEnabled(true); - } -} - -void BrowserWidget::selectionChanged(){ - emit hasFocus(ID); //let the parent know the widget is "active" with the user -} - -void BrowserWidget::resizeEvent(QResizeEvent *ev){ - QWidget::resizeEvent(ev); //do the normal processing first - //The list widget needs to be poked to rearrange the items to fit the new size - // tree widget does this fine at the moment. - if(listWidget!=0){ - listWidget->sortItems(Qt::AscendingOrder); - } -} diff --git a/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.h deleted file mode 100644 index fafb3746..00000000 --- a/src-qt5/desktop-utils/lumina-fm-dev/BrowserWidget.h +++ /dev/null @@ -1,94 +0,0 @@ -// Lumina-DE source code -// Copyright (c) 2016, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -// This is the main browsing frontend for the file manager -//=========================================== -#ifndef _LUMINA_FM_BROWSE_FRONTEND_H -#define _LUMINA_FM_BROWSE_FRONTEND_H - -#include -#include -#include - -#include "Browser.h" -#include "widgets/DDListWidgets.h" - -class BrowserWidget : public QWidget{ - Q_OBJECT -private: - Browser *BROWSER; - //QThread *bThread; //browserThread - int numItems; //used for checking if all the items have loaded yet - QString ID, statustip; - QStringList date_format, historyList; - bool freshload; - - //The drag and drop brower widgets - DDListWidget *listWidget; - DDTreeWidget *treeWidget; - - QString DTtoString(QDateTime dt); //QDateTime to string simplification routine - -public: - BrowserWidget(QString objID, QWidget *parent = 0); - ~BrowserWidget(); - - QString id(){ return ID; } - - void changeDirectory(QString dir); - QString currentDirectory(){ return BROWSER->currentDirectory(); } - - void showDetails(bool show); - bool hasDetails(); - - void showHiddenFiles(bool show); - bool hasHiddenFiles(); - - void showThumbnails(bool show); - bool hasThumbnails(); - void setThumbnailSize(int px); - int thumbnailSize(); - - void setHistory(QStringList); - QStringList history(); - - void setShowActive(bool show); //used for accenting if the widget is "active" - - QString status(){ return statustip; } - - //Date format for show items - void readDateFormat(); - - //Return all the items which are currently selected - QStringList currentSelection(); - QStringList currentItems(int type = 0); //type: 0=all, -1=files, +1=dirs - -public slots: - void retranslate(); - -private slots: - //Browser connections - void clearItems(); - void itemRemoved(QString); - void itemDataAvailable(QIcon, LFileInfo*); - void itemsLoading(int total); - void selectionChanged(); - -protected: - void resizeEvent(QResizeEvent *ev); - -signals: - //External signals - void itemsActivated(); - void updateDirectoryStatus(QString); - void contextMenuRequested(); - void DataDropped(QString, QStringList); - void hasFocus(QString); //ID output - - //Internal signal - void dirChange(QString); //current dir path - -}; -#endif diff --git a/src-qt5/desktop-utils/lumina-fm-dev/DirData.h b/src-qt5/desktop-utils/lumina-fm-dev/DirData.h deleted file mode 100644 index 528a82d6..00000000 --- a/src-qt5/desktop-utils/lumina-fm-dev/DirData.h +++ /dev/null @@ -1,194 +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 -//=========================================== -// This is the backend classes for fetching directory information/contents -//=========================================== -#ifndef _LUMINA_FM_BACKGROUND_DATA_CLASSES_H -#define _LUMINA_FM_BACKGROUND_DATA_CLASSES_H - -#include -#include -#include -#include -#include - -#include -#include - -#define ZSNAPDIR QString("/.zfs/snapshot/") - -#define DIR_DEBUG 0 - -//Class used for keeping track of directory information in the HASH -class LDirInfoList{ -public: - //Internal variables - QDateTime lastcheck; - QList list; - QStringList fileNames; //list of filenames for comparison/checking sorting - QString dirpath; //directory this structure was reading - QString snapdir; //base snapshot directory (if one was requested/found) - bool hashidden; - QStringList mntpoints; - - //Access Functions - LDirInfoList(QString path = ""){ - dirpath = path; - list.clear(); - fileNames.clear(); - hashidden = false; - //Generate the list of all mountpoints if possible - if(LUtils::isValidBinary("zfs")){ - mntpoints = LUtils::getCmdOutput("zfs list -H -o mountpoint").filter("/"); - mntpoints.removeDuplicates(); - } - } - ~LDirInfoList(){} - - //(re)Load a directory contents - void update(bool showhidden = false){ - if(dirpath.isEmpty()){ return; } //nothing to do - //Assemble the structures - QDir dir(dirpath); - hashidden = showhidden; - if(!dir.exists()){ - list.clear(); - fileNames.clear(); - dirpath.clear(); //invalid directory now - return; - } - if(dirpath.contains(ZSNAPDIR) && snapdir.isEmpty()){ - snapdir = dirpath.section(ZSNAPDIR,0,0)+ZSNAPDIR; //no need to go looking for it later - } - QFileInfoList dirlist; - //Fill the structure - list.clear(); - fileNames.clear(); - lastcheck = QDateTime::currentDateTime().addMSecs(-500); //prevent missing any simultaneous dir changes - if(showhidden){ dirlist = dir.entryInfoList(QDir::AllEntries | QDir::NoDotAndDotDot | QDir::Hidden , QDir::Name | QDir::DirsFirst); } - else{ dirlist = dir.entryInfoList(QDir::AllEntries | QDir::NoDotAndDotDot , QDir::Name | QDir::DirsFirst); } - //Simple add routine - can make it more dynamic/selective about updating individual items later - for(int i=0; imnt.length()){ mnt = mntpoints[i]; } - } - if(QFile::exists(mnt+ZSNAPDIR)){ snapdir = mnt+ZSNAPDIR; } - else{ snapdir.clear(); } //none found - } - } - -}; - -//This class is designed to be run in a background thread and get all the necessary info for a directory listing -class DirData : public QObject{ - Q_OBJECT -private: - QHash HASH; //Where we cache any info for rapid access later - -signals: - void DirDataAvailable(QString, QString, LFileInfoList); //[ID, Dirpath, DATA] - void SnapshotDataAvailable(QString, QString, QStringList); //[ID, BaseSnapDir, SnapNames] - -public: - //Variables - bool showHidden; //Whether hidden files/dirs should be output - bool zfsavailable; //Whether it should even bother looking for ZFS snapshots - bool pauseData; //When paused - this will ignore any requests for information (need to manually refresh browsers after unpause) - - //Functions - DirData(){ - showHidden = false; - zfsavailable = false; - pauseData = false; - } - ~DirData(){} - -public slots: - void GetDirData(QString ID, QString dirpath){ - return; - if(pauseData){ return; } - if(DIR_DEBUG){ qDebug() << "GetDirData:" << ID << dirpath; } - //The ID is used when returning the info in a moment - //Make sure to use the canonical path in the HASH search - don't use - QString canon = QFileInfo(dirpath).canonicalFilePath(); - if(!HASH.contains(canon)){ - //New directory (not previously loaded) - LDirInfoList info(canon); - info.update(showHidden); - HASH.insert(canon, info); - }else{ - //See if the saved info needs to be updated - //if( (HASH.value(canon).hashidden != showHidden) || (QFileInfo(canon).lastModified() > HASH.value(canon).lastcheck) ){ - HASH[canon].update(showHidden); - //} - } - if(DIR_DEBUG){ qDebug() << " -- Dir Data Found:" << ID << dirpath << HASH.value(canon).list.length(); } - emit DirDataAvailable(ID, dirpath, HASH.value(canon).list); - } - - void GetSnapshotData(QString ID, QString dirpath){ - if(pauseData){ return; } - if(DIR_DEBUG){ qDebug() << "GetSnapshotData:" << ID << dirpath; } - QString base; QStringList snaps; - //Only check if ZFS is flagged as available - if(zfsavailable){ - //First find if the hash already has an entry for this directory - if(!HASH.contains(dirpath)){ - LDirInfoList info(dirpath); - HASH.insert(dirpath,info); - } - //Now see if a snapshot directory has already been located - if(HASH.value(dirpath).snapdir.isEmpty()){ - HASH[dirpath].findSnapDir(); - } - //Now read off all the available snapshots - if(HASH.value(dirpath).snapdir != "-" && !HASH.value(dirpath).snapdir.isEmpty()){ - //Good snapshot directory found - read off the current snapshots (can change regularly - don't cache this) - base = HASH.value(dirpath).snapdir; - QDir dir(base); - QString canon = QFileInfo(dirpath).canonicalFilePath(); - QString dcanon = QString(dir.canonicalPath()+"/").section(ZSNAPDIR,0,0); - QString relpath = canon.section( dcanon+"/" ,-1); - //qDebug() << "Snapshot Dir:" << base << dcanon << "Dir:" << dirpath << canon << "Relpath:" << relpath; - snaps = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::Time |QDir::Reversed ); - //Also remove any "empty" snapshots (might be leftover by tools like "zfsnap") - for(int i=0; i newest - } - - } - //if(DIR_DEBUG){ qDebug() << " -- Snap Data Found:" << ID << base << snaps; } - if(!base.isEmpty() && !snaps.isEmpty()){ - emit SnapshotDataAvailable(ID, base, snaps); - } - } - -}; - -#endif diff --git a/src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp b/src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp deleted file mode 100644 index 0d04b912..00000000 --- a/src-qt5/desktop-utils/lumina-fm-dev/FODialog.cpp +++ /dev/null @@ -1,387 +0,0 @@ -//=========================================== -// Lumina-DE source code -// Copyright (c) 2014, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -#include "FODialog.h" -#include "ui_FODialog.h" - -#include -#include - -#include - -#define DEBUG 0 - -FODialog::FODialog(QWidget *parent) : QDialog(parent), ui(new Ui::FODialog){ - ui->setupUi(this); //load the designer file - ui->label->setText(tr("Calculating")); - ui->progressBar->setVisible(false); - ui->push_stop->setIcon( LXDG::findIcon("edit-delete","") ); - WorkThread = new QThread(); - Worker = new FOWorker(); - connect(Worker, SIGNAL(startingItem(int,int,QString,QString)), this, SLOT(UpdateItem(int,int,QString,QString)) ); - connect(Worker, SIGNAL(finished(QStringList)), this, SLOT(WorkDone(QStringList)) ); - Worker->moveToThread(WorkThread); - WorkThread->start(); - - //Make sure this dialog is centered on the parent - if(parent!=0){ - QPoint ctr = parent->mapToGlobal(parent->geometry().center()); - this->move( ctr.x()-(this->width()/2), ctr.y()-(this->height()/2) ); - } - this->show(); -} - -FODialog::~FODialog(){ - Worker->stopped = true; //just in case it might still be running when closed - WorkThread->quit(); - WorkThread->wait(); - delete Worker; - //delete WorkThread; -} - -void FODialog::setOverwrite(bool ovw){ - if(ovw){ Worker->overwrite = 1; } - else{ Worker->overwrite = 0; } -} - -//Public "start" functions -bool FODialog::RemoveFiles(QStringList paths){ - Worker->ofiles = paths; - Worker->isRM = true; - if(CheckOverwrite()){ - QTimer::singleShot(10,Worker, SLOT(slotStartOperations())); - return true; - }else{ - this->close(); - return false; - } -} - -bool FODialog::CopyFiles(QStringList oldPaths, QStringList newPaths){ - //same permissions as old files - if(oldPaths.length() == newPaths.length()){ - Worker->ofiles = oldPaths; - Worker->nfiles = newPaths; - } - Worker->isCP=true; - if(CheckOverwrite()){ - QTimer::singleShot(10,Worker, SLOT(slotStartOperations())); - return true; - }else{ - this->close(); - return false; - } -} - -bool FODialog::RestoreFiles(QStringList oldPaths, QStringList newPaths){ - //user/group rw permissions - if(oldPaths.length() == newPaths.length()){ - Worker->ofiles = oldPaths; - Worker->nfiles = newPaths; - } - Worker->isRESTORE = true; - if(CheckOverwrite()){ - QTimer::singleShot(10,Worker, SLOT(slotStartOperations())); - return true; - }else{ - this->close(); - return false; - } -} - -bool FODialog::MoveFiles(QStringList oldPaths, QStringList newPaths){ - //no change in permissions - if(oldPaths.length() == newPaths.length()){ - Worker->ofiles = oldPaths; - Worker->nfiles = newPaths; - } - Worker->isMV=true; - if(CheckOverwrite()){ - QTimer::singleShot(10,Worker, SLOT(slotStartOperations())); - return true; - }else{ - this->close(); - return false; - } -} - -bool FODialog::CheckOverwrite(){ - bool ok = true; - //Quick check that a file is not supposed to be moved/copied/restored onto itself - if(!Worker->isRM){ - for(int i=0; infiles.length(); i++){ - if(Worker->nfiles[i] == Worker->ofiles[i]){ - //duplicate - remove it from the queue - Worker->nfiles.removeAt(i); Worker->ofiles.removeAt(i); - i--; - } - } - } - if(!Worker->isRM && Worker->overwrite==-1){ - //Check if the new files already exist, and prompt for action - QStringList existing; - for(int i=0; infiles.length(); i++){ - if(QFile::exists(Worker->nfiles[i])){ existing << Worker->nfiles[i].section("/",-1); } - } - if(!existing.isEmpty()){ - //Prompt for whether to overwrite, not overwrite, or cancel - QMessageBox dialog(QMessageBox::Question, tr("Overwrite Files?"), tr("Do you want to overwrite the existing files?")+"\n"+tr("Note: It will just add a number to the filename otherwise.")+"\n\n"+existing.join(", "), QMessageBox::YesToAll | QMessageBox::NoToAll | QMessageBox::Cancel, this); - - dialog.setButtonText(QMessageBox::YesToAll, tr("YesToAll")); - dialog.setButtonText(QMessageBox::NoToAll, tr("NoToAll")); - dialog.setButtonText(QMessageBox::Cancel, tr("Cancel")); - dialog.setDefaultButton(QMessageBox::NoToAll); - const int ans = dialog.exec(); - if(ans==QMessageBox::NoToAll){ Worker->overwrite = 0; } //don't overwrite - else if(ans==QMessageBox::YesToAll){ Worker->overwrite = 1; } //overwrite - else{ qDebug() << " - Cancelled"; Worker->overwrite = -1; ok = false; } //cancel operations - if(DEBUG){ qDebug() << " - Overwrite:" << Worker->overwrite; } - } - } - QApplication::processEvents(); - QApplication::processEvents(); - return ok; -} - -void FODialog::UpdateItem(int cur, int tot, QString oitem, QString nitem){ - ui->progressBar->setRange(0,tot); - ui->progressBar->setValue(cur); - ui->progressBar->setVisible(true); - QString msg; - if(Worker->isRM){ msg = tr("Removing: %1"); } - else if(Worker->isCP){ msg = tr("Copying: %1 to %2"); } - else if(Worker->isRESTORE){ msg = tr("Restoring: %1 as %2"); } - else if(Worker->isMV){ msg = tr("Moving: %1 to %2"); } - if(msg.contains("%2")){ - msg = msg.arg(oitem.section("/",-1), nitem.section("/",-1)); - }else{ - msg = msg.arg(oitem.section("/",-1)); - } - msg = ui->label->fontMetrics().elidedText(msg, Qt::ElideRight, ui->label->width()); - ui->label->setText( msg ); -} - -void FODialog::WorkDone(QStringList errlist){ - if(!errlist.isEmpty()){ - QString msg; - if(Worker->isRM){ msg = tr("Could not remove these files:"); } - else if(Worker->isCP){ msg = tr("Could not copy these files:"); } - else if(Worker->isRESTORE){ msg = tr("Could not restore these files:"); } - else if(Worker->isMV){ msg = tr("Could not move these files:"); } - ScrollDialog dlg(this); - dlg.setWindowTitle(tr("File Errors")); - dlg.setText( msg+"\n\n"+errlist.join("\n") ); - dlg.exec(); - } - noerrors = errlist.isEmpty(); - this->close(); -} - -void FODialog::on_push_stop_clicked(){ - Worker->stopped = true; -} - -// =================== -// ==== FOWorker Class ==== -// =================== -QStringList FOWorker::subfiles(QString dirpath, bool dirsfirst){ - //NOTE: dirpath (input) is always the first/last item in the output as well! - QStringList out; - if(dirsfirst){ out << dirpath; } - if( QFileInfo(dirpath).isDir() ){ - QDir dir(dirpath); - if(dirsfirst){ - //Now recursively add any subdirectories and their contents - QStringList subdirs = dir.entryList(QDir::Dirs | QDir::NoDotAndDotDot | QDir::Hidden, QDir::NoSort); - for(int i=0; i @@ -29,307 +29,307 @@ Archive: - + Archiefbestand: File - + Bestand Edit - + Bewerken Burn to Disk - + Op CD/DVD branden &Open Archive - + &Open het archiefbestand Open archive - + Open het archiefbestand &New Archive - + &Nieuw archiefbestand New archive - + Nieuw archiefbestand &Quit - + &Afsluiten Add File(s) - + Bestand(en) toevoegen Add files to archive - + Voeg bestanden toe aan archiefbestand Remove File(s) - + Verwijder bestand(en) Remove selection from archive - + Verwijder selectie uit archiefbestand Extract All - + Pak alles uit Extract archive into a directory - + Pak het archief uit in een map Add Directory - + Map toevoegen Add directory to archive - + Voeg map toe aan archiefbestand Extract Selection - + Pak selectie uit Extract Selected Items - + Gekozen items uitpakken USB Image - + USB Image Copy an IMG to a USB device (may require admin permission) - + Kopieer een IMG naar een USB-apparaat (kan admin-rechten vereisen) Archive Manager - + Archiefmanager Admin Mode - + Administratormodus CTRL+N - + CTRL+N CTRL+O - + CTRL-O CTRL+Q - + CTRL-Q CTRL+E - + CTRL-E MimeType - + MimeType Size - + Grootte Opening Archive... - + Archiefbestand wordt geopend... All Types %1 - + Alle bestandstypes %1 Uncompressed Archive (*.tar) - + Ongecomprimeerde archiefbestanden (*.tar) GZip Compressed Archive (*.tar.gz *.tgz) - + GZip-gecomprimeerde Archiefbestanden (*.tar.gz *.tgz) BZip Compressed Archive (*.tar.bz *.tbz) - + BZip-gecomprimeerde Archiefbestanden (*tar.bz *.tbz) BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - + BZip2-gecomprimeerde Archiefbestanden (*tar.bz2 *.tbz2) LMZA Compressed Archive (*.tar.lzma *.tlz) - + LMZA-gecomprimeerde Archiefbestanden (*.tar.lzma *.tlz) XZ Compressed Archive (*.tar.xz *.txz) - + XZ-gecomprimeerde Archiefbestanden (*.tar.xz *.txz) CPIO Archive (*.cpio) - + CPIO Archiefbestand (*.cpio) PAX Archive (*.pax) - + PAX Archiefbestand (*.pax) AR Archive (*.ar) - + AR Archiefbestand (*.ar) SHAR Archive (*.shar) - + SHAR Archiefbestand (*.shar) Zip Archive (*.zip) - + Zip Archiefbestand (*.zip) 7-Zip Archive (*.7z) - + 7-Zip Archiefbestand ((*.7z) All Known Types %1 - + All bekende bestandstypes %1 READ-ONLY: ISO image (*.iso *.img) - + ALLEEN LEZEN: ISO image (*.iso *.img) READ-ONLY: XAR archive (*.xar) - + ALLEEN LEZEN: XAR archief (*.xar) READ-ONLY: Java archive (*.jar) - + ALLEEN LEZEN: Java Archiefbestand (*.jar) READ-ONLY: RedHat Package (*.rpm) - + ALLEEN LEZEN: RedHat pakket (*.rpm) Show All Files (*) - + Toon alle bestanden (*) Create Archive - + Maak een Archiefbestand aan Error - + Fout Could not overwrite file: - + Bestand kon niet overschreven worden: Open Archive - + Open Archiefbestand Add to Archive - + Voeg toe aan Archiefbestand Adding Items... - + Items toevoegen... Removing Items... - + Items verwijderen... Extract Into Directory - + Uitpakken in Map @@ -337,12 +337,12 @@ Extracting... - + Uitpakken... Link To: %1 - + Link naar: %1 @@ -350,67 +350,67 @@ Multimedia - + Multimedia Development - + Ontwikkeling Education - + Onderwijs Games - + Spellen Graphics - + Grafisch Network - + Netwerk Office - + Kantoor Science - + Wetenschappelijk Settings - + Instellingen System - + Systeem Utility - + Hulpmiddel Wine - + Wine Unsorted - + Ongesorteerd @@ -418,127 +418,127 @@ Burn IMG to device - + Brand IMG naar apparaat IMG File - + IMG Bestand Block Size - + Blok Grootte USB Device - + USB-apparaat Refresh Device List - + Ververs lijst met apparaten Wipe all extra space on device (conv = sync) - + Verwijder alle extra ruimte op apparaat (conv = sync) Burning to USB: - + Branden op USB: Time Elapsed: - + Verbruikte tijd: Cancel - + Annuleren Start - + Start Burn IMG to Device - + Brand IMG naar apparaat Admin Mode - + Administratormodus Kilobyte(s) - + Kilobyte(s) Megabyte(s) - + Megabyte(s) Gigabyte(s) - + Gigabyte(s) Cancel Image Burn? - + Branden van Image annuleren? Do you wish to stop the current IMG burn process? - + Wilt u het huidige IMG brandproces stopzetten? Warning: This will leave the USB device in an inconsistent state - + Waarschuwing: Dit laat uw USB apparaat in een inconsistente staat achter Administrator Permissions Needed - + Administrator rechten noodzakelijk This operation requires administrator priviledges. - + Deze bewerking vereist administrator rechten. Would you like to enable these priviledges? - + Wilt u deze rechten voor deze bewerking toekennen? ERROR - + FOUT The process could not be completed: - + Het proces kon niet succesvol worden afgesloten: SUCCESS - + SUCCES The image was successfully burned to the USB device - + Het bestand was succesvol gebrand naar het USB apparaat -- cgit From fbbe3e5af8420604d82953f9b646342b2994c628 Mon Sep 17 00:00:00 2001 From: Kardos László Date: Fri, 24 Nov 2017 12:44:03 +0000 Subject: Translated using Weblate (Hungarian) Currently translated at 3.9% (4 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/hu/ --- .../lumina-archiver/i18n/l-archiver_hu.ts | 102 ++++++++++----------- 1 file changed, 51 insertions(+), 51 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts index a12207c4..edbda600 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts @@ -36,67 +36,67 @@ File - + Fájl Edit - + Szerkeszt Burn to Disk - + Kiírás lemezre &Open Archive - + Archívum mengnyitás Open archive - + Archívum megnyitás &New Archive - + Új archívum New archive - + Új archívum &Quit - + Kilépés Add File(s) - + Fájl(ok) hozzáadás Add files to archive - + Fájlok hozzáadása az archívumhoz Remove File(s) - + Fájl(ok) eltávolítása Remove selection from archive - + Kiválasztottak eltávolítása az archívumból Extract All - + Összes kibontása @@ -106,27 +106,27 @@ Add Directory - + Új könyvtár Add directory to archive - + Könyvtár hozzáadás az archívumhoz Extract Selection - + Kiválasztottak kibontása Extract Selected Items - + Kiválasztott elemek kibontása USB Image - + USB lemezkép @@ -136,127 +136,127 @@ Archive Manager - + Archívumkezelő Admin Mode - + Adminisztráció CTRL+N - + CTRL+N CTRL+O - + CTRL+O CTRL+Q - + CTRL+Q CTRL+E - + CTRL+E MimeType - + Mime típus Size - + Méret Opening Archive... - + Archívum megnyitása... All Types %1 - + Összes %1 típus Uncompressed Archive (*.tar) - + Kitömörítetlen archívum (*.tar) GZip Compressed Archive (*.tar.gz *.tgz) - + GZip tömörített archívum (*.tar.gz *.tgz) BZip Compressed Archive (*.tar.bz *.tbz) - + BZip tömörített archívum (*.tar.bz *.tbz) BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - + BZip2 tömörített archívum (*.tar.bz2 *.tbz2) LMZA Compressed Archive (*.tar.lzma *.tlz) - + LMZA tömörített archívum (*.tar.lzma *.tlz) XZ Compressed Archive (*.tar.xz *.txz) - + XZ tömörített archívum (*.tar.xz *.txz) CPIO Archive (*.cpio) - + CPIO archívum (*.cpio) PAX Archive (*.pax) - + PAX archívum (*.pax) AR Archive (*.ar) - + AR archívum (*.ar) SHAR Archive (*.shar) - + SHAR archívum (*.shar) Zip Archive (*.zip) - + Zip archívum (*.zip) 7-Zip Archive (*.7z) - + 7-Zip archívum (*.7z) @@ -350,52 +350,52 @@ Multimedia - + Multimédia Development - + Fejlesztés Education - + Oktatás Games - + Játékok Graphics - + Grafika Network - + Hálózat Office - + Iroda Science - + Tudomány Settings - + Beállítások System - + Rendszer @@ -405,7 +405,7 @@ Wine - + Wine -- cgit From 96b105aa5e1bc5473056eab1ec37910f1eb015a7 Mon Sep 17 00:00:00 2001 From: Serg Bormant Date: Fri, 24 Nov 2017 19:38:35 +0000 Subject: Translated using Weblate (Russian) Currently translated at 13.8% (14 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/ru/ --- .../lumina-archiver/i18n/l-archiver_ru.ts | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts index 2ff06bea..753be548 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts @@ -36,7 +36,7 @@ File - + Файл @@ -350,67 +350,67 @@ Multimedia - + Мультимедиа Development - + Разработка Education - + Образование Games - + Игры Graphics - + Графика Network - + Сети Office - + Офис Science - + Наука Settings - + Настройки System - + Система Utility - + Инструменты Wine - + Вино Unsorted - + Разное -- cgit From 1e488a40854c62e247d389dcb7f52687e6496598 Mon Sep 17 00:00:00 2001 From: Adolfo Date: Fri, 24 Nov 2017 01:37:32 +0000 Subject: Translated using Weblate (Spanish) Currently translated at 7.9% (8 of 101 strings) Translation: lumina/lumina-archiver Translate-URL: http://weblate.trueos.org/projects/lumina/lumina-archiver/es/ --- src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts index fa3059fb..6c13d137 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts @@ -161,7 +161,7 @@ CTRL+E - + Ctrl+E -- cgit From a00b2a73d918c80645a51a57a1cb40c3ff3f09e1 Mon Sep 17 00:00:00 2001 From: Andreas Müller Date: Mon, 27 Nov 2017 17:18:29 +0100 Subject: manpages: fix out of tree install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes e.g: | gzip: lumina-info.1: No such file or directory Signed-off-by: Andreas Müller --- src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro | 2 +- src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro | 2 +- src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro | 2 +- src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 2 +- src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro | 2 +- src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro | 2 +- src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro index 763407b9..e3b8d2c7 100644 --- a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro +++ b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro @@ -96,7 +96,7 @@ desktop.path=$${L_SHAREDIR}/applications/ #link.extra=ln -sf lumina-archiver $(INSTALL_ROOT)$${L_BINDIR}/lpac manpage.path=$${L_MANDIR}/man1/ -manpage.extra="$${MAN_ZIP} lumina-archiver.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-archiver.1.gz" +manpage.extra="$${MAN_ZIP} $$PWD/lumina-archiver.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-archiver.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro index c2314545..cf2e07b4 100644 --- a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro +++ b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro @@ -90,7 +90,7 @@ desktop.files=lumina-calculator.desktop desktop.path=$${L_SHAREDIR}/applications/ manpage.path=$${L_MANDIR}/man1/ -manpage.extra="$${MAN_ZIP} lumina-calculator.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-calculator.1.gz" +manpage.extra="$${MAN_ZIP} $$PWD/lumina-calculator.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-calculator.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro index 8a850a1c..aa9eb0fa 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro +++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro @@ -95,7 +95,7 @@ desktop.files=lumina-fileinfo.desktop desktop.path=$${L_SHAREDIR}/applications/ manpage.path=$${L_MANDIR}/man1/ -manpage.extra="$${MAN_ZIP} lumina-fileinfo.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-fileinfo.1.gz" +manpage.extra="$${MAN_ZIP} $$PWD/lumina-fileinfo.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-fileinfo.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index 4f66ce0a..13ce9441 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -132,7 +132,7 @@ desktop.files=lumina-fm.desktop desktop.path=$${L_SHAREDIR}/applications/ manpage.path=$${L_MANDIR}/man1/ -manpage.extra="$${MAN_ZIP} lumina-fm.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-fm.1.gz" +manpage.extra="$${MAN_ZIP} $$PWD/lumina-fm.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-fm.1.gz" INSTALLS += target desktop icons manpage diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro index c9ea6a5b..b05df015 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro +++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro @@ -99,7 +99,7 @@ desktop.path=$${L_SHAREDIR}/applications/ #link.extra=ln -sf lumina-mediaplayer $(INSTALL_ROOT)$${L_BINDIR}/lplay manpage.path=$${L_MANDIR}/man1/ -manpage.extra="$${MAN_ZIP} lumina-mediaplayer.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-mediaplayer.1.gz" +manpage.extra="$${MAN_ZIP} $$PWD/lumina-mediaplayer.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-mediaplayer.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro index d0cce451..259e8f7a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro +++ b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro @@ -96,7 +96,7 @@ desktop.files=lumina-screenshot.desktop desktop.path=$${L_SHAREDIR}/applications/ manpage.path=$${L_MANDIR}/man1/ -manpage.extra="$${MAN_ZIP} lumina-screenshot.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-screenshot.1.gz" +manpage.extra="$${MAN_ZIP} $$PWD/lumina-screenshot.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-screenshot.1.gz" INSTALLS += target desktop manpage diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro index a9c16a0c..c5733ee7 100644 --- a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro +++ b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro @@ -103,7 +103,7 @@ syntax.path=$${L_SHAREDIR}/lumina-desktop/syntax_rules syntax.files=syntax_rules/* manpage.path=$${L_MANDIR}/man1/ -manpage.extra="$${MAN_ZIP} lumina-textedit.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-textedit.1.gz" +manpage.extra="$${MAN_ZIP} $$PWD/lumina-textedit.1 > $(INSTALL_ROOT)$${L_MANDIR}/man1/lumina-textedit.1.gz" INSTALLS += target desktop link syntax manpage -- cgit From d574947799c0a38b88a05387e04e1cf98c06fa89 Mon Sep 17 00:00:00 2001 From: Andreas Müller Date: Mon, 27 Nov 2017 17:37:59 +0100 Subject: i18n: fix out of tree build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes e.g: | /bin/sh: line 0: cd: i18n: No such file or directory | Makefile:955: recipe for target 'install_dotrans' failed | make[3]: *** [install_dotrans] Error 1 Signed-off-by: Andreas Müller --- src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro | 2 +- src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro | 2 +- src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro | 2 +- src-qt5/desktop-utils/lumina-fm/lumina-fm.pro | 2 +- src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro | 2 +- src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro | 2 +- src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro | 2 +- src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro index e3b8d2c7..a1b10109 100644 --- a/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro +++ b/src-qt5/desktop-utils/lumina-archiver/lumina-archiver.pro @@ -87,7 +87,7 @@ TRANSLATIONS = i18n/l-archiver_af.ts \ i18n/l-archiver_zu.ts dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ +dotrans.extra=cd $$PWD/i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ desktop.files=lumina-archiver.desktop desktop.path=$${L_SHAREDIR}/applications/ diff --git a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro index cf2e07b4..07490634 100644 --- a/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro +++ b/src-qt5/desktop-utils/lumina-calculator/lumina-calculator.pro @@ -84,7 +84,7 @@ TRANSLATIONS = i18n/l-calc_af.ts \ i18n/l-calc_zu.ts dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ +dotrans.extra=cd $$PWD/i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ desktop.files=lumina-calculator.desktop desktop.path=$${L_SHAREDIR}/applications/ diff --git a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro index aa9eb0fa..dcfee470 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro +++ b/src-qt5/desktop-utils/lumina-fileinfo/lumina-fileinfo.pro @@ -89,7 +89,7 @@ TRANSLATIONS = i18n/l-fileinfo_af.ts \ i18n/l-fileinfo_zu.ts dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ +dotrans.extra=cd $$PWD/i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ desktop.files=lumina-fileinfo.desktop desktop.path=$${L_SHAREDIR}/applications/ diff --git a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro index 13ce9441..b59aface 100644 --- a/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro +++ b/src-qt5/desktop-utils/lumina-fm/lumina-fm.pro @@ -126,7 +126,7 @@ TRANSLATIONS = i18n/lumina-fm_af.ts \ i18n/lumina-fm_zu.ts dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ +dotrans.extra=cd $$PWD/i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ desktop.files=lumina-fm.desktop desktop.path=$${L_SHAREDIR}/applications/ diff --git a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro index b05df015..d7423485 100644 --- a/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro +++ b/src-qt5/desktop-utils/lumina-mediaplayer/lumina-mediaplayer.pro @@ -90,7 +90,7 @@ TRANSLATIONS = i18n/l-mediap_af.ts \ i18n/l-mediap_zu.ts dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ +dotrans.extra=cd $$PWD/i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ desktop.files=lumina-mediaplayer.desktop desktop.path=$${L_SHAREDIR}/applications/ diff --git a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro index e17e59c5..672196ea 100644 --- a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro +++ b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro @@ -95,7 +95,7 @@ TRANSLATIONS = i18n/l-pdf_af.ts \ i18n/l-pdf_zu.ts dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ +dotrans.extra=cd $$PWD/i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ desktop.files=lumina-pdf.desktop desktop.path=$${L_SHAREDIR}/applications/ diff --git a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro index 259e8f7a..f5118db7 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro +++ b/src-qt5/desktop-utils/lumina-screenshot/lumina-screenshot.pro @@ -90,7 +90,7 @@ TRANSLATIONS = i18n/l-screenshot_af.ts \ i18n/l-screenshot_zu.ts dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ +dotrans.extra=cd $$PWD/i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ desktop.files=lumina-screenshot.desktop desktop.path=$${L_SHAREDIR}/applications/ diff --git a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro index c5733ee7..77cd8798 100644 --- a/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro +++ b/src-qt5/desktop-utils/lumina-textedit/lumina-textedit.pro @@ -91,7 +91,7 @@ TRANSLATIONS = i18n/l-te_af.ts \ i18n/l-te_zu.ts dotrans.path=$${L_SHAREDIR}/lumina-desktop/i18n/ -dotrans.extra=cd i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ +dotrans.extra=cd $$PWD/i18n && $${LRELEASE} -nounfinished *.ts && cp *.qm $(INSTALL_ROOT)$${L_SHAREDIR}/lumina-desktop/i18n/ desktop.files=lumina-textedit.desktop desktop.path=$${L_SHAREDIR}/applications/ -- cgit From c1c4f85bf10d090c96a935050582ac05e2dce414 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Nov 2017 15:46:57 -0500 Subject: Some UI improvements for lumina-pdf: 1. Add a context menu of options. 2. Use the context menu for both the presentation label and normal viewer 3. Get things ready for better integration of keyboard shortcuts application-wide. --- .../lumina-pdf/CM_PrintPreviewWidget.h | 34 +++++++++++++++++++++ .../desktop-utils/lumina-pdf/PresentationLabel.h | 35 ++++++++++++++++++++++ src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro | 4 ++- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 35 ++++++++++++++++++++-- src-qt5/desktop-utils/lumina-pdf/mainUI.h | 30 ++++++++++++++----- 5 files changed, 127 insertions(+), 11 deletions(-) create mode 100644 src-qt5/desktop-utils/lumina-pdf/CM_PrintPreviewWidget.h create mode 100644 src-qt5/desktop-utils/lumina-pdf/PresentationLabel.h (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/CM_PrintPreviewWidget.h b/src-qt5/desktop-utils/lumina-pdf/CM_PrintPreviewWidget.h new file mode 100644 index 00000000..ac457a10 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-pdf/CM_PrintPreviewWidget.h @@ -0,0 +1,34 @@ +//=========================================== +// Lumina Desktop source code +// Copyright (c) 2017, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +// Simple subclass of QPrintPreviewWidget to provide +// notification when a context menu is requested +//=========================================== +#ifndef _CONTEXT_MENU_PRINT_PREVIEW_WIDGET_H +#define _CONTEXT_MENU_PRINT_PREVIEW_WIDGET_H + +#include +#include +#include + +class CM_PrintPreviewWidget : public QPrintPreviewWidget{ + Q_OBJECT +signals: + void customContextMenuRequested(const QPoint&); + +public: + CM_PrintPreviewWidget(QPrinter * printer = 0, QWidget *parent = 0) : QPrintPreviewWidget(printer, parent){ + this->setMouseTracking(true); + QList children = this->findChildren("",Qt::FindChildrenRecursively); + for(int i=0; isetContextMenuPolicy(Qt::CustomContextMenu); + connect(children[i], SIGNAL(customContextMenuRequested(const QPoint&)), this, SIGNAL(customContextMenuRequested(const QPoint&)) ); + } + } + +}; + +#endif diff --git a/src-qt5/desktop-utils/lumina-pdf/PresentationLabel.h b/src-qt5/desktop-utils/lumina-pdf/PresentationLabel.h new file mode 100644 index 00000000..c5b552a6 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-pdf/PresentationLabel.h @@ -0,0 +1,35 @@ +//=========================================== +// Lumina Desktop source code +// Copyright (c) 2017, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +// Simple subclass of QLabel to provide +// some overlay information as a presentation window +//=========================================== +#ifndef _PRESENTATION_LABEL_WIDGET_H +#define _PRESENTATION_LABEL_WIDGET_H + +#include +#include +#include + +class PresentationLabel : public QLabel{ + Q_OBJECT + +signals: + void nextSlide(); + +public: + PresentationLabel() : QLabel(0, Qt::Window | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint){ + this->setContextMenuPolicy(Qt::CustomContextMenu); + } + +protected: + void mousePressEvent(QMouseEvent *ev){ + QLabel::mousePressEvent(ev); + if(ev->button()==Qt::LeftButton){ emit nextSlide(); } + } +}; + +#endif diff --git a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro index e17e59c5..dc368051 100644 --- a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro +++ b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro @@ -20,7 +20,9 @@ message("Qt Modules Needed: $${QT}") SOURCES += main.cpp \ mainUI.cpp -HEADERS += mainUI.h +HEADERS += mainUI.h \ + CM_PrintPreviewWidget.h \ + PresentationLabel.h FORMS += mainUI.ui diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index 7a310e85..7ad42697 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -20,6 +20,7 @@ #include #include +#include "CM_PrintPreviewWidget.h" MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ ui->setupUi(this); @@ -30,7 +31,7 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ lastdir = QDir::homePath(); Printer = new QPrinter(); //Create the interface widgets - WIDGET = new QPrintPreviewWidget(Printer,this); + WIDGET = new CM_PrintPreviewWidget(Printer,this); clockTimer = new QTimer(this); clockTimer->setInterval(1000); //1-second updates to clock connect(clockTimer, SIGNAL(timeout()), this, SLOT(updateClock()) ); @@ -39,8 +40,13 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI()){ label_clock->setAlignment(Qt::AlignCenter ); label_clock->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred); label_clock->setStyleSheet("QLabel{color: palette(highlight-text); background-color: palette(highlight); border-radius: 5px; }"); + //Context Menu + contextMenu = new QMenu(this); + connect(contextMenu, SIGNAL(aboutToShow()), this, SLOT(updateContextMenu())); //Now put the widgets into the UI this->setCentralWidget(WIDGET); + WIDGET->setContextMenuPolicy(Qt::CustomContextMenu); + connect(WIDGET, SIGNAL(customContextMenuRequested(const QPoint&)),this, SLOT(showContextMenu(const QPoint&)) ); connect(WIDGET, SIGNAL(paintRequested(QPrinter*)), this, SLOT(paintOnWidget(QPrinter*)) ); DOC = 0; connect(this, SIGNAL(PageLoaded(int)), this, SLOT(slotPageLoaded(int)) ); @@ -153,7 +159,7 @@ void MainUI::loadPage(int num, Poppler::Document *doc, MainUI *obj, QSize dpi, Q Poppler::Page *PAGE = doc->page(num); if(PAGE!=0){ //qDebug() << "DPI:" << 4*dpi; - loadingHash.insert(num, PAGE->renderToImage(2.5*dpi.width(), 2.5*dpi.height()).scaled(2*page.width(), 2*page.height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation) ); + loadingHash.insert(num, PAGE->renderToImage(4*dpi.width(), 4*dpi.height()).scaled(2*page.width(), 2*page.height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation) ); /* QList anno = PAGE->annotations(Annotations::AText ); QStringList annoS; @@ -212,9 +218,12 @@ void MainUI::startPresentation(bool atStart){ //Now create the full-screen window on the selected screen if(presentationLabel == 0){ //Create the label and any special flags for it - presentationLabel = new QLabel(0, Qt::Window | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint); + presentationLabel = new PresentationLabel(); presentationLabel->setStyleSheet("background-color: black;"); presentationLabel->setAlignment(Qt::AlignCenter); + presentationLabel->setContextMenuPolicy(Qt::CustomContextMenu); + connect(presentationLabel, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(showContextMenu(const QPoint&)) ); + connect(presentationLabel, SIGNAL(nextSlide()), this, SLOT(nextPage()) ); } //Now put the label in the proper location presentationLabel->setGeometry(screen->geometry()); @@ -311,6 +320,7 @@ void MainUI::paintOnWidget(QPrinter *PRINTER){ if(loadingHash.contains(i)){ painter.drawImage(0,0, loadingHash[i].scaled(PRINTER->pageRect().size(), Qt::KeepAspectRatio, Qt::SmoothTransformation)); } else{ painter.drawImage(0,0, QImage()); } } + WIDGET->setContextMenuPolicy(Qt::CustomContextMenu); } void MainUI::paintToPrinter(QPrinter *PRINTER){ @@ -383,3 +393,22 @@ void MainUI::OpenNewFile(){ void MainUI::updateClock(){ label_clock->setText( QDateTime::currentDateTime().toString("hh:mm:ss") ); } + +void MainUI::updateContextMenu(){ + contextMenu->clear(); + int curP = WIDGET->currentPage()-1; //currentPage reports pages starting at 1 + int lastP = numPages-1; + contextMenu->addSection( QString(tr("Page %1 of %2")).arg(QString::number(curP+1), QString::number(lastP+1) ) ); + contextMenu->addAction(tr("Next Page"), this, SLOT(nextPage()))->setEnabled(curPaddAction(tr("Previous Page"), this, SLOT(prevPage()))->setEnabled( curP>0 ); + contextMenu->addSeparator(); + contextMenu->addAction(tr("First Page"), this, SLOT(firstPage()))->setEnabled(curP!=0); + contextMenu->addAction(tr("Last Page"), this, SLOT(lastPage()))->setEnabled(curP!=lastP); + contextMenu->addSeparator(); + if(presentationLabel==0 || !presentationLabel->isVisible()){ + contextMenu->addAction(tr("Start Presentation (current slide)"), this, SLOT(startPresentationHere()) ); + contextMenu->addAction(tr("Start Presentation (at beginning)"), this, SLOT(startPresentationBeginning()) ); + }else{ + contextMenu->addAction(tr("Stop Presentation"), this, SLOT(closePresentation()) ); + } +} diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index 87d2a4e4..ad3d6809 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -17,8 +17,10 @@ #include #include #include +#include #include +#include "PresentationLabel.h" namespace Ui{ class MainUI; @@ -46,6 +48,7 @@ private: QProgressBar *progress; QAction *progAct; //action associated with the progressbar QTimer *clockTimer; + QMenu *contextMenu; //QFrame *frame_presenter; QLabel *label_clock; QAction *clockAct; @@ -57,7 +60,7 @@ private: void loadPage(int num, Poppler::Document *doc, MainUI *obj, QSize dpi, QSizeF page); //Functions/variables for the presentation mode - QLabel *presentationLabel; + PresentationLabel *presentationLabel; QScreen *getScreen(bool current, bool &cancelled); int CurrentPage; void startPresentation(bool atStart); @@ -69,6 +72,16 @@ private slots: void slotPageLoaded(int); void slotStartPresentation(QAction *act); + //Simplification routines + void nextPage(){ ShowPage( WIDGET->currentPage() ); } //currentPage() starts at 1 rather than 0 + void prevPage(){ ShowPage( WIDGET->currentPage()-2 ); } //currentPage() starts at 1 rather than 0 + void firstPage(){ ShowPage(0); } + void lastPage(){ ShowPage(numPages-1); } + void startPresentationHere(){ startPresentation(false); } + void startPresentationBeginning(){ startPresentation(true); } + void closePresentation(){ endPresentation(); } + + void paintOnWidget(QPrinter *PRINTER); void paintToPrinter(QPrinter *PRINTER); @@ -77,6 +90,8 @@ private slots: //Other interface slots void updateClock(); + void showContextMenu(const QPoint&){ contextMenu->popup(QCursor::pos()); } + void updateContextMenu(); signals: void PageLoaded(int); @@ -101,22 +116,23 @@ protected: if( event->key()==Qt::Key_Escape || event->key()==Qt::Key_Backspace){ //qDebug() << " - Escape/Backspace"; - endPresentation(); + if(inPresentation){ endPresentation(); } }else if(event->key()==Qt::Key_Right || event->key()==Qt::Key_Down || event->key()==Qt::Key_Space || event->key()==Qt::Key_PageDown){ //qDebug() << " - Right/Down/Spacebar" << inPresentation; - ShowPage( WIDGET->currentPage() ); //currentPage() starts at 1 rather than 0 + nextPage(); }else if(event->key()==Qt::Key_Left || event->key()==Qt::Key_Up || event->key()==Qt::Key_PageUp){ //qDebug() << " - Left/Up"; - ShowPage( WIDGET->currentPage()-2 ); //currentPage() starts at 1 rather than 0 + prevPage(); }else if(event->key()==Qt::Key_Home){ //qDebug() << " - Home"; - ShowPage(0); //go to the first page + firstPage(); }else if(event->key()==Qt::Key_End){ //qDebug() << " - End"; - ShowPage( numPages-1 ); //go to the last page + lastPage(); }else if(event->key()==Qt::Key_F11){ //qDebug() << " - F11"; - endPresentation(); + if(inPresentation){ endPresentation(); } + else{ startPresentationHere(); } }else{ QMainWindow::keyPressEvent(event); } -- cgit From 476b8c7d2519effedab08bd03667af983d8dcbbb Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Nov 2017 21:00:46 -0500 Subject: Work out the best(?) scaling system to use when loading PDF files. This seems to balance loading speed and memory usage with a good-looking page image. --- src-qt5/desktop-utils/lumina-pdf/mainUI.cpp | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp index 7ad42697..1fb366ab 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.cpp @@ -155,11 +155,22 @@ void MainUI::loadFile(QString path){ } void MainUI::loadPage(int num, Poppler::Document *doc, MainUI *obj, QSize dpi, QSizeF page){ + //PERFORMANCE NOTES: + // Using Poppler to scale the image (adjust dpi value) helps a bit but you take a large CPU loading hit (and still quite a lot of pixelization) + // Using Qt to scale the image (adjust page value) smooths out the image quite a bit without a lot of performance loss (but cannot scale up without pixelization) + // The best approach seams to be to increase the DPI a bit, but match that with the same scaling on the page size (smoothing) + //qDebug() << " - Render Page:" << num; Poppler::Page *PAGE = doc->page(num); if(PAGE!=0){ - //qDebug() << "DPI:" << 4*dpi; - loadingHash.insert(num, PAGE->renderToImage(4*dpi.width(), 4*dpi.height()).scaled(2*page.width(), 2*page.height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation) ); + //qDebug() << "DPI:" << dpi << "Size:" << page << "Page Size (pt):" << PAGE->pageSize(); + float scalefactor = (dpi.width()/72.0); //How different the screen DPI compares to standard page DPI + //qDebug() << "Scale Factor:" << scalefactor; + QImage raw = PAGE->renderToImage((scalefactor+0.2)*dpi.width(), (scalefactor+0.2)*dpi.height()); //make the raw image a tiny bit larger than the end result + //qDebug() << " - Raw Image Size:" << raw.size(); + loadingHash.insert(num, raw.scaled(scalefactor*page.width(), scalefactor*page.height(), Qt::IgnoreAspectRatio, Qt::SmoothTransformation) ); + raw = QImage(); //clear it + //qDebug() << "Page Label:" << num << PAGE->label(); /* QList anno = PAGE->annotations(Annotations::AText ); QStringList annoS; @@ -286,6 +297,11 @@ void MainUI::startLoadingPages(QPrinter *printer){ progAct->setVisible(true); QRectF pageSize = printer->pageRect(QPrinter::DevicePixel); QSize DPI(printer->resolution(),printer->resolution()); + /*qDebug() << "Screen Resolutions:"; + QList screens = QApplication::screens(); + for(int i=0; iname() << screens[i]->logicalDotsPerInchX() << screens[i]->logicalDotsPerInchY(); + }*/ for(int i=0; i Date: Wed, 29 Nov 2017 13:30:01 -0500 Subject: Make the poppler include path "poppler/qt5/" rather than just the file. This allows the poppler/qt5 path to be on *any* of the INCLUDEPATHS, rather than trying to specify a particular one through the OS-detection systems. --- src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro | 1 - src-qt5/desktop-utils/lumina-pdf/mainUI.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro index 48102bc5..894d21f2 100644 --- a/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro +++ b/src-qt5/desktop-utils/lumina-pdf/lumina-pdf.pro @@ -27,7 +27,6 @@ HEADERS += mainUI.h \ FORMS += mainUI.ui LIBS += -lpoppler-qt5 -INCLUDEPATH+= $${L_INCLUDEDIR}/poppler/qt5 TRANSLATIONS = i18n/l-pdf_af.ts \ i18n/l-pdf_ar.ts \ diff --git a/src-qt5/desktop-utils/lumina-pdf/mainUI.h b/src-qt5/desktop-utils/lumina-pdf/mainUI.h index ad3d6809..826891ec 100644 --- a/src-qt5/desktop-utils/lumina-pdf/mainUI.h +++ b/src-qt5/desktop-utils/lumina-pdf/mainUI.h @@ -19,7 +19,7 @@ #include #include -#include +#include #include "PresentationLabel.h" namespace Ui{ -- cgit From 52d29fe416a3e41caf750889f7b9fcff637c2b94 Mon Sep 17 00:00:00 2001 From: Kjell Tore Ullavik Date: Thu, 30 Nov 2017 04:15:34 +0100 Subject: Add 'Show Toolbar' to textedit menu. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 10 ++++++++++ src-qt5/desktop-utils/lumina-textedit/MainUI.h | 1 + src-qt5/desktop-utils/lumina-textedit/MainUI.ui | 14 +++++++++++++- 3 files changed, 24 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index 9e4ce499..33f2d851 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -72,6 +72,10 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ for(int i=0; imenuSyntax_Highlighting->addAction(smodes[i]); } + + bool toolbarVisible = settings->value("showToolbar",true).toBool(); + ui->toolBar->setHidden(!toolbarVisible); + ui->actionShow_Toolbar->setChecked(toolbarVisible); ui->actionLine_Numbers->setChecked( settings->value("showLineNumbers",true).toBool() ); ui->actionWrap_Lines->setChecked( settings->value("wrapLines",true).toBool() ); ui->actionShow_Popups->setChecked( settings->value("showPopupWarnings",true).toBool() ); @@ -96,6 +100,7 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ connect(tabWidget->dndTabBar(), SIGNAL(DetachTab(int)), this, SLOT(tabDetached(int)) ); connect(tabWidget->dndTabBar(), SIGNAL(DroppedIn(QStringList)), this, SLOT(LoadArguments(QStringList)) ); connect(tabWidget->dndTabBar(), SIGNAL(DraggedOut(int, Qt::DropAction)), this, SLOT(tabDraggedOut(int, Qt::DropAction)) ); + connect(ui->actionShow_Toolbar, SIGNAL(toggled(bool)), this, SLOT(showToolbar(bool)) ); connect(ui->actionLine_Numbers, SIGNAL(toggled(bool)), this, SLOT(showLineNumbers(bool)) ); connect(ui->actionWrap_Lines, SIGNAL(toggled(bool)), this, SLOT(wrapLines(bool)) ); connect(ui->actionShow_Popups, SIGNAL(toggled(bool)), this, SLOT(showPopupWarnings(bool)) ); @@ -337,6 +342,11 @@ void MainUI::showPopupWarnings(bool show){ settings->setValue("showPopupWarnings",show); } +void MainUI::showToolbar(bool show){ + settings->setValue("showToolbar",show); + ui->toolBar->setHidden(!show); +} + void MainUI::updateTab(QString file){ PlainTextEditor *cur = 0; int index = -1; diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.h b/src-qt5/desktop-utils/lumina-textedit/MainUI.h index 6e5d2d23..148974a0 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.h +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.h @@ -60,6 +60,7 @@ private slots: //Other Menu Actions void UpdateHighlighting(QAction *act = 0); + void showToolbar(bool); void showLineNumbers(bool); void wrapLines(bool); void ModifyColors(); diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.ui b/src-qt5/desktop-utils/lumina-textedit/MainUI.ui index 026521b3..f88f3976 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.ui @@ -182,7 +182,7 @@ 0 0 505 - 28 + 24 @@ -224,6 +224,7 @@ + @@ -436,6 +437,17 @@ Ctrl+P + + + true + + + true + + + Show Toolbar + + line_find -- cgit From 079daaa6933b54117a7963ea5d2cb8daf00caf90 Mon Sep 17 00:00:00 2001 From: Kjell Tore Ullavik Date: Wed, 6 Dec 2017 10:06:15 +0100 Subject: Don't close editor when user cancels save dialog. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 63 ++++++++++++++++++------ src-qt5/desktop-utils/lumina-textedit/MainUI.h | 1 + 2 files changed, 49 insertions(+), 15 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index 33f2d851..e584b8b1 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -189,6 +189,18 @@ QString MainUI::currentFileDir(){ return dir; } +QStringList MainUI::unsavedFiles(){ + QStringList unsaved; + for(int i=0; icount(); i++){ + PlainTextEditor *tmp = static_cast(tabWidget->widget(i)); + if(tmp->hasChange()){ + unsaved << tmp->currentFile(); + } + } + return unsaved; +} + + // ================= // PRIVATE SLOTS //================= @@ -240,6 +252,7 @@ void MainUI::CloseFile(){ } void MainUI::SaveFile(){ + qDebug() << "SaveFile"; PlainTextEditor *cur = currentEditor(); if(cur==0){ return; } cur->SaveFile(); @@ -494,26 +507,46 @@ PlainTextEditor *cur = currentEditor(); } } + //============= // PROTECTED //============= void MainUI::closeEvent(QCloseEvent *ev){ //See if any of the open editors have unsaved changes first - QStringList unsaved; - for(int i=0; icount(); i++){ - PlainTextEditor *tmp = static_cast(tabWidget->widget(i)); - if(tmp->hasChange()){ - unsaved << tmp->currentFile(); - } + QStringList unsaved = unsavedFiles(); + if(unsaved.isEmpty()){ + QMainWindow::closeEvent(ev); + return; } - if(unsaved.isEmpty()){ QMainWindow::closeEvent(ev); return; } - bool savenow = false; - if(!savenow && !ui->actionShow_Popups->isChecked()){ savenow = true; } - if(!savenow){ - QMessageBox::StandardButton but = QMessageBox::question(this, tr("Save Changes before closing?"), QString(tr("There are unsaved changes.\nDo you want save them before you close the editor?\n\n%1")).arg(unsaved.join("\n")), QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, QMessageBox::No); - savenow = (but == QMessageBox::Yes); - if(but == QMessageBox::Cancel){ ev->ignore(); return; } - } - if(savenow){ SaveFile(); } + + //If popups are disabled, give the user a chance by opening + //the save dialog automatically, then just close. + if(!ui->actionShow_Popups->isChecked()){ + SaveFile(); QMainWindow::closeEvent(ev); + return; + } + + //Otherwise, ask the user what to do. + QMessageBox::StandardButton but = QMessageBox::question( + this, + tr("Save Changes before closing?"), + QString(tr("There are unsaved changes.\nDo you want save them before you close the editor?\n\n%1")).arg(unsaved.join("\n")), + QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, QMessageBox::No); + + if(but == QMessageBox::Cancel){ + ev->ignore(); + return; + } + else if(but == QMessageBox::Yes){ + SaveFile(); + //If there are still unsaved files, the user presumably + //cancelled the save dialog and we don't want to close. + unsaved = unsavedFiles(); + if (!unsaved.isEmpty()) { + ev->ignore(); + return; + } + } + QMainWindow::closeEvent(ev); } diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.h b/src-qt5/desktop-utils/lumina-textedit/MainUI.h index 148974a0..008859fa 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.h +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.h @@ -44,6 +44,7 @@ private: //Simplification functions PlainTextEditor* currentEditor(); QString currentFileDir(); + QStringList unsavedFiles(); private slots: //Main Actions -- cgit From 58dc3bddcf5a1ed0d94feddf0a5f4f574853108f Mon Sep 17 00:00:00 2001 From: Kjell Tore Ullavik Date: Wed, 6 Dec 2017 10:12:59 +0100 Subject: Remove debug print. Fix indentation. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 1 - src-qt5/desktop-utils/lumina-textedit/MainUI.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index e584b8b1..c4981ff3 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -252,7 +252,6 @@ void MainUI::CloseFile(){ } void MainUI::SaveFile(){ - qDebug() << "SaveFile"; PlainTextEditor *cur = currentEditor(); if(cur==0){ return; } cur->SaveFile(); diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.h b/src-qt5/desktop-utils/lumina-textedit/MainUI.h index 008859fa..6602830a 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.h +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.h @@ -44,7 +44,7 @@ private: //Simplification functions PlainTextEditor* currentEditor(); QString currentFileDir(); - QStringList unsavedFiles(); + QStringList unsavedFiles(); private slots: //Main Actions -- cgit From 4e54b03821df58ca16b26f2c5faf39fe424a96cd Mon Sep 17 00:00:00 2001 From: Kjell Tore Ullavik Date: Wed, 6 Dec 2017 10:23:26 +0100 Subject: Fix indentation. --- src-qt5/desktop-utils/lumina-textedit/MainUI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.h b/src-qt5/desktop-utils/lumina-textedit/MainUI.h index 6602830a..8a3812a1 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.h +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.h @@ -44,7 +44,7 @@ private: //Simplification functions PlainTextEditor* currentEditor(); QString currentFileDir(); - QStringList unsavedFiles(); + QStringList unsavedFiles(); private slots: //Main Actions @@ -61,7 +61,7 @@ private slots: //Other Menu Actions void UpdateHighlighting(QAction *act = 0); - void showToolbar(bool); + void showToolbar(bool); void showLineNumbers(bool); void wrapLines(bool); void ModifyColors(); -- cgit From 7e998c5d28cad0ca2ac06667087cfc2845108b31 Mon Sep 17 00:00:00 2001 From: Kjell Tore Ullavik Date: Wed, 6 Dec 2017 10:28:19 +0100 Subject: Whitespace consistency. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index c4981ff3..41862be2 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -200,7 +200,6 @@ QStringList MainUI::unsavedFiles(){ return unsaved; } - // ================= // PRIVATE SLOTS //================= -- cgit From b5c72fc85c750940f1315f7d4676595363cd505d Mon Sep 17 00:00:00 2001 From: Kjell Tore Ullavik Date: Wed, 6 Dec 2017 10:29:26 +0100 Subject: Whitespace consistency. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index 41862be2..2fe54ac9 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -505,7 +505,6 @@ PlainTextEditor *cur = currentEditor(); } } - //============= // PROTECTED //============= -- cgit From 99b8089bd11baeb17030f1f0260a83b4f2d1fe0f Mon Sep 17 00:00:00 2001 From: Kjell Tore Ullavik Date: Wed, 6 Dec 2017 11:23:44 +0100 Subject: Style consistency. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index 2fe54ac9..780483f7 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -529,7 +529,8 @@ void MainUI::closeEvent(QCloseEvent *ev){ this, tr("Save Changes before closing?"), QString(tr("There are unsaved changes.\nDo you want save them before you close the editor?\n\n%1")).arg(unsaved.join("\n")), - QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, QMessageBox::No); + QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, + QMessageBox::No); if(but == QMessageBox::Cancel){ ev->ignore(); -- cgit From 0731b3a309f48ec0202e50d8d034b0723a20f8eb Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 6 Dec 2017 08:50:50 -0500 Subject: Make sure that on closing, it attempts to save *all* files with pending changes. If popup warnings are disabled just close the app (never automatically change the underlying file(s) - this can be disastrous) Add status reporting to all the "Save" functions so that it returns false if the user cancelled it. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 40 +++++++++++----------- src-qt5/desktop-utils/lumina-textedit/MainUI.h | 5 +-- .../lumina-textedit/PlainTextEditor.cpp | 10 ++++-- .../lumina-textedit/PlainTextEditor.h | 8 ++--- 4 files changed, 35 insertions(+), 28 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index 780483f7..e626023c 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -250,16 +250,26 @@ void MainUI::CloseFile(){ if(index>=0){ tabClosed(index); } } -void MainUI::SaveFile(){ +bool MainUI::SaveFile(){ PlainTextEditor *cur = currentEditor(); - if(cur==0){ return; } - cur->SaveFile(); + if(cur==0){ return true; } //nothing to do + return cur->SaveFile(); } -void MainUI::SaveFileAs(){ +bool MainUI::SaveFileAs(){ PlainTextEditor *cur = currentEditor(); - if(cur==0){ return; } - cur->SaveFile(true); + if(cur==0){ return true; } //nothing to do + return cur->SaveFile(true); +} + +bool MainUI::SaveAllFiles(){ + bool ok = true; + for(int i=0; icount(); i++){ + PlainTextEditor *tmp = static_cast(tabWidget->widget(i)); + if(tmp->hasChange()){ + ok = ok && tmp->SaveFile(); + } + } } void MainUI::Print() { @@ -511,15 +521,7 @@ PlainTextEditor *cur = currentEditor(); void MainUI::closeEvent(QCloseEvent *ev){ //See if any of the open editors have unsaved changes first QStringList unsaved = unsavedFiles(); - if(unsaved.isEmpty()){ - QMainWindow::closeEvent(ev); - return; - } - - //If popups are disabled, give the user a chance by opening - //the save dialog automatically, then just close. - if(!ui->actionShow_Popups->isChecked()){ - SaveFile(); + if(unsaved.isEmpty() || !ui->actionShow_Popups->isChecked()){ QMainWindow::closeEvent(ev); return; } @@ -537,14 +539,12 @@ void MainUI::closeEvent(QCloseEvent *ev){ return; } else if(but == QMessageBox::Yes){ - SaveFile(); - //If there are still unsaved files, the user presumably - //cancelled the save dialog and we don't want to close. - unsaved = unsavedFiles(); - if (!unsaved.isEmpty()) { + if( !SaveAllFiles() ){ + //cancelled by user ev->ignore(); return; } + } QMainWindow::closeEvent(ev); } diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.h b/src-qt5/desktop-utils/lumina-textedit/MainUI.h index 8a3812a1..5d10f21b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.h +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.h @@ -51,8 +51,9 @@ private slots: void NewFile(); void OpenFile(QString file = ""); void CloseFile(); //current file only - void SaveFile(); - void SaveFileAs(); + bool SaveFile(); + bool SaveFileAs(); + bool SaveAllFiles(); void Print(); void fontChanged(const QFont &font); void updateStatusTip(); diff --git a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp index 653bd0e8..6e04d67b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp @@ -103,12 +103,17 @@ void PlainTextEditor::LoadFile(QString filepath){ emit FileLoaded(this->whatsThis()); } -void PlainTextEditor::SaveFile(bool newname){ +bool PlainTextEditor::SaveFile(bool newname){ + //NOTE: This returns true for proper behaviour, and false for a user-cancelled process //qDebug() << "Save File:" << this->whatsThis(); + //Quick check for a non-editable file + if(!newname && this->whatsThis().startsWith("/")){ + if(!QFileInfo(this->whatsThis()).isWritable()){ newname = true; } //cannot save the current file name/location + } if( !this->whatsThis().startsWith("/") || newname ){ //prompt for a filename/path QString file = QFileDialog::getSaveFileName(this, tr("Save File"), this->whatsThis(), tr("Text File (*)")); - if(file.isEmpty()){ return; } + if(file.isEmpty()){ return false; } //cancelled this->setWhatsThis(file); SYNTAX->loadRules( Custom_Syntax::ruleForFile(this->whatsThis().section("/",-1), settings) ); SYNTAX->rehighlight(); @@ -118,6 +123,7 @@ void PlainTextEditor::SaveFile(bool newname){ hasChanges = !ok; if(ok){ lastSaveContents = this->toPlainText(); emit FileLoaded(this->whatsThis()); } watcher->addPath(currentFile()); + return true; //qDebug() << " - Success:" << ok << hasChanges; } diff --git a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h index 0c83b7ce..ec6c6bf7 100644 --- a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h +++ b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h @@ -21,7 +21,7 @@ class PlainTextEditor : public QPlainTextEdit{ public: PlainTextEditor(QSettings *set, QWidget *parent = 0); ~PlainTextEditor(); - + //Functions for setting up the editor void showLineNumbers(bool show = true); void LoadSyntaxRule(QString type); @@ -29,7 +29,7 @@ public: //File loading/setting options void LoadFile(QString filepath); - void SaveFile(bool newname = false); + bool SaveFile(bool newname = false); QString currentFile(); bool hasChange(); @@ -37,10 +37,10 @@ public: //Functions for managing the line number widget (internal - do not need to run directly) int LNWWidth(); //replacing the LNW size hint detection void paintLNW(QPaintEvent *ev); //forwarded from the LNW paint event - void updateLNW(); + void updateLNW(); QFontMetrics *metrics; - + private: QWidget *LNW; //Line Number Widget bool showLNW; -- cgit From eee843173b5f1f3d7e7d7fc1a822f0e735378d38 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 6 Dec 2017 09:28:30 -0500 Subject: Add better handling of read-only files in LTE. --- src-qt5/desktop-utils/lumina-textedit/MainUI.cpp | 22 ++++++++++++++++++---- src-qt5/desktop-utils/lumina-textedit/MainUI.h | 3 +++ .../lumina-textedit/PlainTextEditor.cpp | 17 +++++++++++++++-- .../lumina-textedit/PlainTextEditor.h | 8 +++++--- 4 files changed, 41 insertions(+), 9 deletions(-) (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp index e626023c..bdb9d29c 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.cpp @@ -29,15 +29,26 @@ MainUI::MainUI() : QMainWindow(), ui(new Ui::MainUI){ fontbox->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); QWidget *spacer = new QWidget(this); spacer->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + QWidget *spacer2 = new QWidget(this); + spacer2->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding); + label_readonly = new QAction(tr("Read-Only File"), this); + label_readonly->setEnabled(false); //not an actual button + label_readonly->setToolTip(""); + QFont fnt = this->font(); + fnt.setItalic(true); + fnt.setBold(true); + label_readonly->setFont(fnt); fontSizes = new QSpinBox(this); fontSizes->setRange(5, 72); - fontSizes->setValue(9); + fontSizes->setValue(this->font().pointSize()); fontSizes->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred); //For some reason, the FontComboBox is always 2 pixels taller than the SpinBox - manually fix that here - fontbox->setFixedHeight(30); - fontSizes->setFixedHeight(32); + fontbox->setFixedHeight(ui->toolBar->iconSize().height()-2); + fontSizes->setFixedHeight(ui->toolBar->iconSize().height()); ui->toolBar->addWidget(spacer); + ui->toolBar->addAction(label_readonly); + ui->toolBar->addWidget(spacer2); ui->toolBar->addWidget(fontbox); ui->toolBar->addWidget(fontSizes); //Load the special Drag and Drop QTabWidget @@ -264,12 +275,13 @@ bool MainUI::SaveFileAs(){ bool MainUI::SaveAllFiles(){ bool ok = true; - for(int i=0; icount(); i++){ + for(int i=0; icount() && ok; i++){ PlainTextEditor *tmp = static_cast(tabWidget->widget(i)); if(tmp->hasChange()){ ok = ok && tmp->SaveFile(); } } + return ok; } void MainUI::Print() { @@ -387,6 +399,7 @@ void MainUI::updateTab(QString file){ tabWidget->setTabWhatsThis(index, file); //needed for drag/drop functionality ui->actionSave_File->setEnabled(changes); this->setWindowTitle( (changes ? "*" : "") + file.section("/",-2) ); + label_readonly->setVisible( cur->readOnlyFile() ); } void MainUI::tabChanged(){ @@ -404,6 +417,7 @@ void MainUI::tabChanged(){ fontbox->setCurrentFont(font); fontSizes->setValue( font.pointSize() ); ui->actionWrap_Lines->setChecked( cur->lineWrapMode()==QPlainTextEdit::WidgetWidth ); + label_readonly->setVisible( cur->readOnlyFile() ); } void MainUI::tabClosed(int tab){ diff --git a/src-qt5/desktop-utils/lumina-textedit/MainUI.h b/src-qt5/desktop-utils/lumina-textedit/MainUI.h index 5d10f21b..464e7a52 100644 --- a/src-qt5/desktop-utils/lumina-textedit/MainUI.h +++ b/src-qt5/desktop-utils/lumina-textedit/MainUI.h @@ -13,6 +13,8 @@ #include #include #include +#include +#include #include "PlainTextEditor.h" #include "ColorDialog.h" @@ -40,6 +42,7 @@ private: QSettings *settings; QShortcut *closeFindS; QSpinBox *fontSizes; + QAction *label_readonly; //Simplification functions PlainTextEditor* currentEditor(); diff --git a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp index 6e04d67b..8626b2b4 100644 --- a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp @@ -24,7 +24,7 @@ PlainTextEditor::PlainTextEditor(QSettings *set, QWidget *parent) : QPlainTextEd LNW = new LNWidget(this); showLNW = true; watcher = new QFileSystemWatcher(this); - hasChanges = false; + hasChanges = readonly = false; lastSaveContents.clear(); matchleft = matchright = -1; this->setTabStopWidth( 8 * this->fontMetrics().width(" ") ); //8 character spaces per tab (UNIX standard) @@ -99,7 +99,14 @@ void PlainTextEditor::LoadFile(QString filepath){ this->centerCursor(); //scroll until cursor is centered (if possible) } hasChanges = false; - if(QFile::exists(filepath)){ watcher->addPath(filepath); } + readonly = false; + if(QFile::exists(filepath)){ + readonly = !QFileInfo(filepath).isWritable(); + watcher->addPath(filepath); + }else if(filepath.startsWith("/")){ + //See if the containing directory is writable instead + readonly = !QFileInfo(filepath.section("/",0,-2)).isWritable(); + } emit FileLoaded(this->whatsThis()); } @@ -117,6 +124,7 @@ bool PlainTextEditor::SaveFile(bool newname){ this->setWhatsThis(file); SYNTAX->loadRules( Custom_Syntax::ruleForFile(this->whatsThis().section("/",-1), settings) ); SYNTAX->rehighlight(); + readonly = !QFileInfo(this->whatsThis()).isWritable(); //update this flag } if( !watcher->files().isEmpty() ){ watcher->removePaths(watcher->files()); } bool ok = LUtils::writeFile(this->whatsThis(), this->toPlainText().split("\n"), true); @@ -135,6 +143,11 @@ bool PlainTextEditor::hasChange(){ return hasChanges; } +bool PlainTextEditor::readOnlyFile(){ + //qDebug() << "Read Only File:" << readonly << this->whatsThis(); + return readonly; +} + //Functions for managing the line number widget int PlainTextEditor::LNWWidth(){ //Get the number of chars we need for line numbers diff --git a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h index ec6c6bf7..b0a6cbc7 100644 --- a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h +++ b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.h @@ -33,6 +33,7 @@ public: QString currentFile(); bool hasChange(); + bool readOnlyFile(); //Functions for managing the line number widget (internal - do not need to run directly) int LNWWidth(); //replacing the LNW size hint detection @@ -55,8 +56,9 @@ private: void clearMatchData(); void highlightMatch(QChar ch, bool forward, int fromPos, QChar startch); - //Flags to keep track of changes - bool hasChanges; + //Flags to keep track of changes/status + bool hasChanges, readonly; + private slots: //Functions for managing the line number widget void LNW_updateWidth(); // Tied to the QPlainTextEdit::blockCountChanged() signal @@ -68,7 +70,7 @@ private slots: void textChanged(); void cursorMoved(); //Function for prompting the user if the file changed externally - void fileChanged(); + void fileChanged(); protected: void resizeEvent(QResizeEvent *ev); -- cgit From 03cf431990803e19142f23b55826278ea13e15e6 Mon Sep 17 00:00:00 2001 From: q5sys Date: Wed, 13 Dec 2017 15:23:22 -0500 Subject: add skeleton for file transfer dialog --- src-qt5/desktop-utils/lumina-fm/MainUI.cpp | 1 + src-qt5/desktop-utils/lumina-fm/MainUI.ui | 12 +++++++++++- src-qt5/desktop-utils/lumina-fm/transferd.cpp | 28 +++++++++++++++++++++++++++ src-qt5/desktop-utils/lumina-fm/transferd.h | 13 +++++++++++++ 4 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 src-qt5/desktop-utils/lumina-fm/transferd.cpp create mode 100644 src-qt5/desktop-utils/lumina-fm/transferd.h (limited to 'src-qt5/desktop-utils') diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp index 28bfa20b..8455e3aa 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.cpp +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.cpp @@ -118,6 +118,7 @@ QSize orig = settings->value("preferences/MainWindowSize", QSize()).toSize(); connect(TRAY, SIGNAL(JobsFinished()), this, SLOT(TrayJobsFinished()) ); if(DEBUG){ qDebug() << " - Done with init"; } ui->actionOpen_as_Root->setVisible(LUtils::isValidBinary("qsudo")); + ui->transferTreeView->setVisible(false); } MainUI::~MainUI(){ diff --git a/src-qt5/desktop-utils/lumina-fm/MainUI.ui b/src-qt5/desktop-utils/lumina-fm/MainUI.ui index a15f91c9..5f067786 100644 --- a/src-qt5/desktop-utils/lumina-fm/MainUI.ui +++ b/src-qt5/desktop-utils/lumina-fm/MainUI.ui @@ -69,7 +69,7 @@ 0 0 567 - 359 + 161 @@ -98,6 +98,16 @@ + + + + + 0 + 0 + + + + diff --git a/src-qt5/desktop-utils/lumina-fm/transferd.cpp b/src-qt5/desktop-utils/lumina-fm/transferd.cpp new file mode 100644 index 00000000..c5a0a156 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/transferd.cpp @@ -0,0 +1,28 @@ + + +int totaltransactions = sel.length(); +QList transaction; +for(int i=0;istart(5000); +} +QElapsedTimer timer; +timer.start(); +//copy/move file +timer.elapsed(); // "milliseconds" +transferTime = transferTime + timer.elapsed() +transaction[i].value(2) = true; +currentTransfered++; +currentTransferedSize = currentTransferedSize + transaction[i].value(1); +//calculate transfer data rate from transferTime and currentTransferedSize +avgTransferRate = ( currentTransferedSize / (transferTime * 1000) ) +//can do estimates on potential time? +} diff --git a/src-qt5/desktop-utils/lumina-fm/transferd.h b/src-qt5/desktop-utils/lumina-fm/transferd.h new file mode 100644 index 00000000..291541e8 --- /dev/null +++ b/src-qt5/desktop-utils/lumina-fm/transferd.h @@ -0,0 +1,13 @@ +class transactionInfo{ +public: + QString filepath; + qint64 filesize; + Bool finished; +}; + + +QStringList sel; +int totaltransactions currentTransfered; +qint64 totalsize, currentTransferedSize, transferTime, avgTransferRate; +bool paused; +QElapsedTimer timer; -- cgit