From f4b89e8c1331efb29c65808cf7f5e273108ef3fa Mon Sep 17 00:00:00 2001 From: Arnar Mar Sig Date: Fri, 3 Feb 2017 00:10:34 +0000 Subject: * Initialize PanelWidget layout in the constructor. * Instead of removing all PanelWidgets in LoadSettings, remove any extra panels and add more if needed. --- .../lumina-config/pages/page_interface_panels.cpp | 35 ++++++++++++++-------- 1 file changed, 22 insertions(+), 13 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/pages/page_interface_panels.cpp b/src-qt5/core-utils/lumina-config/pages/page_interface_panels.cpp index 827061af..3c355aa7 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_interface_panels.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_interface_panels.cpp @@ -21,6 +21,13 @@ page_interface_panels::page_interface_panels(QWidget *parent) : PageWidget(paren connect(ui->tool_panels_add, SIGNAL(clicked()), this, SLOT(newPanel()) ); updateIcons(); setupProfiles(); + + //Create panels container + QHBoxLayout *panels_layout = new QHBoxLayout(); + panels_layout->setContentsMargins(0,0,0,0); + panels_layout->setAlignment(Qt::AlignLeft); + panels_layout->addStretch(); + ui->scroll_panels->widget()->setLayout(panels_layout); } page_interface_panels::~page_interface_panels(){ @@ -53,28 +60,30 @@ void page_interface_panels::LoadSettings(int screennum){ QString screenID = QApplication::screens().at(cscreen)->name(); QString DPrefix = "desktop-"+screenID+"/"; int panelnumber = settings->value(DPrefix+"panels",-1).toInt(); + QBoxLayout *panels_layout = static_cast(ui->scroll_panels->widget()->layout()); -//First clean any current panels - for(int i=0; iscroll_panels->widget()->layout()==0){ - ui->scroll_panels->widget()->setLayout( new QHBoxLayout() ); - ui->scroll_panels->widget()->layout()->setContentsMargins(0,0,0,0); + //Remove extra panels (if any) + for(int i=panelnumber; iscroll_panels->widget()->layout()->setAlignment(Qt::AlignLeft); - //Clear anything left over in the layout - for(int i=0; iscroll_panels->widget()->layout()->count(); i++){ - delete ui->scroll_panels->widget()->layout()->takeAt(i); + + int current_count = panels_layout->count()-1; + + //Update current panels + for(int i=0; iLoadSettings(settings, cscreen, i); } - for(int i=0; iscroll_panels->widget(), this, PINFO); tmp->LoadSettings(settings, cscreen, i); PANELS << tmp; connect(tmp, SIGNAL(PanelChanged()), this, SLOT(panelValChanged()) ); connect(tmp, SIGNAL(PanelRemoved(int)), this, SLOT(removePanel(int)) ); - ui->scroll_panels->widget()->layout()->addWidget(tmp); + panels_layout->insertWidget(panels_layout->count()-1, tmp); } - static_cast(ui->scroll_panels->widget()->layout())->addStretch(); QApplication::processEvents(); loading = false; -- cgit From f08f30ab10bd67bb97db480cbac062d1dfc57c85 Mon Sep 17 00:00:00 2001 From: Arnar Mar Sig Date: Fri, 3 Feb 2017 21:08:23 +0000 Subject: Change the app selection comboBox to list and add search feature. Allow double clicking the app to select it. --- src-qt5/core-utils/lumina-config/AppDialog.h | 34 ++++++++++++++++++++-- src-qt5/core-utils/lumina-config/AppDialog.ui | 42 ++++----------------------- 2 files changed, 36 insertions(+), 40 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/AppDialog.h b/src-qt5/core-utils/lumina-config/AppDialog.h index ea7615e2..4eb6471c 100644 --- a/src-qt5/core-utils/lumina-config/AppDialog.h +++ b/src-qt5/core-utils/lumina-config/AppDialog.h @@ -26,10 +26,15 @@ public: AppDialog(QWidget *parent = 0) : QDialog(parent), ui(new Ui::AppDialog){ ui->setupUi(this); //load the designer file appreset = false; - ui->comboBox->clear(); + ui->listApps->clear(); QList APPS = LXDG::sortDesktopNames(APPSLIST->apps(false,false)); //Don't show all/hidden for(int i=0; icomboBox->addItem( LXDG::findIcon(APPS[i]->icon,"application-x-executable"), APPS[i]->name, APPS[i]->filePath); + QListWidgetItem *app = new QListWidgetItem(LXDG::findIcon(APPS[i]->icon,"application-x-executable"), APPS[i]->name); + app->setData(Qt::UserRole, APPS[i]->filePath); + ui->listApps->addItem(app); + } + if(ui->listApps->count()){ + ui->listApps->setCurrentItem(ui->listApps->item(0)); } this->setWindowIcon( LXDG::findIcon("system-search","") ); if(parent!=0){ @@ -56,7 +61,10 @@ public: private slots: void on_buttonBox_accepted(){ - appselected = ui->comboBox->currentData().toString(); + QListWidgetItem *item = ui->listApps->currentItem(); + if(item != nullptr){ + appselected = item->data(Qt::UserRole).toString(); + } this->close(); } void on_buttonBox_rejected(){ @@ -68,6 +76,26 @@ private slots: this->close(); } } + void on_listApps_itemDoubleClicked(QListWidgetItem *item){ + appselected = item->data(Qt::UserRole).toString(); + this->close(); + } + void on_lineSearch_textChanged(const QString &term){ + QListWidgetItem *first_visible = nullptr; + for(int i = 0; i < ui->listApps->count(); i++){ + QListWidgetItem *item = ui->listApps->item(i); + bool visible = item->text().contains(term, Qt::CaseInsensitive); + item->setHidden(!visible); + if(visible && first_visible == nullptr){ + first_visible = item; + } + } + //Select the first app + ui->listApps->setCurrentItem(first_visible); + if(first_visible != nullptr){ + ui->listApps->scrollToItem(first_visible); + } + } }; #endif diff --git a/src-qt5/core-utils/lumina-config/AppDialog.ui b/src-qt5/core-utils/lumina-config/AppDialog.ui index 63323f7d..ec7de974 100644 --- a/src-qt5/core-utils/lumina-config/AppDialog.ui +++ b/src-qt5/core-utils/lumina-config/AppDialog.ui @@ -7,7 +7,7 @@ 0 0 348 - 91 + 300 @@ -15,46 +15,14 @@ - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - 0 - 0 - - - - - 32 - 32 - + + + Search for.... - - - Qt::Vertical - - - - 20 - 40 - - - + -- cgit From cd433a5466fabe22df271f0e7de088d72a244381 Mon Sep 17 00:00:00 2001 From: Arnar Mar Sig Date: Sat, 4 Feb 2017 22:01:51 +0000 Subject: Add defaultPath parameter to set what app is selected by default. --- src-qt5/core-utils/lumina-config/AppDialog.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/AppDialog.h b/src-qt5/core-utils/lumina-config/AppDialog.h index 4eb6471c..2b03fc76 100644 --- a/src-qt5/core-utils/lumina-config/AppDialog.h +++ b/src-qt5/core-utils/lumina-config/AppDialog.h @@ -23,18 +23,22 @@ private: Ui::AppDialog *ui; public: - AppDialog(QWidget *parent = 0) : QDialog(parent), ui(new Ui::AppDialog){ + AppDialog(QWidget *parent = 0, QString defaultPath = "") : QDialog(parent), ui(new Ui::AppDialog){ ui->setupUi(this); //load the designer file appreset = false; ui->listApps->clear(); + QListWidgetItem *defaultItem = nullptr; QList APPS = LXDG::sortDesktopNames(APPSLIST->apps(false,false)); //Don't show all/hidden for(int i=0; iicon,"application-x-executable"), APPS[i]->name); app->setData(Qt::UserRole, APPS[i]->filePath); ui->listApps->addItem(app); + if(APPS[i]->filePath == defaultPath){ + defaultItem = app; + } } if(ui->listApps->count()){ - ui->listApps->setCurrentItem(ui->listApps->item(0)); + ui->listApps->setCurrentItem(defaultItem != nullptr ? defaultItem : ui->listApps->item(0)); } this->setWindowIcon( LXDG::findIcon("system-search","") ); if(parent!=0){ -- cgit From 44925b54a56beca7b05c9a58a6ef5fd17e99d934 Mon Sep 17 00:00:00 2001 From: Arnar Mar Sig Date: Sat, 4 Feb 2017 22:02:53 +0000 Subject: * Remove code duplication from LoadSettings() and fix indentation (tab to space) * Select current app when AppDialog is shown, this works both for basic and advanced but only for a single type. --- .../lumina-config/pages/page_defaultapps.cpp | 191 ++++++++------------- .../lumina-config/pages/page_defaultapps.h | 6 +- 2 files changed, 72 insertions(+), 125 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp b/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp index b2a0896c..2e2d6f0d 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp @@ -42,92 +42,23 @@ void page_defaultapps::LoadSettings(int){ emit HasPendingChanges(false); emit ChangePageTitle( tr("Default Applications") ); -//First load the lumina-open specific defaults - // - Default File Manager - QString tmp = LXDG::findDefaultAppForMime("inode/directory"); - if(tmp.isEmpty()){ tmp = "lumina-fm"; } - if( !QFile::exists(tmp) && !LUtils::isValidBinary(tmp) ){ qDebug() << "Invalid Settings:" << tmp; tmp.clear(); } //invalid settings - if(tmp.endsWith(".desktop")){ - XDGDesktop file(tmp); - if(file.type == XDGDesktop::BAD){ - //Might be a binary - just print out the raw "path" - ui->tool_default_filemanager->setText(tmp.section("/",-1)); - ui->tool_default_filemanager->setIcon( LXDG::findIcon("application-x-executable","") ); - }else{ - ui->tool_default_filemanager->setText(file.name); - ui->tool_default_filemanager->setIcon(LXDG::findIcon(file.icon,"") ); - } - }else if(tmp.isEmpty()){ - ui->tool_default_filemanager->setText(tr("Click to Set")); - ui->tool_default_filemanager->setIcon( LXDG::findIcon("system-help","") ); - }else{ - //Might be a binary - just print out the raw "path" - ui->tool_default_filemanager->setText(tmp.section("/",-1)); - ui->tool_default_filemanager->setIcon( LXDG::findIcon("application-x-executable","") ); - } + //First load the lumina-open specific defaults + // - Default File Manager + defaultFileManager = LXDG::findDefaultAppForMime("inode/directory"); + if(defaultFileManager.isEmpty()){ defaultFileManager = "lumina-fm"; } + updateDefaultButton(ui->tool_default_filemanager, defaultFileManager); + // - Default Terminal - tmp =LXDG::findDefaultAppForMime("application/terminal"); //sessionsettings->value("default-terminal", "xterm").toString(); - if( !QFile::exists(tmp) && !LUtils::isValidBinary(tmp) ){ qDebug() << "Invalid Settings:" << tmp; tmp.clear(); } //invalid settings - if(tmp.endsWith(".desktop")){ - XDGDesktop file(tmp); - if(file.type == XDGDesktop::BAD){ - //Might be a binary - just print out the raw "path" - ui->tool_default_terminal->setText(tmp.section("/",-1)); - ui->tool_default_terminal->setIcon( LXDG::findIcon("application-x-executable","") ); - }else{ - ui->tool_default_terminal->setText(file.name); - ui->tool_default_terminal->setIcon(LXDG::findIcon(file.icon,"") ); - } - }else if(tmp.isEmpty()){ - ui->tool_default_terminal->setText(tr("Click to Set")); - ui->tool_default_terminal->setIcon( LXDG::findIcon("system-help","") ); - }else{ - //Might be a binary - just print out the raw "path" - ui->tool_default_terminal->setText(tmp.section("/",-1)); - ui->tool_default_terminal->setIcon( LXDG::findIcon("application-x-executable","") ); - } + defaultTerminal = LXDG::findDefaultAppForMime("application/terminal"); //sessionsettings->value("default-terminal", "xterm").toString(); + updateDefaultButton(ui->tool_default_terminal, defaultTerminal); + // - Default Web Browser - tmp = LXDG::findDefaultAppForMime("x-scheme-handler/http"); //appsettings->value("default/webbrowser", "").toString(); - if( !QFile::exists(tmp) && !LUtils::isValidBinary(tmp) ){ qDebug() << "Invalid Settings:" << tmp; tmp.clear(); } //invalid settings - if(tmp.endsWith(".desktop")){ - XDGDesktop file(tmp); - if(file.type == XDGDesktop::BAD){ - //Might be a binary - just print out the raw "path" - ui->tool_default_webbrowser->setText(tmp.section("/",-1)); - ui->tool_default_webbrowser->setIcon( LXDG::findIcon("application-x-executable","") ); - }else{ - ui->tool_default_webbrowser->setText(file.name); - ui->tool_default_webbrowser->setIcon(LXDG::findIcon(file.icon,"") ); - } - }else if(tmp.isEmpty()){ - ui->tool_default_webbrowser->setText(tr("Click to Set")); - ui->tool_default_webbrowser->setIcon( LXDG::findIcon("system-help","") ); - }else{ - //Might be a binary - just print out the raw "path" - ui->tool_default_webbrowser->setText(tmp.section("/",-1)); - ui->tool_default_webbrowser->setIcon( LXDG::findIcon("application-x-executable","") ); - } + defaultBrowser = LXDG::findDefaultAppForMime("x-scheme-handler/http"); //appsettings->value("default/webbrowser", "").toString(); + updateDefaultButton(ui->tool_default_webbrowser, defaultBrowser); + // - Default Email Client - tmp = LXDG::findDefaultAppForMime("application/email"); //appsettings->value("default/email", "").toString(); - if( !QFile::exists(tmp) && !LUtils::isValidBinary(tmp) ){ qDebug() << "Invalid Settings:" << tmp; tmp.clear(); } //invalid settings - if(tmp.endsWith(".desktop")){ - XDGDesktop file(tmp); - if(file.type == XDGDesktop::BAD){ - //Might be a binary - just print out the raw "path" - ui->tool_default_email->setText(tmp.section("/",-1)); - ui->tool_default_email->setIcon( LXDG::findIcon("application-x-executable","") ); - }else{ - ui->tool_default_email->setText(file.name); - ui->tool_default_email->setIcon(LXDG::findIcon(file.icon,"") ); - } - }else if(tmp.isEmpty()){ - ui->tool_default_email->setText(tr("Click to Set")); - ui->tool_default_email->setIcon( LXDG::findIcon("system-help","") ); - }else{ - //Might be a binary - just print out the raw "path" - ui->tool_default_email->setText(tmp.section("/",-1)); - ui->tool_default_email->setIcon( LXDG::findIcon("application-x-executable","") ); - } + defaultEmail = LXDG::findDefaultAppForMime("application/email"); //appsettings->value("default/email", "").toString(); + updateDefaultButton(ui->tool_default_email, defaultEmail); //Now load the XDG mime defaults ui->tree_defaults->clear(); @@ -146,36 +77,37 @@ void page_defaultapps::LoadSettings(int){ QString comment = defMimeList[i].section("::::",3,50); //Now check if this is a new category if(ccat!=cat){ - //New group - group = new QTreeWidgetItem(0); + //New group + group = new QTreeWidgetItem(0); group->setText(0, cat); //add translations for known/common groups later - ui->tree_defaults->addTopLevelItem(group); - ccat = cat; + ui->tree_defaults->addTopLevelItem(group); + ccat = cat; } //Now create the entry QTreeWidgetItem *it = new QTreeWidgetItem(); - it->setWhatsThis(0,mime); // full mimetype - it->setText(0, QString(tr("%1 (%2)")).arg(mime.section("/",-1), extlist) ); - it->setText(2,comment); - it->setToolTip(0, comment); it->setToolTip(1,comment); - //Now load the default (if there is one) - it->setWhatsThis(1,def); //save for later - if(def.endsWith(".desktop")){ - XDGDesktop file(def); - if(file.type == XDGDesktop::BAD){ - //Might be a binary - just print out the raw "path" - it->setText(1,def.section("/",-1)); - it->setIcon(1, LXDG::findIcon("application-x-executable","") ); - }else{ - it->setText(1, file.name); - it->setIcon(1, LXDG::findIcon(file.icon,"") ); - } - }else if(!def.isEmpty()){ - //Binary/Other default - it->setText(1, def.section("/",-1)); - it->setIcon(1, LXDG::findIcon("application-x-executable","") ); + it->setWhatsThis(0,mime); // full mimetype + it->setText(0, QString(tr("%1 (%2)")).arg(mime.section("/",-1), extlist) ); + it->setText(2,comment); + it->setToolTip(0, comment); it->setToolTip(1,comment); + //Now load the default (if there is one) + it->setWhatsThis(1,def); //save for later + it->setData(1, Qt::UserRole, def); + if(def.endsWith(".desktop")){ + XDGDesktop file(def); + if(file.type == XDGDesktop::BAD){ + //Might be a binary - just print out the raw "path" + it->setText(1, def.section("/",-1)); + it->setIcon(1, LXDG::findIcon("application-x-executable","") ); + }else{ + it->setText(1, file.name); + it->setIcon(1, LXDG::findIcon(file.icon,"") ); } - group->addChild(it); + }else if(!def.isEmpty()){ + //Binary/Other default + it->setText(1, def.section("/",-1)); + it->setIcon(1, LXDG::findIcon("application-x-executable","") ); + } + group->addChild(it); } ui->tree_defaults->sortItems(0,Qt::AscendingOrder); @@ -194,8 +126,8 @@ void page_defaultapps::updateIcons(){ //================= // PRIVATE //================= -QString page_defaultapps::getSysApp(bool allowreset){ - AppDialog dlg(this); +QString page_defaultapps::getSysApp(bool allowreset, QString defaultPath){ + AppDialog dlg(this, defaultPath); dlg.allowReset(allowreset); dlg.exec(); if(dlg.appreset && allowreset){ @@ -206,6 +138,7 @@ QString page_defaultapps::getSysApp(bool allowreset){ } void page_defaultapps::updateDefaultButton(QToolButton *button, QString app){ + if( !QFile::exists(app) && !LUtils::isValidBinary(app) ){ qDebug() << "Invalid Settings:" << app; app.clear(); } //invalid settings if(app.endsWith(".desktop")){ XDGDesktop file(app); if(file.type == XDGDesktop::BAD){ @@ -231,10 +164,11 @@ void page_defaultapps::updateDefaultButton(QToolButton *button, QString app){ //================= void page_defaultapps::changeDefaultBrowser(){ //Prompt for the new app - QString app = getSysApp(true); - if(app.isEmpty()){ return; }//nothing selected - if(app=="reset"){ app.clear(); } + QString app = getSysApp(true, defaultBrowser); + if(app.isEmpty()){ return; }//nothing selected + if(app=="reset"){ app.clear(); } //save the new app setting and adjust the button appearance + defaultBrowser = app; LXDG::setDefaultAppForMime("x-scheme-handler/http", app.section("/",-1)); LXDG::setDefaultAppForMime("x-scheme-handler/https", app.section("/",-1)); updateDefaultButton(ui->tool_default_webbrowser, app); @@ -242,30 +176,33 @@ void page_defaultapps::changeDefaultBrowser(){ void page_defaultapps::changeDefaultEmail(){ //Prompt for the new app - QString app = getSysApp(true); - if(app.isEmpty()){ return; }//nothing selected - if(app=="reset"){ app.clear(); } + QString app = getSysApp(true, defaultEmail); + if(app.isEmpty()){ return; }//nothing selected + if(app=="reset"){ app.clear(); } //save the new app setting and adjust the button appearance + defaultEmail = app; LXDG::setDefaultAppForMime("application/email",app.section("/",-1)); updateDefaultButton(ui->tool_default_email, app); } void page_defaultapps::changeDefaultFileManager(){ //Prompt for the new app - QString app = getSysApp(true); - if(app.isEmpty()){ return; }//nothing selected - if(app=="reset"){ app = "lumina-fm"; } + QString app = getSysApp(true, defaultFileManager); + if(app.isEmpty()){ return; }//nothing selected + if(app=="reset"){ app = "lumina-fm"; } //save the new app setting and adjust the button appearance + defaultFileManager = app; LXDG::setDefaultAppForMime("inode/directory", app.section("/",-1)); updateDefaultButton(ui->tool_default_filemanager, app); } void page_defaultapps::changeDefaultTerminal(){ //Prompt for the new app - QString app = getSysApp(true); - if(app.isEmpty()){ return; }//nothing selected - if(app=="reset"){ app = "xterm"; } + QString app = getSysApp(true, defaultTerminal); + if(app.isEmpty()){ return; }//nothing selected + if(app=="reset"){ app = "xterm"; } //save the new app setting and adjust the button appearance + defaultTerminal = app; LXDG::setDefaultAppForMime("application/terminal", app.section("/",-1) ); updateDefaultButton(ui->tool_default_terminal, app); } @@ -292,14 +229,19 @@ void page_defaultapps::cleardefaultitem(){ void page_defaultapps::setdefaultitem(){ QTreeWidgetItem *it = ui->tree_defaults->currentItem(); + QString path; if(it==0){ return; } //no item selected QList list; for(int i=0; ichildCount(); i++){ list << it->child(i); } - if(list.isEmpty()){ list << it; } //just do the current item + if(list.isEmpty()){ + //just do the current item + list << it; + path = it->data(1, Qt::UserRole).toString(); + } //Prompt for which application to use - QString app = getSysApp(false); //no "reset" option + QString app = getSysApp(false, path); //no "reset" option if(app.isEmpty()){ return; }//nothing selected //Now set the items for(int i=0; isetWhatsThis(1,app); //app path list[i]->setIcon(1,LXDG::findIcon(desk.icon,"")); //reset the icon list[i]->setText(1,desk.name); //reset the name + list[i]->setData(1, Qt::UserRole, app); } } diff --git a/src-qt5/core-utils/lumina-config/pages/page_defaultapps.h b/src-qt5/core-utils/lumina-config/pages/page_defaultapps.h index f80ea1ab..d8e2bcde 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_defaultapps.h +++ b/src-qt5/core-utils/lumina-config/pages/page_defaultapps.h @@ -26,8 +26,12 @@ public slots: private: Ui::page_defaultapps *ui; + QString defaultBrowser; + QString defaultEmail; + QString defaultFileManager; + QString defaultTerminal; - QString getSysApp(bool allowreset); + QString getSysApp(bool allowreset, QString defaultPath = ""); void updateDefaultButton(QToolButton *button, QString app); -- cgit From 1822d6f3c7b1c4f75868d2d74f0dbe0d988dd372 Mon Sep 17 00:00:00 2001 From: Arnar Mar Sig Date: Mon, 6 Feb 2017 17:39:38 +0000 Subject: Fix memory leak. --- src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp b/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp index 2e2d6f0d..a21653c9 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp @@ -66,7 +66,7 @@ void page_defaultapps::LoadSettings(int){ //qDebug() << "Mime List:\n" << defMimeList.join("\n"); defMimeList.sort(); //sort by group/mime //Now fill the tree by group/mime - QTreeWidgetItem *group = new QTreeWidgetItem(0); //nothing at the moment + QTreeWidgetItem *group = nullptr; QString ccat; for(int i=0; isetText(0, cat); //add translations for known/common groups later -- cgit From d26d8ec34c09bc6d0b7d738cbe43ea1c4b0ef424 Mon Sep 17 00:00:00 2001 From: Paweł Date: Fri, 10 Feb 2017 09:57:53 +0000 Subject: Translated using Weblate (lumina_CONFIG@pl (generated)) Currently translated at 95.4% (376 of 394 strings) --- .../lumina-config/i18n/lumina-config_pl.ts | 80 +++++++++++----------- 1 file changed, 40 insertions(+), 40 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts index c52873a3..eade831a 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts @@ -340,8 +340,8 @@ - Start menu alternative focusing on the user's files, directories, and favorites. - + Start menu alternative focusing on the user's files, directories, and favorites. + Alternatywny wygląd menu start, pokazujący pliki użytkownika, jego katalogi i ulubione elementy. @@ -351,7 +351,7 @@ Start menu alternative which focuses on launching applications. - + Alternatywny wygląd menu start, ułatwiający szybkie uruchamianie aplikacji. @@ -371,12 +371,12 @@ View and control any running application windows (group similar windows under a single button). - + Pogląd i kontrola każdego okna uruchomionej aplikacji (grupowanie tych samych aplikacji). View and control any running application windows (every individual window has a button) - + Pogląd i kontrola każdego okna uruchomionej aplikacji (nie grupuj aplikacji). @@ -500,12 +500,12 @@ Menu Script - + Menu Skrypt Configurable area for automatically showing desktop icons - + Konfigurowalny obszar do automatycznego pokazywania ikon pulpitu @@ -520,23 +520,23 @@ List the open, minimized, active, and urgent application windows - + Lista otwartych, zminimalizowanych i aktywnych okien aplikacji Run an external script to generate a user defined menu - + Uruchom skrypt do generowania menu Lock Session - + Zablokuj sesję Lock the current desktop session - + Zablokuj sesję pulpitu @@ -711,17 +711,17 @@ Wallpaper - + Tapeta Theme - + Motyw Autostart - + Uruchamianie automatyczne @@ -761,27 +761,27 @@ Desktop - + Pulpit Panels - + Panele Menu - + Menu Input Device Settings - + Ustawienia urządzeń wejściowych Adjust keyboard and mouse devices - + Skonfiguruj klawiaturę oraz mysz @@ -791,7 +791,7 @@ Change what icons or tools are embedded on the desktop - + Ikony lub narzędzia wyświetlane na pulpicie @@ -801,12 +801,12 @@ Change any floating panels and what they show - + Panele i ich zawartość Menu Plugins - + Wtyczki menu @@ -821,12 +821,12 @@ Change the default locale settings for this user - + Zmień ustawienia językowe tego użytkownika Localization - + Ustawienia językowe @@ -849,7 +849,7 @@ Setup a JSON Menu Script - + Ustaw skrypt menu używając JSON @@ -885,7 +885,7 @@ Select a menu script - + Wybierz skrypt menu @@ -945,7 +945,7 @@ MainWindow - + MainWindow @@ -1068,17 +1068,17 @@ Disable Compositing Manager (session restart required) - + Wyłącz menedżera kompozycji (wymagany restart sesji) Only use compositing with GPU acceleration - + Menedżer kompozycji tylko z akceleracją GPU. Compositor Settings - + Ustawienia menedżera kompozycji @@ -1199,7 +1199,7 @@ page_fluxbox_keys - + page_fluxbox_keys @@ -1249,16 +1249,16 @@ View Syntax Codes - + Pokaż składnię kodu - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key @@ -1436,12 +1436,12 @@ Profile - + Profil Import - + Import -- cgit From 2a1448a23b1cb9c893bdb0b9b4bd3d18c406c071 Mon Sep 17 00:00:00 2001 From: Ettore Atalan Date: Sat, 11 Feb 2017 18:19:23 +0000 Subject: Translated using Weblate (lumina_CONFIG@de (generated)) Currently translated at 99.4% (392 of 394 strings) --- .../lumina-config/i18n/lumina-config_de.ts | 64 +++++++++++----------- 1 file changed, 32 insertions(+), 32 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_de.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_de.ts index 7109453a..9d145f55 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_de.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_de.ts @@ -340,7 +340,7 @@ - Start menu alternative focusing on the user's files, directories, and favorites. + Start menu alternative focusing on the user's files, directories, and favorites. Startmenüalternative, die Benutzerdateien, Verzeichnisse und Lesezeichen fokussiert. @@ -531,12 +531,12 @@ Lock Session - + Sitzung sperren Lock the current desktop session - + Aktuelle Arbeitsflächen-Sitzung sperren @@ -711,17 +711,17 @@ Wallpaper - + Hintergrundbild Theme - + Thema Autostart - + Autostart @@ -761,27 +761,27 @@ Desktop - + Arbeitsfläche Panels - + Leisten Menu - + Menü Input Device Settings - + Eingabegeräteeinstellungen Adjust keyboard and mouse devices - + Tastatur und Mausgeräte anpassen @@ -826,7 +826,7 @@ Localization - + Lokalisierung @@ -1073,7 +1073,7 @@ Only use compositing with GPU acceleration - + Compositing nur mit GPU-Beschleunigung verwenden @@ -1253,12 +1253,12 @@ - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": Alt-Taste -"Mod4": Windows/Mac-Taste -"Steuerung": Strg-Taste + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": Alt-Taste +"Mod4": Windows/Mac-Taste +"Steuerung": Strg-Taste @@ -1436,12 +1436,12 @@ Profile - + Profil Import - + Import @@ -1474,7 +1474,7 @@ Desktop Defaults - + Arbeitsflächen-Standardeinstellungen @@ -1497,27 +1497,27 @@ Input Device Settings - + Eingabegeräteeinstellungen Mouse #%1 - + Maus #%1 Keyboard #%1 - + Tastatur #%1 Extension Device #%1 - + Erweiterungsgerät #%1 Master Device - + Hauptgerät @@ -1613,7 +1613,7 @@ Show application crash data - + Anwendungsabsturzdaten anzeigen @@ -1833,7 +1833,7 @@ Desktop Theme - + Arbeitsflächenthema @@ -1889,7 +1889,7 @@ Application Themes - + Anwendungsthemen @@ -1920,12 +1920,12 @@ None - + Keine Manual Setting - + Manuelle Einstellung -- cgit From e5f8ccd443226a6453eed53607ad0168a209162d Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 13 Feb 2017 10:00:44 -0500 Subject: Disable the XINPUT option/usage within lumian-config permanently. Input device settings should be managed by the OS rather than through X11. --- src-qt5/core-utils/lumina-config/lumina-config.pro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/lumina-config.pro b/src-qt5/core-utils/lumina-config/lumina-config.pro index d690bcb3..5494393e 100644 --- a/src-qt5/core-utils/lumina-config/lumina-config.pro +++ b/src-qt5/core-utils/lumina-config/lumina-config.pro @@ -16,11 +16,11 @@ include(../../core/libLumina/LuminaXDG.pri) include(../../core/libLumina/LuminaSingleApplication.pri) include(../../core/libLumina/LuminaThemes.pri) -NO_XINPUT{ +#NO_XINPUT{ DEFINES+=NO_XINPUT -}else{ - include(../../core/libLumina/LInputDevice.pri) -} +#}else{ +# include(../../core/libLumina/LInputDevice.pri) +#} SOURCES += main.cpp \ mainWindow.cpp \ -- cgit From 3cb34cd58677dab509ac9bf1a71117490a9d04fa Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 13 Feb 2017 10:14:04 -0500 Subject: Finish removing all the last remnant of the old X11 mouse config page. --- src-qt5/core-utils/lumina-config/pages/getPage.h | 12 -- .../core-utils/lumina-config/pages/page_mouse.cpp | 217 --------------------- .../core-utils/lumina-config/pages/page_mouse.h | 43 ---- .../core-utils/lumina-config/pages/page_mouse.ui | 31 --- src-qt5/core-utils/lumina-config/pages/pages.pri | 6 - 5 files changed, 309 deletions(-) delete mode 100644 src-qt5/core-utils/lumina-config/pages/page_mouse.cpp delete mode 100644 src-qt5/core-utils/lumina-config/pages/page_mouse.h delete mode 100644 src-qt5/core-utils/lumina-config/pages/page_mouse.ui (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/pages/getPage.h b/src-qt5/core-utils/lumina-config/pages/getPage.h index c820283e..59dbcd2b 100644 --- a/src-qt5/core-utils/lumina-config/pages/getPage.h +++ b/src-qt5/core-utils/lumina-config/pages/getPage.h @@ -38,11 +38,6 @@ static QList KnownPages(){ list << PageInfo("interface-menu", QObject::tr("Menu"), QObject::tr("Menu Plugins"), "format-list-unordered",QObject::tr("Change what options are shown on the desktop context menu"), "interface", QStringList(), QStringList() << "desktop" << "menu" << "plugins" << "shortcuts"); list << PageInfo("session-locale", QObject::tr("Localization"), QObject::tr("Locale Settings"), "preferences-desktop-locale",QObject::tr("Change the default locale settings for this user"), "user", QStringList(), QStringList() << "user"<<"locale"<<"language"<<"translations"); list << PageInfo("session-options", QObject::tr("General Options"), QObject::tr("User Settings"), "configure",QObject::tr("Change basic user settings such as time/date formats"), "user", QStringList(), QStringList() << "user"<<"settings"<<"time"<<"date"<<"icon"<<"reset"<<"numlock"<<"clock"); - #ifndef NO_XINPUT - if(LUtils::isValidBinary("xinput")){ - list << PageInfo("input-devices", QObject::tr("Input Device Settings"), QObject::tr("Input Device Settings"), "preferences-desktop-peripherals",QObject::tr("Adjust keyboard and mouse devices"), "user", QStringList(), QStringList() << "user"<<"speed"<<"accel"<<"mouse" << "keyboard"); - } - #endif // list << PageInfo("mouse-settings", QObject::tr("TrueOS Mouse Settings"), QObject::tr("TrueOS Mouse Settings"), "preferences-desktop-mouse",QObject::tr("Adjust mouse devices"), "user", QStringList(), QStringList() << "user"<<"speed"<<"accel"<<"mouse"); // list << PageInfo("bluetooth-settings", QObject::tr("TrueOS Bluetooth Settings"), QObject::tr("TrueOS Bluetooth Settings"), "preferences-desktop-bluetooth",QObject::tr("Setup Bluetooth devices"), "user", QStringList(), QStringList() << "user"<<"bluetooth"<<"audio"); @@ -64,10 +59,6 @@ static QList KnownPages(){ #include "page_session_options.h" #include "page_compton.h" -#ifndef NO_XINPUT -#include "page_mouse.h" -#endif - // #include "page_mouse_trueos.h" // #include "page_bluetooth_trueos.h" @@ -86,9 +77,6 @@ static PageWidget* GetNewPage(QString id, QWidget *parent){ else if(id=="session-locale"){ page = new page_session_locale(parent); } else if(id=="session-options"){ page = new page_session_options(parent); } else if(id=="compton"){ page = new page_compton(parent); } - #ifndef NO_XINPUT - else if(id=="input-devices"){ page = new page_mouse(parent); } - #endif // else if(id=="mouse-settings"){ page = new page_mouse_trueos(parent); } // else if(id=="bluetooth-settings"){ page = new page_bluetooth_trueos(parent); } diff --git a/src-qt5/core-utils/lumina-config/pages/page_mouse.cpp b/src-qt5/core-utils/lumina-config/pages/page_mouse.cpp deleted file mode 100644 index f4eebd0e..00000000 --- a/src-qt5/core-utils/lumina-config/pages/page_mouse.cpp +++ /dev/null @@ -1,217 +0,0 @@ -//=========================================== -// Lumina Desktop Source Code -// Copyright (c) 2016, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -#include "page_mouse.h" -#include "ui_page_mouse.h" -#include "getPage.h" - -#include -#include - -//========== -// PUBLIC -//========== -page_mouse::page_mouse(QWidget *parent) : PageWidget(parent), ui(new Ui::page_mouse()){ - ui->setupUi(this); - devices = LInput::listDevices(); - //DEBUG Code - /*qDebug() << "List Devices:"; - for(int i=0; iisPointer()){ - ::free( devices.takeAt(i)); - i--; - }else{ - qDebug() << "Found Pointer:" << devices[i]->devNumber(); - qDebug() << " - isExtension:" << devices[i]->isExtension(); - QList props = devices[i]->listProperties(); - qDebug() << " - Properties:"; - for(int j=0; jpropertyName(props[j])+" ("+QString::number(props[j])+")" <<" = " << devices[i]->getPropertyValue(props[j]); - } - } - }*/ - generateUI(); -} - -page_mouse::~page_mouse(){ - for(int i=0; itabWidget->count(); i++){ - ui->tabWidget->setTabIcon( i, LXDG::findIcon( "input-"+ui->tabWidget->tabWhatsThis(i).section(":",0,0), "" ) ); - } -} - -//================= -// PRIVATE -//================= -void page_mouse::generateUI(){ - ui->tabWidget->clear(); //remove all tabs (just in case) - int mouse = 1; - int keyboard = 1; - qDebug() << "Devices Found:" << devices.length(); - for(int i=0; iisExtension() || devices[i]->isPointer()){ - if(devices[i]->isPointer() && devices[i]->listProperties().count() <4){ continue; } //filter out all the trivial/static mouse devices - //Make a new tab for this device - tree = new QTreeWidget(this); - tree->setHeaderHidden(true); - tree->setColumnCount(2); - connect(tree, SIGNAL(itemActivated(QTreeWidgetItem*, int)), this, SLOT(itemClicked(QTreeWidgetItem*,int)) ); - if(devices[i]->isPointer()){ - int tab = ui->tabWidget->addTab(tree, LXDG::findIcon("input-mouse",""), QString(tr("Mouse #%1")).arg(QString::number(mouse)) ); - ui->tabWidget->setTabWhatsThis(tab, "mouse:"+QString::number(devices[i]->devNumber())); - mouse++; - }else{ - int tab = ui->tabWidget->addTab(tree, LXDG::findIcon("input-keyboard",""), QString(tr("Keyboard #%1")).arg(QString::number(keyboard)) ); - ui->tabWidget->setTabWhatsThis(tab, "keyboard:"+QString::number(devices[i]->devNumber()) ); - keyboard++; - } - }else{ - //Find the associated tab for this extension device - int tab = 0; - QString type = devices[i]->isPointer() ? "mouse" : "keyboard"; - int num = devices[i]->devNumber(); - for(int t=ui->tabWidget->count()-1; t>0; t--){ - if(ui->tabWidget->tabWhatsThis(t).startsWith(type) && ui->tabWidget->tabWhatsThis(t).section(":",-1).toInt() < num ){ tab = t; break; } - } - tree = static_cast( ui->tabWidget->widget(tab) ); - } - if(tree!=0){ populateDeviceTree(tree, devices[i]); } - } -} - -void page_mouse::populateDeviceTree(QTreeWidget *tree, LInputDevice *device){ - QTreeWidgetItem *top = new QTreeWidgetItem(tree); - if(device->isExtension()){ - top->setText( 0, QString(tr("Extension Device #%1")).arg(QString::number(tree->topLevelItemCount())) ); - }else{ top->setText(0, tr("Master Device")); } - top->setWhatsThis(0, QString(device->isPointer() ? "mouse" : "keyboard")+":"+QString::number(device->devNumber()) ); //save this for later - top->setFirstColumnSpanned(true); - top->setExpanded(true); - tree->addTopLevelItem(top); - //Now add all the child properties to this item - QList props = device->listProperties(); - for(int i=0; ipropertyName(props[i]).toLower().contains("matrix")){ continue; } //skip this one - can not change from UI and most people will never want to anyway - QTreeWidgetItem *tmp = new QTreeWidgetItem(top); - tmp->setWhatsThis(0, QString::number(props[i]) ); - tmp->setText(0, device->propertyName(props[i])); - top->addChild(tmp); - populateDeviceItemValue(tree, tmp, device->getPropertyValue(props[i]), QString::number(device->devNumber())+":"+QString::number(props[i]) ); - } - //Clean up the tree widget as needed - top->sortChildren(0, Qt::AscendingOrder); - tree->resizeColumnToContents(0); -} - -void page_mouse::populateDeviceItemValue(QTreeWidget *tree, QTreeWidgetItem *it, QVariant value, QString id){ - if(value.type()==QVariant::Int){ - //Could be a boolian - check the name for known "enable" states - if(value.toInt() < 2 && (it->text(0).toLower().contains("enable") || it->text(0).toLower().contains("emulation") || it->text(0)==("XTEST Device") ) ){ - //Just use a checkable column within the item - bool enabled = (value.toInt()==1); - it->setText(1,""); - it->setWhatsThis(1, "bool:"+id); - it->setCheckState(1, enabled ? Qt::Checked : Qt::Unchecked); - }else{ - //Use a QSpinBox - QSpinBox *box = new QSpinBox(); - box->setRange(0,100); - box->setValue( value.toInt() ); - box->setWhatsThis("int:"+id); - tree->setItemWidget(it, 1, box); - connect(box, SIGNAL(valueChanged(int)), this, SLOT(valueChanged()) ); - } - }else if(value.type()==QVariant::Double){ - //Use a QDoubleSpinBox - QDoubleSpinBox *box = new QDoubleSpinBox(); - box->setRange(0,1000); - box->setValue( value.toInt() ); - box->setWhatsThis("double:"+id); - tree->setItemWidget(it, 1, box); - connect(box, SIGNAL(valueChanged(double)), this, SLOT(valueChanged()) ); - - }else if(value.canConvert< QList >()){ - //Not Modifiable - just use the label in the item - QList list = value.toList(); - QStringList txtList; - for(int i=0; isetText(1, txtList.join(", ") ); - it->setToolTip(1, txtList.join(", ")); - }else if( value.canConvert() ){ - //Not Modifiable - just use the label in the item - it->setText(1, value.toString()); - } -} -//================= -// PRIVATE SLOTS -//================= -void page_mouse::valueChanged(){ - //Now get the currently focused widget - QWidget *foc = this->focusWidget(); - if(foc==0){ return; } - //qDebug() << "Focus Widget:" << foc->whatsThis(); - //Now pull out the value and device/property numbers - unsigned int dev = foc->whatsThis().section(":",1,1).toInt(); - int prop = foc->whatsThis().section(":",2,2).toInt(); - QVariant value; - if(foc->whatsThis().startsWith("int:")){ value.setValue( static_cast(foc)->value() ); } - else if(foc->whatsThis().startsWith("double:")){ value.setValue( static_cast(foc)->value() ); } - //Now change the property for the device - qDebug() << " - Device:" <devNumber() == dev){ - bool ok = devices[i]->setPropertyValue(prop, value); - if(ok){ foc->setStyleSheet(""); } - else{ foc->setStyleSheet("background: red"); } - //qDebug() << " - Changed property:" << (ok ? "success" : "failure"); - break; - } - } -} - -void page_mouse::itemClicked(QTreeWidgetItem *it, int col){ - if(col!=1){ return; } //only care about value changes - if(it->whatsThis(1).isEmpty()){ return; }//not a checkable item - qDebug() << "item Clicked:" << it->whatsThis(1) << it->text(0); - //Now pull out the value and device/property numbers - unsigned int dev = it->whatsThis(1).section(":",1,1).toInt(); - int prop = it->whatsThis(1).section(":",2,2).toInt(); - QVariant value( (it->checkState(1)==Qt::Checked) ? 1 : 0 ); - //Now change the property for the device - qDebug() << " - Device:" <devNumber() == dev){ - //Since this "clicked" signal can get sent out even if the value has not changed, go ahead and make sure we have a different value first - QVariant current = devices[i]->getPropertyValue(prop); - //qDebug() << " - Current Value:" << current; - if(value.toInt()!=current.toInt()){ - bool ok = devices[i]->setPropertyValue(prop, value); - //if(ok){ foc->setStyleSheet(""); } - //else{ foc->setStyleSheet("background: red"); } - qDebug() << " - Changed property:" << (ok ? "success" : "failure"); - } - break; - } - } -} diff --git a/src-qt5/core-utils/lumina-config/pages/page_mouse.h b/src-qt5/core-utils/lumina-config/pages/page_mouse.h deleted file mode 100644 index 5409a9c2..00000000 --- a/src-qt5/core-utils/lumina-config/pages/page_mouse.h +++ /dev/null @@ -1,43 +0,0 @@ -//=========================================== -// Lumina Desktop Source Code -// Copyright (c) 2016, Ken Moore -// Available under the 3-clause BSD license -// See the LICENSE file for full details -//=========================================== -#ifndef _LUMINA_CONFIG_PAGE_MOUSE_H -#define _LUMINA_CONFIG_PAGE_MOUSE_H -#include "../globals.h" -#include "PageWidget.h" - -#include -#include - -namespace Ui{ - class page_mouse; -}; - -class page_mouse : public PageWidget{ - Q_OBJECT -public: - page_mouse(QWidget *parent); - ~page_mouse(); - -public slots: - void SaveSettings(); - void LoadSettings(int screennum); - void updateIcons(); - -private: - Ui::page_mouse *ui; - QList devices; - - void generateUI(); - void populateDeviceTree(QTreeWidget *tree, LInputDevice *device); - void populateDeviceItemValue(QTreeWidget *tree, QTreeWidgetItem *it, QVariant value, QString id); - -private slots: - void valueChanged(); - void itemClicked(QTreeWidgetItem*, int); - -}; -#endif diff --git a/src-qt5/core-utils/lumina-config/pages/page_mouse.ui b/src-qt5/core-utils/lumina-config/pages/page_mouse.ui deleted file mode 100644 index a6c2e53f..00000000 --- a/src-qt5/core-utils/lumina-config/pages/page_mouse.ui +++ /dev/null @@ -1,31 +0,0 @@ - - - page_mouse - - - - 0 - 0 - 400 - 300 - - - - Form - - - - - - - 32 - 32 - - - - - - - - - diff --git a/src-qt5/core-utils/lumina-config/pages/pages.pri b/src-qt5/core-utils/lumina-config/pages/pages.pri index 0ee5d561..89b9b010 100644 --- a/src-qt5/core-utils/lumina-config/pages/pages.pri +++ b/src-qt5/core-utils/lumina-config/pages/pages.pri @@ -51,9 +51,3 @@ FORMS += $${PWD}/page_main.ui \ $${PWD}/page_compton.ui # $${PWD}/page_bluetooth_trueos.ui # $${PWD}/page_mouse_trueos.ui - -!NO_XINPUT{ - HEADERS += $${PWD}/page_mouse.h - SOURCES += $${PWD}/page_mouse.cpp - FORMS += $${PWD}/page_mouse.ui -} -- cgit From 393ee30745e3802be0334ce53d63332d5696296c Mon Sep 17 00:00:00 2001 From: Moo Date: Tue, 21 Feb 2017 19:29:26 +0000 Subject: Translated using Weblate (lumina_CONFIG@lt (generated)) Currently translated at 100.0% (394 of 394 strings) --- .../lumina-config/i18n/lumina-config_lt.ts | 38 +++++++++++----------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_lt.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_lt.ts index ddee957a..6e2c7388 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_lt.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_lt.ts @@ -776,12 +776,12 @@ Input Device Settings - + Įvesties įrenginio nustatymai Adjust keyboard and mouse devices - + Derinti klaviatūros ir pelės įrenginius @@ -826,7 +826,7 @@ Localization - + Lokalizavimas @@ -1073,7 +1073,7 @@ Only use compositing with GPU acceleration - + Naudoti komponavimą tik su vaizdo plokštės (GPU) spartinimu @@ -1436,12 +1436,12 @@ Profile - + Profilis Import - + Importuoti @@ -1474,7 +1474,7 @@ Desktop Defaults - + Darbalaukio numatytosios reikšmės @@ -1492,32 +1492,32 @@ Form - Forma + Forma Input Device Settings - + Įvesties įrenginio nustatymai Mouse #%1 - + Pelė #%1 Keyboard #%1 - + Klaviatūra #%1 Extension Device #%1 - + Plėtinio įrenginys #%1 Master Device - + Pagrindinis įrenginys @@ -1613,7 +1613,7 @@ Show application crash data - + Rodyti programų trikčių duomenis @@ -1833,7 +1833,7 @@ Desktop Theme - + Darbalaukio tema @@ -1889,12 +1889,12 @@ Application Themes - + Programų tema Qt5 Theme Engine - + Qt5 temų modulis @@ -1920,12 +1920,12 @@ None - + Joks Manual Setting - + Rankinis nustatymas -- cgit From b2309c86a73d920e8594e9641d507f6e4aef5c02 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 02:46:22 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 9.8% (39 of 394 strings) --- src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index a596d071..cfd53d56 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -14,7 +14,7 @@ Color Scheme Editor - Redigér Farveskema + Redigér farveskema @@ -340,7 +340,7 @@ Skal den overskrives? - Start menu alternative focusing on the user's files, directories, and favorites. + Start menu alternative focusing on the user's files, directories, and favorites. @@ -1252,9 +1252,9 @@ Skal den overskrives? - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key -- cgit From 4764f6a7ff8ffbca053ec2fe83cd7ebe0c54951a Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:22:40 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 17.5% (69 of 394 strings) --- .../lumina-config/i18n/lumina-config_da.ts | 70 +++++++++++----------- 1 file changed, 35 insertions(+), 35 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index cfd53d56..489f75e1 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -71,8 +71,8 @@ This color scheme already exists. Overwrite it? - Denne farve eksisterer allerede. -Skal den overskrives? + Denne farve eksisterer allerede. + Skal den overskrives? @@ -139,7 +139,7 @@ Skal den overskrives? pixel(s) thick - pixel(s) tyk + pixel(s) tyk @@ -209,18 +209,18 @@ Skal den overskrives? Left - + Venstre Right - + Højre Panel %1 - + Panel %1 @@ -234,7 +234,7 @@ Skal den overskrives? Desktop Bar - + Skrivebordsbjælke @@ -244,12 +244,12 @@ Skal den overskrives? Spacer - + Afstandsstykke Invisible spacer to separate plugins. - + Usynlig afstandsstykke til separate plugins. @@ -300,7 +300,7 @@ Skal den overskrives? System Tray - + Systembakke @@ -315,28 +315,28 @@ Skal den overskrives? Start Menu - + Startmenu Calendar - + Kalender Display a calendar on the desktop - + Vis en kalender på skrivebordet Application Launcher - + Programstarter User Menu - + Brugermenu @@ -346,7 +346,7 @@ Skal den overskrives? Application Menu - + Programmenu @@ -356,7 +356,7 @@ Skal den overskrives? Line - + Linje @@ -366,7 +366,7 @@ Skal den overskrives? Workspace Switcher - + Arbejdsområdeskifter @@ -381,7 +381,7 @@ Skal den overskrives? Show Desktop - + Vis skrivebord @@ -406,7 +406,7 @@ Skal den overskrives? Note Pad - + Notesblok @@ -417,7 +417,7 @@ Skal den overskrives? Audio Player - + Lydafspiller @@ -428,7 +428,7 @@ Skal den overskrives? System Monitor - + Systemovervågning @@ -438,17 +438,17 @@ Skal den overskrives? RSS Reader - + RSS-læser Monitor RSS Feeds (Requires internet connection) - + Overvåg RSS-feeds (kræver internetforbindelse) Terminal - + Terminal @@ -464,7 +464,7 @@ Skal den overskrives? Applications - + Programmer @@ -474,12 +474,12 @@ Skal den overskrives? Separator - + Separator Static horizontal line. - + Statisk vandret linje. @@ -515,7 +515,7 @@ Skal den overskrives? Preferences - + Præferencer @@ -531,7 +531,7 @@ Skal den overskrives? Lock Session - + Lås session @@ -541,7 +541,7 @@ Skal den overskrives? Text - + Tekst @@ -551,7 +551,7 @@ Skal den overskrives? Text (Disabled) - + Tekst (deaktiveret) @@ -561,7 +561,7 @@ Skal den overskrives? Text (Highlighted) - + Tekst (fremhævet) @@ -591,7 +591,7 @@ Skal den overskrives? Primary Color - + Primær farve @@ -611,7 +611,7 @@ Skal den overskrives? Secondary Color - + Sekundfær farve -- cgit From 9205e295ff9709a84c01c9e332a4626e12860f9c Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:22:40 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 17.5% (69 of 394 strings) --- src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index 489f75e1..89e16ae0 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -119,7 +119,7 @@ Form - Form + Formular -- cgit From 16c464cf637fc09b755d53aa4427987640ec6779 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 02:12:50 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 46.9% (185 of 394 strings) --- .../lumina-config/i18n/lumina-config_da.ts | 232 ++++++++++----------- 1 file changed, 116 insertions(+), 116 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index 89e16ae0..577e684e 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -154,7 +154,7 @@ Appearance - Udseende + Udseende @@ -169,12 +169,12 @@ ... - ... + ... Sample - Eksempel + Prøve @@ -220,13 +220,13 @@ Panel %1 - Panel %1 + Panel %1 Select Color - Vælg farve + Vælg farve @@ -279,7 +279,7 @@ System Dashboard - Instrumentbræt til skrivebordet + Systemets instrumentbræt @@ -448,7 +448,7 @@ Terminal - Terminal + Terminal @@ -736,7 +736,7 @@ Keyboard Shortcuts - Tastaturgenveje + Tastaturgenveje @@ -831,7 +831,7 @@ General Options - Generelle Instillinger + Generelle instillinger @@ -870,7 +870,7 @@ ... - ... + ... @@ -913,12 +913,12 @@ Cancel - Annullér + Annullér Save - Gem + Gem @@ -949,12 +949,12 @@ toolBar - Værktøjslinje + værktøjslinje Save - Gem + Gem @@ -964,7 +964,7 @@ Ctrl+S - Ctrl+S + Ctrl+S @@ -999,7 +999,7 @@ Form - Form + Formular @@ -1009,17 +1009,17 @@ Application - Program + Program Binary - Binær + Binær File - Fil + Fil @@ -1049,12 +1049,12 @@ Select File - Vælg fil + Vælg fil All Files (*) - Alle filer (*) + Alle filer (*) @@ -1062,7 +1062,7 @@ Form - Form + Formular @@ -1085,7 +1085,7 @@ Form - Form + Formular @@ -1095,32 +1095,32 @@ Specific File Types - Specifikke Filtyper + Specifikke filtyper Type/Group - Type/Gruppe + Type/gruppe Default Application - Standardprogram + Standardprogram Description - Beskrivelse + Beskrivelse Clear - Ryd + Ryd Set App - Sæt Prog + Sæt program @@ -1135,28 +1135,28 @@ Web Browser: - Webbrowser: + Webbrowser: E-Mail Client: - E-post Klient: + E-mailklient: File Manager: - Filhåndtering: + Filhåndtering: Virtual Terminal: - Virtuel Terminal: + Virtuel terminal: ... - ... + ... @@ -1170,12 +1170,12 @@ Click to Set - Klik for at vælge + Klik for at sætte %1 (%2) - %1 (%2) + %1 (%2) @@ -1213,37 +1213,37 @@ Action - Handling + Handling Keyboard Shortcut - Tastaturgenvej + Tastaturgenvej Modify Shortcut - Redigér genvej + Rediger genvej Clear Shortcut - Fjern genvej + Ryd genvej Apply Change - Udfør ændring + Anvend ændring Change Key Binding: - Skift taste binding: + Skift tastebinding: Note: Current key bindings need to be cleared and saved before they can be re-used. - Besked: Eksisterende taste genvej skal fjernes og gemmes før de kan blive genbrugt. + Bemærk: Eksisterende tastegenveje skal ryddes og gemmes inden de kan genbruges. @@ -1260,7 +1260,7 @@ Keyboard Shortcuts - Tastaturgenveje + Tastaturgenveje @@ -1270,22 +1270,22 @@ Audio Volume Down - Lydstyrke Ned + Lydstyrke ned Screen Brightness Up - Skærmlysstyrke Op + Skærmlysstyrke op Screen Brightness Down - Skærmlysstyrke Ned + Skærmlysstyrke ned Take Screenshot - Tag skærmbillede + Tag skærmbillede @@ -1298,7 +1298,7 @@ Form - Form + Formular @@ -1313,33 +1313,33 @@ Number of Workspaces - Antal af arbejdsområder + Antal arbejdsområder New Window Placement - Ny vinduesplacering + Ny vinduesplacering Focus Policy - Fokuspolitik + Fokuspolitik Window Theme - Vinduestema + Vinduestema Window Theme Preview - Vinduestema forhåndsvisning + Forhåndsvisning af vinduestema No Preview Available - Ingen forhåndsvisning tilgængelig + Ingen forhåndsvisning tilgængelig @@ -1349,37 +1349,37 @@ Click To Focus - Klik for fokus + Klik for at fokusere Active Mouse Focus - Aktiv mus fokus + Aktiv musefokus Strict Mouse Focus - Streng mus fokus + Streng musefokus Align in a Row - Tilpas i en række + Sæt på række Align in a Column - Tilpas i en kolonne + Sæt på kolonne Cascade - Kaskade + Kaskade Underneath Mouse - Under mus + Under mus @@ -1387,7 +1387,7 @@ Form - Form + Formular @@ -1410,7 +1410,7 @@ Form - Form + Formular @@ -1428,7 +1428,7 @@ Form - Form + Formular @@ -1451,7 +1451,7 @@ Form - Form + Formular @@ -1461,12 +1461,12 @@ Interface Configuration - Indstilling af grænseflade + Konfiguration af brugerflade Appearance - Udseende + Udseende @@ -1489,7 +1489,7 @@ Form - Form + Formular @@ -1522,7 +1522,7 @@ Form - Form + Formular @@ -1532,32 +1532,32 @@ Language - Sprog + Sprog Messages - Beskeder + Meddelelser Time - Tid + Tid Numeric - Numerisk + Numerisk Monetary - Monetære + Monetære Collate - Saml + Saml @@ -1580,22 +1580,22 @@ Form - Form + Formular Enable numlock on startup - Aktivér numlock under opstart + Aktivér numlock under opstart Play chimes on startup - Afspil lyde under opstart + Afspil lyde under opstart Play chimes on exit - Afspil lyde under afslutning + Afspil lyde under afslutning @@ -1615,29 +1615,29 @@ Change User Icon - Skift Bruger Ikon + Skift brugerikon Time Format: - Tidsformat: + Tidsformat: View format codes - Vis format koder + Vis formatkoder Sample: - Prøve: + Prøve: Date Format: - Datoformat: + Datoformat: @@ -1662,7 +1662,7 @@ Time (Date as tooltip) - Tid (Dato som værktøjstip) + Tid (dato som værktøjstip) @@ -1687,27 +1687,27 @@ Select an image - Vælg et billede + Vælg et billede Images - Billeder + Billeder Reset User Image - Nulstil Bruger billede + Nulstil brugerbillede Would you like to reset the user image to the system default? - Vil du gerne nulstille bruger billedet til system standard? + Vil du nulstille brugerbilledet til systemets standard? Valid Time Codes: - Gyldig tids koder: + Gyldige tidskoder: @@ -1825,7 +1825,7 @@ Form - Form + Formular @@ -1835,38 +1835,38 @@ Font: - Skrifttype: + Skrifttype: Font Size: - Skriftstørrelse: + Skriftstørrelse: point - point + punkt Theme Template: - Temaskabelon: + Temaskabelon: Create/Edit a theme template (Advanced) - Opret/Rediger en tema skabelon (Avanceret) + Opret/rediger en temaskabelon (avanceret) Edit - Redigér + Rediger Color Scheme: - Farveskema: + Farveskema: @@ -1930,32 +1930,32 @@ Form - Form + Formular Single Background - Enlig Baggrund + Enkel baggrund Rotate Background - Rotér Baggrund + Roter baggrund Minutes - Minutter + Minutter Every - Hver + Hver Layout: - Layout: + Layout: @@ -1971,7 +1971,7 @@ Solid Color: %1 - Ensfarvet farve: %1 + Ensfarvet farve: %1 @@ -1982,17 +1982,17 @@ Select Color - Vælg farve + Vælg farve File(s) - Fil(er) + Fil(er) Directory (Single) - Mappe (Enkelt) + Mappe (enkel) @@ -2007,7 +2007,7 @@ Automatic - Automatisk + Automatisk @@ -2022,32 +2022,32 @@ Tile - Flise + Fliselæg Center - Centrér + Centrér Top Left - Øverst til venstre + Øverst til venstre Top Right - Øverst til højre + Øverst til højre Bottom Left - Nederst til venstre + Nederst til venstre Bottom Right - Nederst til højre + Nederst til højre -- cgit From 754bcac57d3eed655eec4d66c4bb24635b8bd725 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 19:13:45 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 50.0% (197 of 394 strings) --- .../lumina-config/i18n/lumina-config_da.ts | 24 +++++++++++----------- 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index 577e684e..e1eef6bd 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -239,7 +239,7 @@ This provides shortcuts to everything in the desktop folder - allowing easy access to all your favorite files/applications. - + Dette giver genveje til alt i skrivebordsmappen - hvilket giver nem adgang til alle dine favoritfiler/-programmer. @@ -254,7 +254,7 @@ Controls for switching between the various virtual desktops. - + Kontroller til at skifte mellem de forskellige virtuelle skriveborde. @@ -284,18 +284,18 @@ View or change system settings (audio volume, screen brightness, battery life, virtual desktops). - + Vis eller ændre systemindstillinger (lydstyrke, skærmlysstyrke, batteriliv, virtuelle skriveborde). Task Manager - + Opgavehåndtering Task Manager (No Groups) - + Opgavehåndtering (ingen grupper) @@ -305,12 +305,12 @@ Display area for dockable system applications - + Vis område til systemprogrammer som kan dokkes Hide all open windows and show the desktop - + Skjul alle åbne vinduer og vis skrivebordet @@ -391,17 +391,17 @@ Pin an application shortcut directly to the panel - + Fastgør en programgenvej direkte til panalet Desktop button for launching an application - + Skrivebordsknap til at starte et program Desktop Icons View - + Skrivebordsikonvisning @@ -411,7 +411,7 @@ Keep simple text notes on your desktop - + Hold simple tekstnoter på dit skrivebord @@ -423,7 +423,7 @@ Play through lists of audio files - + Afspil gennem listen af lydfiler -- cgit From d439736cd3e6a429108c4933d1d29891d3f51bf3 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Fri, 24 Feb 2017 02:54:31 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 97.9% (386 of 394 strings) --- .../lumina-config/i18n/lumina-config_da.ts | 415 +++++++++++---------- 1 file changed, 209 insertions(+), 206 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index e1eef6bd..acdaf50d 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -96,12 +96,12 @@ Select Plugin - Vælg Udvidelsesmodul + Vælg plugin Select a Plugin: - Vælg et Udvidelsesmodul: + Vælg et plugin: @@ -179,7 +179,7 @@ Plugins - Udvidelsesmoduler + Plugins @@ -269,12 +269,12 @@ Time/Date - Tid/Dato + Klokkeslæt/dato View the current time and date. - Vis det aktuelle tidspunkt og dato. + Vis det aktuelle klokkeslæt og dato. @@ -341,7 +341,7 @@ Start menu alternative focusing on the user's files, directories, and favorites. - + Startmenu alternativ som fokusere på brugerens filer, mapper og favoritter. @@ -351,7 +351,7 @@ Start menu alternative which focuses on launching applications. - + Startmenu alternativ som fokusere på startende programmer. @@ -361,7 +361,7 @@ Simple line to provide visual separation between items. - + Simpel linje til at give visuel adskillelse mellem poster. @@ -371,12 +371,12 @@ View and control any running application windows (group similar windows under a single button). - + Vis og kontrollér kørende programvinder (gruppér lignende vinduer under en enkelt knap). View and control any running application windows (every individual window has a button) - + Vis og kontrollér kørende programvinder (hvert vindue har en knap) @@ -386,7 +386,7 @@ Unified system access and application launch menu. - + Ensartet systemadgang og programstart-menu. @@ -433,7 +433,7 @@ Keep track of system statistics such as CPU/Memory usage and CPU temperatures. - + Hold styr på systemstatisk såsom CPU/hukommelsesforbrug og CPU-temperaturer. @@ -453,12 +453,12 @@ Start the default system terminal. - + Start standardsystemterminalen. Browse the system with the default file manager. - + Gennemse systemet med standardfilhåndteringen. @@ -469,7 +469,7 @@ Show the system applications menu. - + Vis systemets programmenu. @@ -484,33 +484,33 @@ Show the desktop settings menu. - + Vis skrivebordsindstillinger-menuen. Custom App - + Custom program Start a custom application - + Start et custom program Menu Script - + Menu-script Configurable area for automatically showing desktop icons - + Konfigurerbart område til automatisk visning af skrivebordsikoner Browse Files - + Gennemgå filer @@ -520,13 +520,13 @@ List the open, minimized, active, and urgent application windows - + Vis de åbne, minimerede, aktive og vigtige programvinduer Run an external script to generate a user defined menu - + Kør et eksternt script til generering af en brugerdefineret menu @@ -536,7 +536,7 @@ Lock the current desktop session - + Lås den aktuelle skrivebordssession @@ -546,7 +546,7 @@ Color to use for all visible text. - + Farve som skal bruges til al synlig tekst. @@ -556,7 +556,7 @@ Text color for disabled or inactive items. - + Tekstfarve til deaktiverede eller inaktive poster. @@ -566,27 +566,27 @@ Text color when selection is highlighted. - + Tekstfarve til når markering er fremhævet. Base Window Color - + Basis vinduesfarve Main background color for the window/dialog. - + Hovedbaggrundsfarve til vinduet/dialogen. Base Window Color (Alternate) - + Basis vinduesfarve (alternativ) Main background color for widgets that list or display collections of items. - + Hovedbaggrundsfarve til widgets som lister eller viser samlinger af poster. @@ -596,17 +596,17 @@ Dominant color for the theme. - + Dominerende farve til temaet. Primary Color (Disabled) - + Primær farve (deaktiveret) Dominant color for the theme (more subdued). - + Dominerende farve til temaet (mere afdæmpet). @@ -616,122 +616,122 @@ Alternate color for the theme. - + Alternativ farve til temaet. Secondary Color (Disabled) - + Sekundær farve (deaktiveret) Alternate color for the theme (more subdued). - + Alternativ farve til temaet (mere afdæmpet). Accent Color - + Accentfarve Color used for borders or other accents. - + Farve som bruges til kanter og andre accents. Accent Color (Disabled) - + Accentfarve (deaktiveret) Color used for borders or other accents (more subdued). - + Farve som bruges til kanter og andre accents (mere afdæmpet). Highlight Color - + Fremhævningsfarve Color used for highlighting an item. - + Farve som skal bruges til fremhævning af en post. Highlight Color (Disabled) - + Fremhævningsfarve (deaktiveret) Color used for highlighting an item (more subdued). - + Farve som skal bruges til fremhævning af post (mere afdæmpet). Wallpaper Settings - + Tapetindstillinger Change background image(s) - + Skift baggrundsbillede(r) Theme Settings - + Temaindstillinger Change interface fonts and colors - + Skift brugerfladens skifttyper og farver Window Effects - + Vindueseffekter Adjust transparency levels and window effects - + Juster transparensniveauer og vindueseffekter Startup Settings - + Opstartsindstillinger Automatically start applications or services - + Automatisk start af programmer eller tjenester Wallpaper - + Tapet Theme - + Tema Autostart - + Autostart Mimetype Settings - + MIME-type-indstillinger Change default applications - + Skift standardprogrammer @@ -741,92 +741,92 @@ Change keyboard shortcuts - + Skift tastaturgenveje Window Manager - + Vindueshåndtering Window Settings - + Vinduesindstillinger Change window settings and appearances - + Skift vinduesindstillinger og udseende Desktop - + Skrivebord Panels - + Paneler Menu - + Menu Input Device Settings - + Inputenhedsindstillinger Adjust keyboard and mouse devices - + Juster tastatur- og museenheder Desktop Plugins - + Skrivebord-plugins Change what icons or tools are embedded on the desktop - + Skift hvilke ikoner og værktøjer som er indlejret på skrivebordet Panels and Plugins - + Paneler og plugins Change any floating panels and what they show - + Skift flydende paneler og hvad de viser Menu Plugins - + Menu-plugins Change what options are shown on the desktop context menu - + Skift hvilke valgmuligheder som vises i skrivebordets genvejsmenu Locale Settings - + Lokale indstillinger Change the default locale settings for this user - + Skift standard lokale indstillinger for denne bruger Localization - + Lokalisering @@ -836,12 +836,12 @@ User Settings - + Brugerindstillinger Change basic user settings such as time/date formats - + Skift grundlæggende brugerindstillinger såsom klokkeslæt-/datoformater @@ -849,22 +849,22 @@ Setup a JSON Menu Script - + Opsæt et JSON-menu-script Visible Name: - + Synligt navn: Executable: - + Eksekverbar: Icon: - + Ikon: @@ -875,22 +875,22 @@ Cancel - + Annuller Apply - + Anvend Select a menu script - + Vælg et menu-script Select an icon file - + Vælg en ikonfil @@ -898,17 +898,17 @@ Theme Editor - + Temaredigering Theme Name: - + Temanavn: color - + farve @@ -923,20 +923,21 @@ Apply - + Anvend Theme Exists - + Tema findes This theme already exists. Overwrite it? - + Dette tema findes allerede. + Overskriv det? @@ -944,7 +945,7 @@ MainWindow - + Hovedvindue @@ -959,7 +960,7 @@ Save current changes - + Gem aktuelle ændringer @@ -969,29 +970,29 @@ Back to settings - + Tilbage til indstillinger Back to overall settings - + Tilbage til overordnet indstillinger Select monitor/desktop to configure - + Vælg skærm/skrivebord som skal konfigureres Unsaved Changes - + Ugemte ændringer This page currently has unsaved changes, do you wish to save them now? - + Denne side har ugemte ændringer. Vil du gemme dem nu? @@ -1004,7 +1005,7 @@ Add New Startup Service - + Tilføj ny opstartstjeneste @@ -1024,27 +1025,27 @@ Startup Services - + Opstartstjenester Select Binary - + Vælg binær Application Binaries (*) - + Programbinærer (*) Invalid Binary - + Ugyldig binær The selected file is not executable! - + Den valgte fil er ikke eksekverbar! @@ -1067,17 +1068,17 @@ Disable Compositing Manager (session restart required) - + Deaktivér kompositingshåndtering (kræver genstart af session) Only use compositing with GPU acceleration - + Brug kun komposition med GPU-acceleration Compositor Settings - + Kompositorindstillinger @@ -1090,7 +1091,7 @@ Advanced - + Avanceret @@ -1125,12 +1126,12 @@ Set Binary - + Sæt binær Basic Settings - + Basisindstillinger @@ -1161,7 +1162,7 @@ Default Applications - + Standardprogrammer @@ -1180,17 +1181,17 @@ Select Binary - + Vælg binær Invalid Binary - + Ugyldig binær The selected binary is not executable! - + Den valgte binær er ikke eksekverbar! @@ -1198,17 +1199,17 @@ page_fluxbox_keys - + page_fluxbox_keys Basic Editor - + Basisredigering Advanced Editor - + Avanceret redigering @@ -1248,14 +1249,16 @@ View Syntax Codes - + Vis syntakskoder "Mod1": Alt key "Mod4": Windows/Mac key "Control": Ctrl key - + "Mod1": Alt-tast +"Mod4": Windows-/Mac-tast +"Control": Ctrl-tast @@ -1265,7 +1268,7 @@ Audio Volume Up - + Lydstyrke op @@ -1290,7 +1293,7 @@ Lock Screen - + Lås session @@ -1303,12 +1306,12 @@ Simple Editor - + Enkel redigering Advanced Editor - + Avanceret redigering @@ -1344,7 +1347,7 @@ Window Manager Settings - + Vindueshåndteringsindstillinger @@ -1392,17 +1395,17 @@ Embedded Utilities - + Indlejrede redskaber Display Desktop Folder Contents - + Vis skrivebordsmappens indhold Desktop Settings - + Skrivebordsindstillinger @@ -1415,12 +1418,12 @@ Context Menu Plugins - + Genvejsmenu-plugins Desktop Settings - + Skrivebordsindstillinger @@ -1433,17 +1436,17 @@ Profile - + Profil Import - + Importér Desktop Settings - + Skrivebordsindstillinger @@ -1456,7 +1459,7 @@ Search for.... - + Søg efter.... @@ -1471,17 +1474,17 @@ Desktop Defaults - + Skrivebordsstandarder User Settings - + Brugerindstillinger Desktop Settings - + Skrivebordsindstillinger @@ -1494,27 +1497,27 @@ Input Device Settings - + Inputenhedsindstillinger Mouse #%1 - + Mus nummer %1 Keyboard #%1 - + Tastatur nummer %1 Extension Device #%1 - + Udvidelsesenhed nummer %1 Master Device - + Master-enhed @@ -1527,7 +1530,7 @@ System localization settings (restart required) - + System lokaliseringsindstillinger (kræver genstart) @@ -1542,7 +1545,7 @@ Time - Tid + Klokkeslæt @@ -1562,17 +1565,17 @@ CType - + CType Desktop Settings - + Skrivebordsindstillinger System Default - + Systemets standard @@ -1600,17 +1603,17 @@ Automatically create/remove desktop symlinks for applications that are installed/removed - + Opret/fjern automatisk skrivebords-symlinks til installerede/fjernede programmer Manage desktop app links - + Håndtér skrivebordsprogramlinks Show application crash data - + Vis programnebrudsdata @@ -1620,7 +1623,7 @@ Time Format: - Tidsformat: + Klokkeslætformat: @@ -1642,47 +1645,47 @@ Display Format - + Vis format Reset Desktop Settings - + Nulstil skrivebordsindstillinger Return to system defaults - + Vend tilbage til systemets standarder Return to Lumina defaults - + Vend tilbage til Luminas standarder Time (Date as tooltip) - Tid (dato som værktøjstip) + Klokkeslæt (dato som værktøjstip) Date (Time as tooltip) - + Dato (klokkeslæt som værktøjstip) Time first then Date - + Først klokkeslæt, så dato Date first then Time - + Først dato, så klokkeslæt Desktop Settings - + Skrivebordsindstillinger @@ -1707,117 +1710,117 @@ Valid Time Codes: - Gyldige tidskoder: + Gyldige klokkeslætkoder: %1: Hour without leading zero (1) - + %1: Klokkeslæt uden foranstillet nul (1) %1: Hour with leading zero (01) - + %1: Klokkeslæt med foranstillet nul (01) %1: Minutes without leading zero (2) - + %1: Minutter uden foranstillet nul (2) %1: Minutes with leading zero (02) - + %1: Minutter med foranstillet nul (02) %1: Seconds without leading zero (3) - + %1: Sekunder uden foranstillet nul (3) %1: Seconds with leading zero (03) - + %1: Sekunder med foranstillet nul (03) %1: AM/PM (12-hour) clock (upper or lower case) - + %1: AM/PM (12-timer) ur (store og små bogstaver) %1: Timezone - + %1: Tidszone Time Codes - + Klokkeslætkoder Valid Date Codes: - + Gyldig datokodeks: %1: Numeric day without a leading zero (1) - + %1: Numerisk dag uden foranstillede nul (1) %1: Numeric day with leading zero (01) - + %1: Numerisk dag med foranstillede nul (01) %1: Day as abbreviation (localized) - + %1: Dag som forkortelse (lokaliseret) %1: Day as full name (localized) - + %1: Dag som fuldt navn (lokaliseret) %1: Numeric month without leading zero (2) - + %1: Numerisk måned uden foranstillet nul (2) %1: Numeric month with leading zero (02) - + %1: Numerisk måned med foranstillet nul (02) %1: Month as abbreviation (localized) - + %1: Måned som forkortelse (lokaliseret) %1: Month as full name (localized) - + %1: Måned som fuldt navn (lokaliseret) %1: Year as 2-digit number (15) - + %1: År som 2-tegnstal (17) %1: Year as 4-digit number (2015) - + %1: År som 4-tegnstal (2017) Text may be contained within single-quotes to ignore replacements - + Tekst må være inden i enkelte anførselstegn for at ignorer erstatninger Date Codes - + Datokoder @@ -1830,7 +1833,7 @@ Desktop Theme - + Skrivebordstema @@ -1871,32 +1874,32 @@ Create/Edit a color scheme - + Opret/rediger et farveskema Icon Pack: - + Ikonpakke: Mouse Cursors: - + Musemarkører: Application Themes - + Programtemaer Qt5 Theme Engine - + Qt5-temamotor Theme Settings - + Temaindstillinger @@ -1904,7 +1907,7 @@ Local - + Lokal @@ -1912,17 +1915,17 @@ System - + System None - + Ingen Manual Setting - + Manuel indstilling @@ -1960,12 +1963,12 @@ Wallpaper Settings - + Tapetindstillinger System Default - + Systemstandard @@ -1976,7 +1979,7 @@ Screen Resolution: - + Skræmopløsning: @@ -1997,12 +2000,12 @@ Directory (Recursive) - + Mappe (rekursiv) Solid Color - + Solid farve @@ -2012,12 +2015,12 @@ Fullscreen - + Fuldskærm Fit screen - + Tilpas skærm @@ -2052,28 +2055,28 @@ No Background - + Ingen baggrund (use system default) - + (brug systemstandard) File does not exist - + Fil findes ikke Find Background Image(s) - + Find baggrundsbillede(r) Find Background Image Directory - + Find baggrudsbilledmappe -- cgit From e8512712622757e9d773fe2c9a7fa7ac9ef5b32d Mon Sep 17 00:00:00 2001 From: Paweł Date: Fri, 24 Feb 2017 13:37:27 +0000 Subject: Translated using Weblate (lumina_CONFIG@pl (generated)) Currently translated at 98.9% (390 of 394 strings) --- .../lumina-config/i18n/lumina-config_pl.ts | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts index eade831a..d6f71596 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts @@ -1474,7 +1474,7 @@ Desktop Defaults - + Domyślne ustawienia pulpitu @@ -1492,32 +1492,32 @@ Form - Formularz + Formularz Input Device Settings - + Ustawienia urządzeń wejścia Mouse #%1 - + Mysz #%1 Keyboard #%1 - + Klawiatura #%1 Extension Device #%1 - + Urządzenie rozszerzeń #%1 Master Device - + Urządzenie główne @@ -1608,12 +1608,12 @@ Manage desktop app links - + Zarządzaj skrótami aplikacji pulpitu Show application crash data - + Pokazuj informacje o błędach aplikacji @@ -1833,7 +1833,7 @@ Desktop Theme - + Motyw pulpitu @@ -1889,12 +1889,12 @@ Application Themes - + Motyw aplikacji Qt5 Theme Engine - + Silnik motywu Qt5 @@ -1920,12 +1920,12 @@ None - + Żaden Manual Setting - + Ustawienia manualne -- cgit From a03f8614c398573d0fdf8d26c6074824ca0e459d Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 22:01:27 +0000 Subject: Translated using Weblate (lumina_SEARCH@da (generated)) Currently translated at 100.0% (28 of 28 strings) --- src-qt5/core-utils/lumina-search/i18n/lumina-search_da.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-search/i18n/lumina-search_da.ts b/src-qt5/core-utils/lumina-search/i18n/lumina-search_da.ts index cdf95b44..2c750640 100644 --- a/src-qt5/core-utils/lumina-search/i18n/lumina-search_da.ts +++ b/src-qt5/core-utils/lumina-search/i18n/lumina-search_da.ts @@ -74,12 +74,12 @@ Close - Afslut + Luk Launch Item - Startenhed + Start post @@ -149,7 +149,7 @@ Search Finished - Søgning afsluttet + Søgning gennemført -- cgit From 1e5ab5d6e592bc40adc96843b9692db621c19b03 Mon Sep 17 00:00:00 2001 From: Paweł Date: Fri, 24 Feb 2017 13:57:42 +0000 Subject: Translated using Weblate (lumina_CONFIG@pl (generated)) Currently translated at 98.9% (390 of 394 strings) --- src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts index d6f71596..25fb461c 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pl.ts @@ -1256,9 +1256,9 @@ "Mod1": Alt key "Mod4": Windows/Mac key "Control": Ctrl key - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key + "Mod1": klawisz Alt +"Mod4": klawisz Windows/Mac +"Control": klawisz Ctrl -- cgit From 5119e8061761a7d9a97fe1e0330a7b0df0343f29 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Fri, 24 Feb 2017 16:07:34 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 100.0% (394 of 394 strings) --- .../core-utils/lumina-config/i18n/lumina-config_da.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index acdaf50d..012c9c9d 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -164,7 +164,7 @@ Use Custom Color - Anvend brugervalgt farve + Brug brugerdefineret farve @@ -489,12 +489,12 @@ Custom App - Custom program + Brugerdefineret program Start a custom application - Start et custom program + Start et brugerdefineret program @@ -631,17 +631,17 @@ Accent Color - Accentfarve + Accentfarve Color used for borders or other accents. - Farve som bruges til kanter og andre accents. + Farve som bruges til kanter og andre accenter. Accent Color (Disabled) - Accentfarve (deaktiveret) + Accentfarve (deaktiveret) @@ -1199,7 +1199,7 @@ page_fluxbox_keys - page_fluxbox_keys + page_fluxbox_keys @@ -1565,7 +1565,7 @@ CType - CType + CType @@ -1907,7 +1907,7 @@ Local - Lokal + Lokal -- cgit From 7c0b2925535bde3abf2ec2d85de8602c97626843 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Fri, 24 Feb 2017 17:03:15 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 100.0% (394 of 394 strings) --- .../lumina-config/i18n/lumina-config_da.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index 012c9c9d..583968a7 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -139,7 +139,7 @@ pixel(s) thick - pixel(s) tyk + pixel(s) bred @@ -184,17 +184,17 @@ Top/Left - Øverst/Venstre + Øverst/venstre Center - Midt + I midten Bottom/Right - Bund/Højre + Nederst/højre @@ -204,7 +204,7 @@ Bottom - Bund + Nederst @@ -249,7 +249,7 @@ Invisible spacer to separate plugins. - Usynlig afstandsstykke til separate plugins. + Usynlig afstandsstykke til at afskille plugins. @@ -1464,7 +1464,7 @@ Interface Configuration - Konfiguration af brugerflade + Brugerfladekonfiguration @@ -1575,7 +1575,7 @@ System Default - Systemets standard + Systemstandard @@ -1655,7 +1655,7 @@ Return to system defaults - Vend tilbage til systemets standarder + Vend tilbage til systemstandarder @@ -1705,7 +1705,7 @@ Would you like to reset the user image to the system default? - Vil du nulstille brugerbilledet til systemets standard? + Vil du nulstille brugerbilledet til systemstandarden? -- cgit From e9495b04aaccd5c22d50078f28be07f1bda28b0b Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 18:12:06 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 100.0% (394 of 394 strings) --- src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5/core-utils') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts index 583968a7..add87210 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_da.ts @@ -50,12 +50,12 @@ Sample - Eksempel + Prøve Cancel - Annullér + Annuller @@ -106,7 +106,7 @@ Cancel - Afbryd + Annuller @@ -510,7 +510,7 @@ Browse Files - Gennemgå filer + Gennemse filer @@ -913,7 +913,7 @@ Cancel - Annullér + Annuller @@ -950,7 +950,7 @@ toolBar - værktøjslinje + værktøjsbjælke @@ -2030,7 +2030,7 @@ Center - Centrér + I midten -- cgit