From 6f893d72686b0153c23385c28666c3ada68e1f5d Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 9 Feb 2018 15:08:20 -0500 Subject: Fix up a number of crashes related to item loading times and multiple columns --- src-qt5/desktop-utils/lumina-fm/Browser.cpp | 35 +++++++++++++++++++--- src-qt5/desktop-utils/lumina-fm/Browser.h | 4 ++- src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 10 ++++++- src-qt5/desktop-utils/lumina-fm/BrowserWidget.h | 1 + .../desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 4 ++- 5 files changed, 47 insertions(+), 7 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-fm') diff --git a/src-qt5/desktop-utils/lumina-fm/Browser.cpp b/src-qt5/desktop-utils/lumina-fm/Browser.cpp index 50099a51..dfe402e1 100644 --- a/src-qt5/desktop-utils/lumina-fm/Browser.cpp +++ b/src-qt5/desktop-utils/lumina-fm/Browser.cpp @@ -17,6 +17,11 @@ 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)) ); + updateTimer = new QTimer(this); + updateTimer->setInterval(500); + updateTimer->setSingleShot(true); + connect(updateTimer, SIGNAL(timeout()), this, SLOT(updateRequested()) ); + showHidden = false; showThumbs = false; imageFormats = LUtils::imageExtensions(false); //lowercase suffixes @@ -84,8 +89,12 @@ QIcon* Browser::loadIcon(QString icon){ void Browser::fileChanged(QString file){ //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 if(oldFiles.contains(file) ){ + if(QFile::exists(file) ){ + updateList << file; + if(!updateTimer->isActive()){ updateTimer->start(); } + //QtConcurrent::run(this, &Browser::loadItem, file, this); //file modified but not removed + + }else if(oldFiles.contains(file) ){ oldFiles.removeAll(file); emit itemRemoved(file); } @@ -94,8 +103,10 @@ void Browser::fileChanged(QString file){ void Browser::dirChanged(QString dir){ //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 ); } + updateList << dir; + if(!updateTimer->isActive()){ updateTimer->start(); } + //if(dir==currentDir){ QTimer::singleShot(10, this, SLOT(loadDirectory()) ); } + //else if(dir.startsWith(currentDir)){ QtConcurrent::run(this, &Browser::loadItem, dir, this ); } } void Browser::futureFinished(QString name, QImage icon){ @@ -125,11 +136,27 @@ void Browser::futureFinished(QString name, QImage icon){ //qDebug() << " -- done:" << name; } +void Browser::updateRequested(){ + //Clear the cache list ASAP + QStringList list = updateList; + updateList.clear(); + list.removeDuplicates(); + //Now look to see if an all-dir update is needed + if(list.contains(currentDir)){ QTimer::singleShot(10, this, SLOT(loadDirectory()) ); } + else{ + //individual file updates + for(int i=0; i videoImages; bool showHidden, showThumbs; - QStringList imageFormats, videoFormats, oldFiles; + QStringList imageFormats, videoFormats, oldFiles, updateList; QHash mimeIcons; //cache for quickly re-using QIcons + QTimer *updateTimer; 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 @@ -50,6 +51,7 @@ 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); + void updateRequested(); public slots: void loadDirectory(QString dir = "", bool force = false); diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index 5a08b797..82ce8a33 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -39,11 +39,17 @@ BrowserWidget::BrowserWidget(QString objID, QWidget *parent) : QWidget(parent){ } BrowserWidget::~BrowserWidget(){ + if(bThread->isRunning()){ bThread->exit(); } BROWSER->deleteLater(); - bThread->exit(); bThread->deleteLater(); } +void BrowserWidget::stop(){ + bThread->exit(); + this->setVisible(false); + this->disconnect(); +} + void BrowserWidget::changeDirectory(QString dir){ if(USE_VIDEO_LABEL){ QStringList vids = videoMap.keys(); @@ -305,8 +311,10 @@ void BrowserWidget::itemRemoved(QString item){ } void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo *info){ + if(info==0){ return; } if(listWidget!=0){ listWidget->setWhatsThis( BROWSER->currentDirectory() ); } if(treeWidget!=0){ treeWidget->setWhatsThis(BROWSER->currentDirectory() ); } + if(info->absolutePath() != BROWSER->currentDirectory()){ return; } //leftover item from a previous load //qDebug() << "Item Data Available:" << info->fileName(); int num = 0; if(listWidget!=0){ diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h index 2f8c3ed7..dc7c95c1 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h @@ -40,6 +40,7 @@ public: ~BrowserWidget(); QString id(){ return ID; } + void stop(); void changeDirectory(QString dir); QString currentDirectory(){ return BROWSER->currentDirectory(); } diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index d3b0ae2b..ce5dfd81 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -473,9 +473,11 @@ void DirWidget::on_actionSingleColumn_triggered(bool checked){ if(!checked){ return; } if(RCBW==0){ return; } //nothing to do ui->browser_layout->removeWidget(RCBW); - RCBW->deleteLater(); + RCBW->stop(); + BrowserWidget *tmp = RCBW; RCBW = 0; setCurrentBrowser(""); //reset back to the remaining browser + QTimer::singleShot(10000, tmp, SLOT(deleteLater())); } void DirWidget::on_actionDualColumn_triggered(bool checked){ -- cgit From 59f8dab8a85950d08d0044e3a2500df58fc5d9a8 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Tue, 6 Mar 2018 11:07:23 -0500 Subject: Update the i18N translation files (sync with sources) Also add in the new pandora shortcut for lumina-mediaplayer (*.desktop) --- .../desktop-utils/lumina-fm/i18n/lumina-fm_af.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_az.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_de.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_el.ts | 301 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_en_AU.ts | 301 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_en_GB.ts | 301 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_en_ZA.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_es.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_et.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts | 301 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_fr_CA.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_he.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_id.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_is.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_it.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts | 301 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_pt_BR.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_th.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts | 301 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_zh_CN.ts | 301 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_zh_HK.ts | 301 +++++++++++---------- .../lumina-fm/i18n/lumina-fm_zh_TW.ts | 301 +++++++++++---------- .../desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts | 301 +++++++++++---------- 63 files changed, 9954 insertions(+), 9009 deletions(-) (limited to 'src-qt5/desktop-utils/lumina-fm') 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 cf821280..f59009d4 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 @@ -193,42 +193,42 @@ - + (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 Неправилно име @@ -238,44 +238,44 @@ - + 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 Текуща @@ -315,95 +315,110 @@ - + 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 Отваряне - + + Set as Wallpaper + + + + Rename... Преименуване... - + Cut Selection Изрязване на избраното - + Copy Selection Копиране на избраното - + Paste Поставяне - + Delete Selection Изтриване на избраното - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ New Location: %2 Shift+Дясна стрелка - - File - Файл - - - - 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+Т - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit Изход - + Ctrl+Q Ctrl+Q - + &Preferences &Настройки - + Show Hidden Files Показване на скритите файлове - + Scan for Devices Сканиране за устройства - + Manage Bookmarks Управление на отметки - + Show Action Buttons Показване на бутоните за действия - + Ctrl+F Ctrl+F @@ -853,132 +868,132 @@ New Location: %2 Основен списък - + 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 Потвърдете затварянето @@ -993,42 +1008,42 @@ New Location: %2 - + 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? Съществуващ файл със същото име ще бъде заменен. Сигурни ли сте, че искате да продължите? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 94a09e10..cb0a0330 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 @@ -193,42 +193,42 @@ 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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Localització nova: %2 Majúscula + Dreta - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Localització nova: %2 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 @@ -993,42 +1008,42 @@ Localització nova: %2 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? 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 c999c698..68f899ad 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 @@ -193,42 +193,42 @@ 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 @@ -238,44 +238,44 @@ - + 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í @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Nové umístění: %2 Shift+šipka vpravo - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Nové umístění: %2 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í @@ -993,42 +1008,42 @@ Nové umístění: %2 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 c7c108f4..5116583f 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 @@ -193,42 +193,42 @@ 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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Ny placering: %2 Skift+Højre - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Ny placering: %2 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 @@ -993,42 +1008,42 @@ Ny placering: %2 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? 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 b11a6e43..2b80b0b5 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 @@ -194,42 +194,42 @@ 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 @@ -239,44 +239,44 @@ - + 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 @@ -316,95 +316,110 @@ 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 - + + Set as Wallpaper + + + + Rename... Umbenennen … - + Cut Selection Auswahl ausschneiden - + Copy Selection Auswahl kopieren - + Paste Einfügen - + Delete Selection Auswahl löschen - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -649,197 +664,197 @@ Neue Position: %2 Umschalt+Rechts - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -854,132 +869,132 @@ Neue Position: %2 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 @@ -994,42 +1009,42 @@ Neue Position: %2 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? 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 37d674e8..1180ac55 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 @@ -193,42 +193,42 @@ - + (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 Μη έγκυρο όνομα @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - Αρχείο - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks Διαχείριση σελιδοδεικτών - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 0f6e6829..79f0c207 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ New Location: %2 Shift+Right - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ New Location: %2 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 @@ -993,42 +1008,42 @@ New Location: %2 - + 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? 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 f3551abf..b2ad79bb 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ New Location: %2 Shift+Right - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ New Location: %2 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 @@ -993,42 +1008,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 b69dfc5b..3f69bbaa 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 @@ -193,42 +193,42 @@ 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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Ubicación Nueva: %2 Shift+Der - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Ubicación Nueva: %2 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 @@ -993,42 +1008,42 @@ Ubicación Nueva: %2 - + 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? 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 d1774826..988c1f0e 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + Rename... Nimeta ümber... - + Cut Selection Lõika valik - + Copy Selection Kopeeri valik - + Paste Aseta - + Delete Selection Kustuta valik - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Uus asukoht: %2 - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Uus asukoht: %2 - + 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 @@ -993,42 +1008,42 @@ Uus asukoht: %2 - + 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? 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 b499a3b3..f0f5c52e 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks Laster-markak kudeatu - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 cdeb4246..6a3974a0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + Rename... Muuta nimeä… - + Cut Selection Leikkaa valinta - + Copy Selection Kopioi valinta - + Paste Liitä - + Delete Selection Poista valinta - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Uusi sijainti: %2 Vaihto+Oikea - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Uusi sijainti: %2 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 @@ -993,42 +1008,42 @@ Uusi sijainti: %2 - + 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? 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 23cf1066..06f03569 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 Maj. Droite - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -850,132 +865,132 @@ New Location: %2 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 0703ddf5..22e3aba3 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 @@ -194,42 +194,42 @@ - + (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 שם לא חוקי @@ -239,44 +239,44 @@ - + 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 @@ -316,95 +316,110 @@ - + 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. - + Open פתח - + + Set as Wallpaper + + + + Rename... שנה שם... - + Cut Selection גזור בחירה - + Copy Selection העתק בחירה - + Paste הדבק - + Delete Selection מחק בחירה - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -646,197 +661,197 @@ New Location: %2 - - File - קובץ - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -851,132 +866,132 @@ New Location: %2 - + 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 @@ -991,42 +1006,42 @@ New Location: %2 - + 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? 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 7427f4ab..02dae97d 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 @@ -193,42 +193,42 @@ - + (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 अवैध नाम @@ -238,44 +238,44 @@ - + 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 तत्कालीन @@ -315,95 +315,110 @@ - + 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. "लुमिना-फाइलइन्फो" नमक सुविधा उपकरण में नहीं है|कृपया पहले इनस्टॉल करें| - + Open खोलें - + + Set as Wallpaper + + + + Rename... नाम दोबारा तय... - + Cut Selection चुने हुए भाग को कट करें - + Copy Selection चुने हुए भाग को कॉपी करें - + Paste चिपकाएँ - + Delete Selection चुने हुए भाग हो डिलीट करे - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 शिफ्ट+राइट - - File - फाइल - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit निकास - + Ctrl+Q कण्ट्रोल+Q - + &Preferences &प्राथमिकताएँ - + Show Hidden Files छुपी हुई फाइलें दिखाएँ - + Scan for Devices उपकरण खोजें - + Manage Bookmarks बूक्मराक्स का प्रबंधन - + Show Action Buttons क्रिया बटन दिखाएँ - + Ctrl+F कण्ट्रोल+F @@ -850,132 +865,132 @@ New Location: %2 सामान्य सूचि - + 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 निकासी सुनिश्चित करें @@ -990,42 +1005,42 @@ New Location: %2 - + 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? इसी नाम की मौजूदा फाइल नई फाइल से बदल दी जाएगी| क्या आप सचमुच ऐसा करना चाहते हैं? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 9089c363..c53cc845 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 Shift+jobbra - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -850,132 +865,132 @@ New Location: %2 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 7569c0ab..4983aac8 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + Rename... Ganti Nama… - + Cut Selection Potong data terpilih - + Copy Selection Salin pilihan - + Paste Pasta - + Delete Selection Hapus Seleksi - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 Shift+Right - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -850,132 +865,132 @@ New Location: %2 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 2a700376..1141df40 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 @@ -193,42 +193,42 @@ 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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + Rename... Rinomina... - + Cut Selection Taglia Selezione - + Copy Selection Copia Selezione - + Paste Incolla - + Delete Selection Elimina selezione - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Nuova posizione: %2 Shift+Destra - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Nuova posizione: %2 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 @@ -993,42 +1008,42 @@ Nuova posizione: %2 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? 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 1e872f25..3a98fcd4 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 ディレクトリーがありません @@ -196,42 +196,42 @@ 二列で表示 - + (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 名前が無効です @@ -241,44 +241,44 @@ - + 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 スナップショットが存在する場合にはスナップショット名が入る 現行版 @@ -319,95 +319,110 @@ マルチメディアプレイヤー - + 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 開く - + + Set as Wallpaper + + + + Rename... 名前の変更... - + Cut Selection 選択したアイテムを切り取る - + Copy Selection 選択したアイテムをコピー - + Paste 貼り付け - + Delete Selection 選択したアイテムを削除 - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -655,198 +670,198 @@ New Location: %2 Shift+Right - - File - ファイル - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit 終了 - + Ctrl+Q Ctrl+Q - + &Preferences 設定(&P) - + Show Hidden Files チェックボックスのキャプション 隠しファイルを表示する - + Scan for Devices デバイスをスキャンする - + Manage Bookmarks ブックマークの管理 - + Show Action Buttons アクションボタンを表示する - + Ctrl+F Ctrl+F @@ -862,133 +877,133 @@ New Location: %2 シンプルな一覧表示 - + 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 終了の確認 @@ -1003,42 +1018,42 @@ New Location: %2 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? 既にある同名のフィアルに上書きされます。本当に続けますか? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 f5356712..db59405a 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 @@ -193,42 +193,42 @@ - + (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 잘못된 이름 @@ -238,44 +238,44 @@ - + 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 현재 @@ -315,95 +315,110 @@ - + 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 열기 - + + Set as Wallpaper + + + + Rename... - + Cut Selection 선택 항목 삭제 - + Copy Selection 선택 항목 복사 - + Paste 붙여 넣기 - + Delete Selection 선택 항목 삭제 - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ New Location: %2 Shift+Right - - File - 파일 - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit 종료 - + Ctrl+Q Ctrl+Q - + &Preferences 설정(&P) - + Show Hidden Files 숨겨진 파일 보기 - + Scan for Devices 장치 검색 - + Manage Bookmarks 책갈피 관리 - + Show Action Buttons 동작 버튼 보기 - + Ctrl+F Ctrl+F @@ -853,132 +868,132 @@ New Location: %2 기본 목록 - + 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 종료 확인 @@ -993,42 +1008,42 @@ New Location: %2 - + 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? 이미 존재하는 같은 이름의 파일이 교체됩니다. 계속하시겠습니까? 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 5b149f8f..a5628e0a 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 @@ -193,42 +193,42 @@ 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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Nauja vieta: %2 Shift(Lyg2)+Dešinėn - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Nauja vieta: %2 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ą @@ -993,42 +1008,42 @@ Nauja vieta: %2 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? 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 9b0e8cc5..09660e58 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Jaunā atrašanās vieta: %2 Shift+Pa labi - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Jaunā atrašanās vieta: %2 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 @@ -993,42 +1008,42 @@ Jaunā atrašanās vieta: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 b138955e..00de5085 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + Rename... Naam wijzigen... - + Cut Selection Selectie knippen - + Copy Selection Selectie kopiëren - + Paste Plakken - + Delete Selection Selectie verwijderen - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Nieuwe locatie: %2 Shift+Rechts - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Nieuwe locatie: %2 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 @@ -993,42 +1008,42 @@ Nieuwe locatie: %2 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 865d0f92..22ec6893 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 @@ -193,42 +193,42 @@ 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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + Rename... Zmień nazwę... - + Cut Selection Wytnij - + Copy Selection Kopiuj - + Paste Wklej - + Delete Selection Usuń - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Nowa lokalizacja: %2 Shift+prawo - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Nowa lokalizacja: %2 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 @@ -993,42 +1008,42 @@ Nowa lokalizacja: %2 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ć? 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 112f39e5..bdb8bf7e 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open Abrir - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Nova Localização: %2 Shift+Direita - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Nova Localização: %2 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 @@ -993,42 +1008,42 @@ Nova Localização: %2 - + 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? 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 4fc7c36d..2ddfbebe 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 @@ -193,42 +193,42 @@ 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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Nova Localização: %2 Shift+Direito - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Nova Localização: %2 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 @@ -993,42 +1008,42 @@ Nova Localização: %2 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 b9ab2104..de0703b2 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 В папке нет содержимого @@ -193,42 +193,42 @@ Вид в две колонки - + (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 Недопустимое имя @@ -238,44 +238,44 @@ - + 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 Текущий @@ -315,95 +315,110 @@ Мультимедийный плеер - + 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 Открыть - + + Set as Wallpaper + + + + Rename... Переименовать... - + Cut Selection Вырезать выделенное - + Copy Selection Копировать выделенное - + Paste Вставить - + Delete Selection Удалить выделенное - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -647,197 +662,197 @@ New Location: %2 Shift+Вправо - - File - Файл - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit Выход - + Ctrl+Q Ctrl+Q - + &Preferences Настройка &P - + Show Hidden Files Показать скрытые файлы - + Scan for Devices Поиск устройств - + Manage Bookmarks Управление закладками - + Show Action Buttons Показывать кнопки - + Ctrl+F Ctrl+F @@ -852,132 +867,132 @@ New Location: %2 Список - + 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 Проверка Выхода @@ -992,42 +1007,42 @@ New Location: %2 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? Существующий файл с таким именем будет заменен. Вы уверены, что хотите продолжить? 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 0013cb24..028dda6c 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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ť - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ New Location: %2 Shift+šípka vpravo - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ New Location: %2 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 @@ -993,42 +1008,42 @@ New Location: %2 - + 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ť? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 befcffb4..5724905e 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Ny Plats: %2 Shift+Höger - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Ny Plats: %2 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 @@ -993,42 +1008,42 @@ Ny Plats: %2 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 354de22a..d37869e2 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + Open Current Dir as Root - + 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 - + + Set as Wallpaper + + + + 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 + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ Yeni Konum: %2 Shift+Sağ - - File - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + 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 @@ -853,132 +868,132 @@ Yeni Konum: %2 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 @@ -993,42 +1008,42 @@ Yeni Konum: %2 - + 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? 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 32e5cdae..618099f5 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 @@ -193,42 +193,42 @@ - + (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 Некоректна назва @@ -238,44 +238,44 @@ - + 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 Поточний @@ -315,95 +315,110 @@ - + 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 Відкрити - + + Set as Wallpaper + + + + Rename... Перейменувати... - + Cut Selection Вирізати обране - + Copy Selection Копіювати виділене - + Paste Вставити - + Delete Selection Видалити виділене - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -648,197 +663,197 @@ New Location: %2 Shift+праворуч - - File - Файл - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit Вихід - + Ctrl+Q Ctrl+Q - + &Preferences &Налаштування - + Show Hidden Files Показати приховані файли - + Scan for Devices Пошук пристроїв - + Manage Bookmarks Керування закладками - + Show Action Buttons Показати дійові кнопки - + Ctrl+F Ctrl+F @@ -853,132 +868,132 @@ New Location: %2 Список - + 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 Перевірка виходу @@ -993,42 +1008,42 @@ New Location: %2 - + 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? Існуючий файл з таким іменем буде замінений. Ви впевнені, що хочете продовжити? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 cc7eafdd..a341b63f 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 目录无内容 @@ -195,42 +195,42 @@ 双列视图 - + (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 无效的名称 @@ -240,44 +240,44 @@ - + 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 当前 @@ -317,95 +317,110 @@ 多媒体播放器 - + 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 打开 - + + Set as Wallpaper + + + + Rename... 重命名... - + Cut Selection 剪切选中部分 - + Copy Selection 复制选中部分 - + Paste 粘贴 - + Delete Selection 删除选中部分 - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -653,197 +668,197 @@ New Location: %2 Shift+Right - - File - 文件 - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit 退出 - + Ctrl+Q Ctrl+Q - + &Preferences 首选项(&P) - + Show Hidden Files 显示隐藏文件 - + Scan for Devices 扫描设备 - + Manage Bookmarks 管理书签 - + Show Action Buttons 显示动作按钮 - + Ctrl+F Ctrl+F @@ -858,133 +873,133 @@ New Location: %2 基本清单 - + 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 快速退出 快速退出 @@ -1000,44 +1015,44 @@ New Location: %2 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? 将替换同名的现有文件。你确定要继续吗? 将替换同名的现有文件。你确定要继续吗? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? 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 aa308f9c..f4bc05f0 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 @@ -193,42 +193,42 @@ - + (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 @@ -238,44 +238,44 @@ - + 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 @@ -315,95 +315,110 @@ - + 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. - + Open - + + Set as Wallpaper + + + + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection - + Extract Here - + Archive Selection - + Select Archive + + + Set Wallpaper on Screen + + + + + Screen + + FODialog @@ -645,197 +660,197 @@ New Location: %2 - - File - - - - - 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 - + + &File + + + + + &View + + + + + &Bookmarks + + + + + &External Devices + + + + + &Git + + + + Exit - + Ctrl+Q - + &Preferences - + Show Hidden Files - + Scan for Devices - + Manage Bookmarks - + Show Action Buttons - + Ctrl+F @@ -850,132 +865,132 @@ New Location: %2 - + 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 @@ -990,42 +1005,42 @@ New Location: %2 - + 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? -- cgit