From a2fca457f8258e2ab46f77efeb6da150d9f1ba4f Mon Sep 17 00:00:00 2001 From: Giuseppe Pignataro Date: Wed, 15 Feb 2017 15:32:23 +0000 Subject: Translated using Weblate (lumina_DESKTOP@it (generated)) Currently translated at 81.9% (254 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts index 26c14237..8dac2274 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts @@ -221,7 +221,7 @@ You can't know too much, but you can say too much. - + Non puoi sapere troppo, ma puoi dire troppo. -- cgit From 0ada936ad0e52e8d5ba8eda3cedc7bbfd65402c2 Mon Sep 17 00:00:00 2001 From: Giuseppe Pignataro Date: Wed, 15 Feb 2017 15:34:13 +0000 Subject: Translated using Weblate (lumina_OPEN@it (generated)) Currently translated at 97.4% (38 of 39 strings) --- src-qt5/core/lumina-open/i18n/lumina-open_it.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_it.ts b/src-qt5/core/lumina-open/i18n/lumina-open_it.ts index 341374d2..415476ca 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_it.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_it.ts @@ -26,7 +26,7 @@ Binary Location - Posizione codice binario + Posizione codice binario -- cgit From 71f1b444ca19e0e2730d33c9159f8bccedd05a79 Mon Sep 17 00:00:00 2001 From: sasongko Date: Sat, 18 Feb 2017 13:50:03 +0700 Subject: add Slackware --- src-qt5/OS-detect.pri | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/OS-detect.pri b/src-qt5/OS-detect.pri index a7f917fa..05604b71 100644 --- a/src-qt5/OS-detect.pri +++ b/src-qt5/OS-detect.pri @@ -67,8 +67,9 @@ isEmpty(OS){ LINUX_DISTRO = $$system(lsb_release -si) } else:exists(/etc/gentoo-release){ LINUX_DISTRO = Gentoo + } else:exists(/etc/slackware-version){ + LINUX_DISTRO = Slackware } - } #Apply any special rules for particular distros equals(LINUX_DISTRO,"Fedora"){ isEmpty(L_ETCDIR){ L_ETCDIR=/etc } -- cgit From 4b90b8350794705d7626c35a325de5f6a33b7889 Mon Sep 17 00:00:00 2001 From: Sasongko Bawono Date: Sat, 18 Feb 2017 13:55:22 +0700 Subject: add template for Slackware --- src-qt5/core/libLumina/LuminaOS-Slackware.cpp | 252 ++++++++++++++++++++++++++ 1 file changed, 252 insertions(+) create mode 100644 src-qt5/core/libLumina/LuminaOS-Slackware.cpp (limited to 'src-qt5') diff --git a/src-qt5/core/libLumina/LuminaOS-Slackware.cpp b/src-qt5/core/libLumina/LuminaOS-Slackware.cpp new file mode 100644 index 00000000..3c18ba36 --- /dev/null +++ b/src-qt5/core/libLumina/LuminaOS-Slackware.cpp @@ -0,0 +1,252 @@ +//=========================================== +// Lumina-DE source code +// Copyright (c) 2014, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#ifdef __linux__ +#include +#include "LuminaOS.h" +#include +#include // Needed for BUFSIZ + +//can't read xbrightness settings - assume invalid until set +static int screenbrightness = -1; + +QString LOS::OSName(){ return "Slackware Linux"; } + +//OS-specific prefix(s) +// NOTE: PREFIX, L_ETCDIR, L_SHAREDIR are defined in the OS-detect.pri project file and passed in +QString LOS::LuminaShare(){ return (L_SHAREDIR+"/lumina-desktop/"); } //Install dir for Lumina share files +QString LOS::AppPrefix(){ return "/usr/"; } //Prefix for applications +QString LOS::SysPrefix(){ return "/usr/"; } //Prefix for system + +//OS-specific application shortcuts (*.desktop files) +QString LOS::ControlPanelShortcut(){ return ""; } //system control panel +QString LOS::AppStoreShortcut(){ return ""; } //graphical app/pkg manager +//OS-specific RSS feeds (Format: QStringList[ :::: ]; ) +QStringList LOS::RSSFeeds(){ return QStringList(); } + +// ==== ExternalDevicePaths() ==== +QStringList LOS::ExternalDevicePaths(){ + //Returns: QStringList[::::::::] + //Note: = [USB, HDRIVE, DVD, SDCARD, UNKNOWN] + QStringList devs = LUtils::getCmdOutput("mount"); + //Now check the output + for(int i=0; i100){ percent=100; } + // float pf = percent/100.0; //convert to a decimel + //Run the command + QString cmd = "xbacklight -set %1"; + // cmd = cmd.arg( QString::number( int(65535*pf) ) ); + cmd = cmd.arg( QString::number( percent ) ); + int ret = LUtils::runCmd(cmd); + //Save the result for later + if(ret!=0){ screenbrightness = -1; } + else{ screenbrightness = percent; } + LUtils::writeFile(QString(getenv("XDG_CONFIG_HOME"))+"/lumina-desktop/.currentxbrightness", QStringList() << QString::number(screenbrightness), true); + +} + +//Read the current volume +int LOS::audioVolume(){ //Returns: audio volume as a percentage (0-100, with -1 for errors) +QString info = LUtils::getCmdOutput("amixer get Master").join("").simplified();; + int out = -1; + int start_position, end_position; + QString current_volume; + if(!info.isEmpty()){ + start_position = info.indexOf("["); + start_position++; + end_position = info.indexOf("%"); + current_volume = info.mid(start_position, end_position - start_position); + out = current_volume.toInt(); + } + return out; + + +} + +//Set the current volume +void LOS::setAudioVolume(int percent){ + if(percent<0){percent=0;} + else if(percent>100){percent=100;} + QString info = "amixer set Master " + QString::number(percent) + "%"; + //Run Command + LUtils::runCmd(info); +} + +//Change the current volume a set amount (+ or -) +void LOS::changeAudioVolume(int percentdiff){ + int old_volume = audioVolume(); + int new_volume = old_volume + percentdiff; + if (new_volume < 0) + new_volume = 0; + if (new_volume > 100) + new_volume = 100; + qDebug() << "Setting new volume to: " << new_volume; + setAudioVolume(new_volume); +} + +//Check if a graphical audio mixer is installed +bool LOS::hasMixerUtility(){ + return QFile::exists(LOS::AppPrefix() + "bin/pavucontrol"); +} + +//Launch the graphical audio mixer utility +void LOS::startMixerUtility(){ + QProcess::startDetached(LOS::AppPrefix() + "bin/pavucontrol"); +} + +//Check for user system permission (shutdown/restart) +bool LOS::userHasShutdownAccess(){ + return true; //not implemented yet +} + +//Check for whether the system is safe to power off (no updates being perfomed) +bool LOS::systemPerformingUpdates(){ + return false; //Not implemented yet +} + +//Return the details of any updates which are waiting to apply on shutdown +QString LOS::systemPendingUpdates(){ + return ""; +} + +//System Shutdown +void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence + QProcess::startDetached("dbus-send --system --print-reply=literal --dest=org.freedesktop.ConsoleKit /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Stop"); +} + +//System Restart +void LOS::systemRestart(bool skipupdates){ //start reboot sequence + QProcess::startDetached("dbus-send --system --print-reply=literal --dest=org.freedesktop.ConsoleKit /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Restart"); +} + +//Check for suspend support +bool LOS::systemCanSuspend(){ + return false; +} + +//Put the system into the suspend state +void LOS::systemSuspend(){ + +} + +//Battery Availability +bool LOS::hasBattery(){ + QString my_status = LUtils::getCmdOutput("acpi -b").join(""); + bool no_battery = my_status.contains("No support"); + if (no_battery) return false; + return true; +} + +//Battery Charge Level +int LOS::batteryCharge(){ //Returns: percent charge (0-100), anything outside that range is counted as an error + QString my_status = LUtils::getCmdOutput("acpi -b").join(""); + int my_start = my_status.indexOf("%"); + // get the number right before the % sign + int my_end = my_start; + my_start--; + while ( (my_status[my_start] != ' ') && (my_start > 0) ) + my_start--; + my_start++; + int my_charge = my_status.mid(my_start, my_end - my_start).toInt(); + if ( (my_charge < 0) || (my_charge > 100) ) return -1; + return my_charge; +} + +//Battery Charging State +// Many possible values are returned if the laptop is plugged in +// these include "Unknown, Full and No support. +// However, it seems just one status is returned when running +// on battery and that is "Discharging". So if the value we get +// is NOT Discharging then we assume the battery is charging. +bool LOS::batteryIsCharging(){ + QString my_status = LUtils::getCmdOutput("acpi -b").join(""); + bool discharging = my_status.contains("Discharging"); + if (discharging) return false; + return true; +} + +//Battery Time Remaining +int LOS::batterySecondsLeft(){ //Returns: estimated number of seconds remaining + return 0; //not implemented yet for Linux +} + +//File Checksums +QStringList LOS::Checksums(QStringList filepaths){ //Return: checksum of the input file + QStringList info = LUtils::getCmdOutput("md5sum \""+filepaths.join("\" \"")+"\""); + for(int i=0; i Date: Sat, 18 Feb 2017 16:04:24 +0700 Subject: fix typo --- src-qt5/OS-detect.pri | 1 + 1 file changed, 1 insertion(+) (limited to 'src-qt5') diff --git a/src-qt5/OS-detect.pri b/src-qt5/OS-detect.pri index 05604b71..4ac280cf 100644 --- a/src-qt5/OS-detect.pri +++ b/src-qt5/OS-detect.pri @@ -70,6 +70,7 @@ isEmpty(OS){ } else:exists(/etc/slackware-version){ LINUX_DISTRO = Slackware } + } #Apply any special rules for particular distros equals(LINUX_DISTRO,"Fedora"){ isEmpty(L_ETCDIR){ L_ETCDIR=/etc } -- cgit From a44a58e543393ba5b9bc621a8da47ad23bd5df75 Mon Sep 17 00:00:00 2001 From: Sasongko Bawono Date: Sun, 19 Feb 2017 08:45:30 +0700 Subject: modified: src-qt5/core/libLumina/LuminaOS-Slackware.cpp --- src-qt5/core/libLumina/LuminaOS-Slackware.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/libLumina/LuminaOS-Slackware.cpp b/src-qt5/core/libLumina/LuminaOS-Slackware.cpp index 3c18ba36..6a7bee10 100644 --- a/src-qt5/core/libLumina/LuminaOS-Slackware.cpp +++ b/src-qt5/core/libLumina/LuminaOS-Slackware.cpp @@ -19,7 +19,7 @@ QString LOS::OSName(){ return "Slackware Linux"; } // NOTE: PREFIX, L_ETCDIR, L_SHAREDIR are defined in the OS-detect.pri project file and passed in QString LOS::LuminaShare(){ return (L_SHAREDIR+"/lumina-desktop/"); } //Install dir for Lumina share files QString LOS::AppPrefix(){ return "/usr/"; } //Prefix for applications -QString LOS::SysPrefix(){ return "/usr/"; } //Prefix for system +QString LOS::SysPrefix(){ return "/etc/"; } //Prefix for system //OS-specific application shortcuts (*.desktop files) QString LOS::ControlPanelShortcut(){ return ""; } //system control panel -- cgit From 66046134491a4f95094399c5ea58efa146ba7975 Mon Sep 17 00:00:00 2001 From: Johannes Sasongko Date: Mon, 20 Feb 2017 20:11:45 +1000 Subject: Insight: Put single/dual column actions in a QActionGroup to ensure they cannot both be unchecked. --- src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 967e6b1a..69693c7d 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -7,6 +7,7 @@ #include "DirWidget2.h" #include "ui_DirWidget2.h" +#include #include #include #include @@ -44,9 +45,12 @@ DirWidget::DirWidget(QString objID, QWidget *parent) : QWidget(parent), ui(new U line_dir = new QLineEdit(this); toolbar->addWidget(line_dir); connect(line_dir, SIGNAL(returnPressed()), this, SLOT(dir_changed()) ); - toolbar->addAction(ui->actionSingleColumn); - ui->actionSingleColumn->setChecked(true); - toolbar->addAction(ui->actionDualColumn); + QActionGroup *columnActionGroup = new QActionGroup(this); + toolbar->addAction(ui->actionSingleColumn); + ui->actionSingleColumn->setChecked(true); + columnActionGroup->addAction(ui->actionSingleColumn); + toolbar->addAction(ui->actionDualColumn); + columnActionGroup->addAction(ui->actionDualColumn); toolbar->addAction(ui->actionMenu); //Add the browser widgets RCBW = 0; //right column browser is unavailable initially @@ -400,7 +404,6 @@ void DirWidget::dir_changed(){ void DirWidget::on_actionSingleColumn_triggered(bool checked){ if(!checked){ return; } - ui->actionDualColumn->setChecked(false); if(RCBW==0){ return; } //nothing to do ui->browser_layout->removeWidget(RCBW); RCBW->deleteLater(); @@ -410,7 +413,6 @@ void DirWidget::on_actionSingleColumn_triggered(bool checked){ void DirWidget::on_actionDualColumn_triggered(bool checked){ if(!checked){ return; } - ui->actionSingleColumn->setChecked(false); if(RCBW!=0){ return; } //nothing to do RCBW = new BrowserWidget("rc", this); ui->browser_layout->addWidget(RCBW); -- cgit From d3fc603d26eef20a3fbf3ebd9a25446434f512ae Mon Sep 17 00:00:00 2001 From: Moo Date: Wed, 15 Feb 2017 23:20:39 +0000 Subject: Translated using Weblate (lumina_FM@lt (generated)) Currently translated at 98.1% (218 of 222 strings) --- src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src-qt5') 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 b5720165..ee094ccf 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 @@ -331,8 +331,8 @@ - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Sistemoje nepavyko rasti "lumina-fileinfo" paslaugų programos. Prašome, iš pradžių, ją įdiegti. + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Sistemoje nepavyko rasti "lumina-fileinfo" paslaugų programos. Prašome, iš pradžių, ją įdiegti. @@ -566,8 +566,8 @@ Nauja vieta: %2 - Click "Next" to start downloading the repository - Spustelėkite "Kitas", kad pradėtumėte saugyklos atsisiuntimą + Click "Next" to start downloading the repository + Spustelėkite "Kitas", kad pradėtumėte saugyklos atsisiuntimą @@ -1037,7 +1037,7 @@ Nauja vieta: %2 File Operation Errors - + Failų operacijos klaidos -- cgit From fc2dfb0e5ef7e6bdbdd3c41f6e722d57ff07df4e Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Tue, 21 Feb 2017 01:27:26 +0000 Subject: Translated using Weblate (l_TERMINAL@da (generated)) Currently translated at 71.4% (5 of 7 strings) --- src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts index ff5233cb..595177bd 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts @@ -6,12 +6,12 @@ Copy Selection - + Kopiér markering Paste - + Indsæt @@ -29,17 +29,17 @@ Close Terminal - + Luk terminal Move To Monitor - + Flyt til skærm Monitor %1 - + Skærm %1 -- cgit From bb3972a67c83d133bb3a2986ca950f4b7cd75cd2 Mon Sep 17 00:00:00 2001 From: Moo Date: Thu, 16 Feb 2017 21:43:40 +0000 Subject: Translated using Weblate (lumina_DESKTOP@lt (generated)) Currently translated at 92.5% (287 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts index a4a5ff5c..fbb3784c 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts @@ -246,7 +246,7 @@ The way to get started is to quit talking and begin doing. - + Darbo pradžios paslaptis yra nustoti kalbėti ir pradėti daryti. @@ -306,7 +306,7 @@ I find that the harder I work, the more luck I seem to have. - + Aš suprantu, kad kuo daugiau aš dirbu, tuo labiau man sekasi. @@ -331,7 +331,7 @@ It's kind of fun to do the impossible. - + Smagu yra daryti tai, kas neįmanoma. @@ -346,7 +346,7 @@ Success usually comes to those who are too busy to be looking for it. - + Sėkmė, dažniausiai, nusišypso tiems, kas yra pernelyg užsiėmę, kad jos ieškotų. @@ -361,7 +361,7 @@ The best way to predict the future is to invent it. - + Geriausiai būdas išpranašauti ateitį yra ją išrasti. @@ -371,7 +371,7 @@ Sometimes it is not enough that we do our best; we must do what is required. - + Kartais, mums nepakanka daryti tai, kas geriausia; privalome daryti tai, kas reikalinga. @@ -1032,7 +1032,7 @@ Multimedia URL - Multimedijos URL + Multimedijos URL -- cgit From 393589ddca9f955cd71156a9fbfe88a80e5172a8 Mon Sep 17 00:00:00 2001 From: Paweł Date: Sat, 18 Feb 2017 08:06:44 +0000 Subject: Translated using Weblate (lumina_DESKTOP@pl (generated)) Currently translated at 85.1% (264 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts index 8ce06739..9a73dc96 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts @@ -647,12 +647,12 @@ Start Moving Item - Zacznij przesuwać element + Przesuń element Start Resizing Item - Zacznij zmieniać rozmiar elementu + Zmień rozmiar elementu -- cgit From 1fd9ed0354b7b3e2c393c1fe7fd00638e0973b3e Mon Sep 17 00:00:00 2001 From: Moo Date: Wed, 15 Feb 2017 23:17:31 +0000 Subject: Translated using Weblate (lumina_OPEN@lt (generated)) Currently translated at 100.0% (39 of 39 strings) --- src-qt5/core/lumina-open/i18n/lumina-open_lt.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_lt.ts b/src-qt5/core/lumina-open/i18n/lumina-open_lt.ts index acb59691..fce7de40 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_lt.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_lt.ts @@ -161,7 +161,7 @@ Application entry is invalid: %1 - + Programos įrašas yra neteisingas: %1 @@ -190,8 +190,8 @@ - Could not find "%1". Please ensure it is installed first. - Nepavyko rasti "%1". Iš pradžių, įsitikinkite ar ji įdiegta. + Could not find "%1". Please ensure it is installed first. + Nepavyko rasti "%1". Iš pradžių, įsitikinkite ar ji įdiegta. -- 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') 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 3bc49c0a511c236c29efd96f1cddef1371420a84 Mon Sep 17 00:00:00 2001 From: Moo Date: Tue, 21 Feb 2017 19:40:37 +0000 Subject: Translated using Weblate (lumina_FM@lt (generated)) Currently translated at 100.0% (222 of 222 strings) --- src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5') 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 ee094ccf..328f8c36 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 @@ -165,7 +165,7 @@ Select Action - + Pasirinkti veiksmą @@ -307,7 +307,7 @@ View Files... - + Rodyti failų... @@ -845,12 +845,12 @@ Nauja vieta: %2 CTRL+B - + CTRL(VALD)+B CTRL+E - + CTRL(VALD)+E -- cgit From 1fabdb2aee483023d643915368fc4f96152e2e3c Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 02:34:46 +0000 Subject: Translated using Weblate (l_FILEINFO@da (generated)) Currently translated at 100.0% (43 of 43 strings) --- src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts index 945bea76..f7a42daf 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts @@ -169,12 +169,12 @@ Save Application File - + Gem programfil Application Registrations (*.desktop) - + Programregistreringer (*.desktop) @@ -189,7 +189,7 @@ Invalid selection: Not a valid executable - + Ugyldigt valg: Ikke en eksekverbar -- cgit From 9f3ca73283a713c754604f14dd484db565a569ab Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 02:19:22 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 80.9% (251 of 310 strings) --- .../core/lumina-desktop/i18n/lumina-desktop_da.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index b4ec953f..f8a63fd2 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -146,27 +146,27 @@ Starting the Lumina Desktop... - + Starter Lumina-skrivebordet... Version %1 - + Version %1 This desktop is powered by coffee, coffee, and more coffee. - + Dette skrivebord er drevet af kaffe, kaffe og mere kaffe. Keep up with desktop news! - + Hold dig opdateret med skrivebordsnyheder! There is a full handbook of information about the desktop available online. - + Der er en hel håndbog af information om skrivebordet online. @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. @@ -310,7 +310,7 @@ - Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. -- cgit From 37da5a51989bcfd3b830dfd9d479680a91a76b2d Mon Sep 17 00:00:00 2001 From: Moo Date: Tue, 21 Feb 2017 19:55:49 +0000 Subject: Translated using Weblate (lumina_DESKTOP@lt (generated)) Currently translated at 93.8% (291 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts index fbb3784c..5ff2050d 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts @@ -982,7 +982,7 @@ Form - Forma + Forma @@ -1017,17 +1017,17 @@ Select Multimedia Files - Pasirinkti multimedijos failus + Pasirinkti multimedijos failus Select Multimedia Directory - Pasirinkti multimedijos katalogą + Pasirinkti multimedijos katalogą Enter a valid URL for a multimedia file or stream: - Įveskite taisyklingą multimedijos failo ar srauto URL: + Įveskite taisyklingą multimedijos failo ar srauto URL: -- cgit From 7fec883828d5d064e1720ef1551bbf08d50dc463 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 02:52:17 +0000 Subject: Translated using Weblate (l_TERMINAL@da (generated)) Currently translated at 100.0% (7 of 7 strings) --- src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts index 595177bd..15527873 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts @@ -19,12 +19,12 @@ Trigger Terminal - + Udløs terminal Top of Screen - + Øverst på skærmen -- cgit From eaa29bfb3bf097beaa6142ce1d39fd1b69d02a82 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 02:47:28 +0000 Subject: Translated using Weblate (lumina_INFO@da (generated)) Currently translated at 100.0% (18 of 18 strings) --- src-qt5/core/lumina-info/i18n/lumina-info_da.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-info/i18n/lumina-info_da.ts b/src-qt5/core/lumina-info/i18n/lumina-info_da.ts index 97caa513..c1b3b778 100644 --- a/src-qt5/core/lumina-info/i18n/lumina-info_da.ts +++ b/src-qt5/core/lumina-info/i18n/lumina-info_da.ts @@ -36,7 +36,7 @@ OS Build: - + OS-byg: @@ -70,8 +70,8 @@ - <a href="https://github.com/beanpole135">Ken Moore</a> - <a href="https://github.com/beanpole135"> Ken Moore</a> + <a href="https://github.com/beanpole135">Ken Moore</a> + <a href="https://github.com/beanpole135"> Ken Moore</a> @@ -85,8 +85,8 @@ - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Åben i en web browser<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Åben i en web browser<a> -- 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') 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 f305fa7fb187360fe66f3d75c109e8c41dbff3e5 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 02:40:35 +0000 Subject: Translated using Weblate (l_FILEINFO@da (generated)) Currently translated at 100.0% (43 of 43 strings) --- src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts index f7a42daf..3ef20ee2 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts @@ -48,7 +48,7 @@ MimeType: - MimeType: + MIME-type: -- cgit From 60343542f064f8ff9986f29912b0510342b53cf5 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 02:44:57 +0000 Subject: Translated using Weblate (lumina_FM@da (generated)) Currently translated at 19.3% (43 of 222 strings) --- src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5') 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 6b5ecc1a..396cedca 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 @@ -190,7 +190,7 @@ (Limited Access) - (Begrænset Adgang) + (begrænset adgang) @@ -331,7 +331,7 @@ - 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. @@ -458,7 +458,7 @@ Invalid Move - Ugyldigt træk. + Ugyldigt træk @@ -566,7 +566,7 @@ Ny lokation: %2 - Click "Next" to start downloading the repository + Click "Next" to start downloading the repository -- cgit From c0a33604092988c8699470947ca8593641b88021 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 02:51:01 +0000 Subject: Translated using Weblate (l_SCREENSHOT@da (generated)) Currently translated at 87.5% (21 of 24 strings) --- .../lumina-screenshot/i18n/l-screenshot_da.ts | 26 +++++++++++----------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts index 7cc9d423..76a05b69 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts @@ -6,12 +6,12 @@ Zoom In - + Zoom ind Zoom Out - + Zoom ud @@ -30,37 +30,37 @@ Save As - + Gem som Crop - + Beskær Resize - + Tilpas størrelse Lumina Screenshot - + Lumina-skærmbillede Sec Delay - + Sek. forsinkelse Capture - + Fang Edit - + Redigér @@ -70,17 +70,17 @@ Ctrl+N - + Ctrl+N Close - + Luk Esc - + Esc @@ -100,7 +100,7 @@ Could not save screenshot - + Kunne ikke gemme skærmbillede -- cgit From c06f398b04c90125397863385676855a87e7578a Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 03:12:29 +0000 Subject: Translated using Weblate (lumina_WM@da (generated)) Currently translated at 100.0% (7 of 7 strings) --- src-qt5/core/lumina-wm-INCOMPLETE/i18n/lumina-wm_da.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-wm-INCOMPLETE/i18n/lumina-wm_da.ts b/src-qt5/core/lumina-wm-INCOMPLETE/i18n/lumina-wm_da.ts index 4a8aaca2..0edee8df 100644 --- a/src-qt5/core/lumina-wm-INCOMPLETE/i18n/lumina-wm_da.ts +++ b/src-qt5/core/lumina-wm-INCOMPLETE/i18n/lumina-wm_da.ts @@ -6,37 +6,37 @@ Form - + Formular Password - + Adgangskode Unlock Session - + Lås session op Locked by: %1 - + Låst af: %1 Too Many Failures - + For mange mislykkedes forsøg Wait %1 Minutes - + Vent %1 minutter Failed Attempts: %1 - + Mislykkede forsøg: %1 -- cgit From 7520960aca8c6571a0406691eafa220f581b1ff9 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:27:15 +0000 Subject: Translated using Weblate (l_SCREENSHOT@da (generated)) Currently translated at 100.0% (24 of 24 strings) --- src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts index 76a05b69..9267cde8 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts @@ -65,7 +65,7 @@ File - + Fil @@ -80,7 +80,7 @@ Esc - Esc + Esc @@ -105,7 +105,7 @@ The screenshot could not be saved. Please check directory permissions or pick a different directory - + Skærmbilledet kunne ikke gemmes. Tjek venligst mappetilladelserne eller vælg en anden mappe -- 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') 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 f5722c8cb405b950f17a78754e844ecad90d5fa9 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 04:11:48 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 84.5% (262 of 310 strings) --- .../core/lumina-desktop/i18n/lumina-desktop_da.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index f8a63fd2..4d200262 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -151,7 +151,7 @@ Version %1 - Version %1 + Version %1 @@ -987,52 +987,52 @@ Clear Playlist - Ryd spilleliste + Ryd spilleliste Shuffle Playlist - Bland spilleliste + Bland spilleliste Add Files - Tilføj filer + Tilføj filer Add Directory - Tilføj mappe + Tilføj mappe Add URL - Tilføj URL + Tilføj URL Multimedia Files - Mediefiler + Multimediefiler Select Multimedia Files - Vælg mediefiler + Vælg multimediefiler Select Multimedia Directory - Vælg Medie Mappe + Vælg multimediemappe Enter a valid URL for a multimedia file or stream: - Indtast en korrekt URL til mediefil eller stream: + Indtast en gyldig URL til en multimediefil eller strøm: Multimedia URL - Medie URL + Multimedie-URL -- cgit From 14536319702548f118962823b96ea222ce545050 Mon Sep 17 00:00:00 2001 From: Moo Date: Wed, 22 Feb 2017 11:53:28 +0000 Subject: Translated using Weblate (lumina_DESKTOP@lt (generated)) Currently translated at 94.5% (293 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts index 5ff2050d..6e97229f 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts @@ -156,12 +156,12 @@ This desktop is powered by coffee, coffee, and more coffee. - + Šis darbalaukis veikia su kava, kava ir dar daugiau kavos. Keep up with desktop news! - + Sekite darbalaukio naujienas! -- cgit From 1a52428e9ed6c92d82f7a5b39fea11e86f451d03 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:24:21 +0000 Subject: Translated using Weblate (lumina_INFO@da (generated)) Currently translated at 100.0% (18 of 18 strings) --- src-qt5/core/lumina-info/i18n/lumina-info_da.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-info/i18n/lumina-info_da.ts b/src-qt5/core/lumina-info/i18n/lumina-info_da.ts index c1b3b778..8f0d9133 100644 --- a/src-qt5/core/lumina-info/i18n/lumina-info_da.ts +++ b/src-qt5/core/lumina-info/i18n/lumina-info_da.ts @@ -41,7 +41,7 @@ Qt Version: - Qt Version: + Qt version: @@ -71,7 +71,7 @@ <a href="https://github.com/beanpole135">Ken Moore</a> - <a href="https://github.com/beanpole135"> Ken Moore</a> + <a href="https://github.com/beanpole135">Ken Moore</a> -- cgit From c80e2781a0d55e6fdb738f86ec931dd2d952c9f1 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:26:00 +0000 Subject: Translated using Weblate (lumina_OPEN@da (generated)) Currently translated at 97.4% (38 of 39 strings) --- src-qt5/core/lumina-open/i18n/lumina-open_da.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts index 757d5128..a3ff2965 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts @@ -41,7 +41,7 @@ OK - Ok + OK @@ -51,7 +51,7 @@ (Email Link) - Email henvisning + (e-maillink) @@ -151,7 +151,7 @@ Screen Brightness %1% - skærm-lysstyrke %1% + Skærm-lysstyrke %1% @@ -171,7 +171,7 @@ URL shortcut is missing the URL: %1 - URL genvej mangler URL'en: %1 + URL genvej mangler URL'en: %1 @@ -190,8 +190,8 @@ - Could not find "%1". Please ensure it is installed first. - Kunne ikke finde "%1". Sørg for at programmet er installeret først. + Could not find "%1". Please ensure it is installed first. + Kunne ikke finde "%1". Sørg for at programmet er installeret først. -- cgit From bfce22dfeb37b7cc5bb80f98139f105e9714adb1 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Wed, 22 Feb 2017 03:29:47 +0000 Subject: Translated using Weblate (l_TE@da (generated)) Currently translated at 66.6% (36 of 54 strings) --- .../desktop-utils/lumina-textedit/i18n/l-te_da.ts | 77 +++++++++++----------- 1 file changed, 40 insertions(+), 37 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index 66f5b9bd..29c1c4a4 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -1,6 +1,6 @@ - + ColorDialog @@ -16,28 +16,28 @@ Color - + Farve Sample - + Prøve Select Color - + Vælg farve Cancel - + Annuller Apply - + Anvend @@ -45,12 +45,12 @@ MainWindow - + Hovedvindue Tab 1 - + Faneblad 1 @@ -69,7 +69,7 @@ Find: - + Find: @@ -79,12 +79,12 @@ Replace: - + Erstat: Match case - + Forskel på store og små bogstaver @@ -114,12 +114,12 @@ Syntax Highlighting - + Syntaksfremhævning Edit - + Rediger @@ -129,38 +129,38 @@ Show Line Numbers - + Vis linjenumre None - + Ingen New File - + Ny fil Ctrl+N - + Ctrl+N Open File - + Åbn fil Ctrl+O - + Ctrl+O Save File - + Gem fil @@ -170,12 +170,12 @@ Save File As - + Gem fil som Close - + Luk @@ -185,7 +185,7 @@ Close File - + Luk fil @@ -195,27 +195,27 @@ Customize Colors - + Tilpas farver Wrap Lines - + Ombryd linjer Find - + Find Ctrl+F - + Ctrl+F Replace - + Erstat @@ -225,17 +225,17 @@ Text Editor - + Tekstredigering Open File(s) - + Åbn fil(er) Text Files (*) - + Tekstfiler (*) @@ -249,7 +249,10 @@ Do you want to close it anyway? %1 - + Denne fil har ugemte ændringer. +Vil du lukke den alligevel? + +%1 @@ -265,17 +268,17 @@ Do you want to close the editor anyway? Save File - + Gem fil Text File (*) - + Tekstfil (*) Row Number: %1, Column Number: %2 - + Rækkenummer: %1, kolonnenummer: %2 @@ -285,12 +288,12 @@ Do you want to close the editor anyway? (Note: You will lose all currently-unsaved changes) - + (bemærk: du vil miste alle nuværende ugemte ændringer) File Modified - + Fil ændret -- cgit From 7ca1b10678a70a20d5a21bc280d5a4d07f88cb26 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:29:07 +0000 Subject: Translated using Weblate (l_TE@da (generated)) Currently translated at 68.5% (37 of 54 strings) --- src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index 29c1c4a4..3d3e422e 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -6,7 +6,7 @@ Customize Colors - + Tilpas farver -- cgit From 147b4ce145aecb4b7337c4affb4d01f47aae55f3 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:26:00 +0000 Subject: Translated using Weblate (lumina_OPEN@da (generated)) Currently translated at 100.0% (39 of 39 strings) --- src-qt5/core/lumina-open/i18n/lumina-open_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts index a3ff2965..5c8d8d05 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts @@ -161,7 +161,7 @@ Application entry is invalid: %1 - + Programpost er ugyldig: %1 -- cgit From 8c45128b228a19e1a7a6d7dab691a57c46d3204f Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:33:31 +0000 Subject: Translated using Weblate (l_TE@da (generated)) Currently translated at 92.5% (50 of 54 strings) --- .../desktop-utils/lumina-textedit/i18n/l-te_da.ts | 31 ++++++++++++---------- 1 file changed, 17 insertions(+), 14 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index 3d3e422e..754d444b 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -55,7 +55,7 @@ Find the previous match - + Find det forrige match @@ -64,7 +64,7 @@ ... - + ... @@ -74,7 +74,7 @@ Find the next match - + Find det næste match @@ -89,27 +89,27 @@ Replace next match - + Erstat næste match Replace all matches (to end of document) - + Erstat alle match (til slutningen af dokumentet) Hide the find/replace options - + Skjul valgmulighederne find/erstat File - + Fil View - + Vis @@ -124,7 +124,7 @@ toolBar - + værktøjslinje @@ -165,7 +165,7 @@ Ctrl+S - + Ctrl+S @@ -180,7 +180,7 @@ Ctrl+Q - + Ctrl+A @@ -241,7 +241,7 @@ Lose Unsaved Changes? - + Mist ugemte ændringer? @@ -260,7 +260,10 @@ Vil du lukke den alligevel? Do you want to close the editor anyway? %1 - + Der er ugemte ændringer. +Vil du lukke redigeringsprogrammet alligevel? + +%1 @@ -283,7 +286,7 @@ Do you want to close the editor anyway? The following file has been changed by some other utility. Do you want to re-load it? - + Den følgende fil er blevet ændret af et andet redskab. Vil du genindlæse den? -- cgit From ae88a8f03dff4618c271e28795552d8267104da4 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:37:09 +0000 Subject: Translated using Weblate (lumina_FM@da (generated)) Currently translated at 29.2% (65 of 222 strings) --- .../desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 44 +++++++++++----------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'src-qt5') 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 396cedca..a7723204 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 @@ -59,37 +59,37 @@ Name - Navn + Navn Size - Størrelse + Størrelse Type - Type + Type Date Modified - Ændringsdato + Ændringsdato Date Created - Oprettelsesdato + Oprettelsesdato Capacity: %1 - Kapacitet: %1 + Kapacitet: %1 Files: %1 (%2) - Filer: %1 (%2) + Filer: %1 (%2) @@ -590,7 +590,7 @@ Ny lokation: %2 Shift+Left - Skift+venstre + Skift+venstre @@ -695,7 +695,7 @@ Ny lokation: %2 Delete Selection - Slet valgte + Slet valgte @@ -810,17 +810,17 @@ Ny lokation: %2 Cut Selection - Klip valgte + Klip valgte Copy Selection - Kopiér valgte + Kopiér valgte Paste - Indsæt + Indsæt @@ -875,17 +875,17 @@ Ny lokation: %2 Name: - Navn: + Navn: Invalid Name - Ugyldigt navn + Ugyldigt navn This bookmark name already exists. Please choose another. - Dette bogmærke navn findes allerede. Vælg venligst et andet navn. + Dette bogmærkenavn findes allerede. Vælg venligst et andet. @@ -900,7 +900,7 @@ Ny lokation: %2 Slideshow - Slideshow + Diasshow @@ -968,7 +968,7 @@ Ny lokation: %2 Form - Formular + Formular @@ -998,7 +998,7 @@ Ny lokation: %2 Finished - Gennemført + Gennemført @@ -1006,7 +1006,7 @@ Ny lokation: %2 Form - Formular + Formular @@ -1055,7 +1055,7 @@ Ny lokation: %2 Form - Formular + Formular @@ -1100,7 +1100,7 @@ Ny lokation: %2 Shift+Left - Skift+venstre + Skift+venstre @@ -1158,7 +1158,7 @@ Ny lokation: %2 Finished - Gennemført + Gennemført -- cgit From 1b4554dd931d47afb5b81ef5f90e2df975a7e537 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:39:53 +0000 Subject: Translated using Weblate (l_TE@da (generated)) Currently translated at 100.0% (54 of 54 strings) --- src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index 754d444b..b320d709 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -11,7 +11,7 @@ Item Type - + Posttype @@ -180,7 +180,7 @@ Ctrl+Q - Ctrl+A + Ctrl+Q @@ -190,7 +190,7 @@ Ctrl+W - + Ctrl+W @@ -220,7 +220,7 @@ Ctrl+R - + Ctrl+R -- 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') 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 69f19537d914f1db124556191bb03e727a4dd003 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 01:40:33 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 84.8% (263 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index 4d200262..d9e91880 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -982,7 +982,7 @@ Form - Formular + Formular -- cgit From 636a37de66a6d5302f201cfb6900c4a0b540d76a Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 19:03:42 +0000 Subject: Translated using Weblate (lumina_FM@da (generated)) Currently translated at 100.0% (222 of 222 strings) --- .../desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 314 ++++++++++----------- 1 file changed, 157 insertions(+), 157 deletions(-) (limited to 'src-qt5') 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 a7723204..21f56e11 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 @@ -94,17 +94,17 @@ Files: %1 - + Filer: %1 Dirs: %1 - + Mapper: %1 No Directory Contents - + Intet mappeindhold @@ -117,12 +117,12 @@ Increase Icon Sizes - + Større ikoner Decrease Icon Sizes - + Mindre ikoner @@ -160,32 +160,32 @@ Menu - + Menu Select Action - + Vælg handling SingleColumn - + EnkelKolonne Single column view - + Enkelkolonne visning Dual Column - + Dobbeltkolonne Dual Column View - + Dobbeltkolonne visning @@ -230,17 +230,17 @@ File Operations - + Filhandlinger Directory Operations - + Mappehandlinger Loading... - + Indlæser... @@ -257,97 +257,97 @@ The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Mappen kunne ikke oprettes. Sørg venligst for at du har de fornødne tilladelser til at ændre den aktuelle mappe. Current - + Aktuelle Create... - + Opret... File - + Fil Directory - + Mappe Application Launcher - + Programstarter Launch... - + Start... Terminal - + Terminal SlideShow - + Diasshow Multimedia Player - + Multimedieafspiller View Files... - + Vis filer... Checksums - + Tjeksumme Properties - + Egenskaber File Checksums: - + Fil-tjeksumme: Missing Utility - + Manglende redskaber 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 Open With... - + Åbn med... Rename... - + Omdøb... @@ -390,42 +390,42 @@ Calculating - + Udregner Overwrite Files? - + Overskriv filer? Do you want to overwrite the existing files? - + Vil du overskrive de eksisterende filer? Note: It will just add a number to the filename otherwise. - + Bemærk: Det vel ellers blot tilføje et tal til filnavnet. Removing: %1 - + Fjerner: %1 Copying: %1 to %2 - + Kopierer: %1 til %2 Restoring: %1 as %2 - + Gendanner: %1 som %2 Moving: %1 to %2 - + Flytter: %1 til %2 @@ -477,107 +477,107 @@ Ny lokation: %2 Clone a Git Repository - + Klon et Git-arkiv Welcome! - + Velkommen! This wizard will guide you through the process of downloading a GIT repository from the internet. - + Denne assistent vil guide den gennem processen til at downloade et GIT-arkiv fra internettet. GitHub Repository Settings - + Indstillinger for GitHub-arkiv Organization/User - + Organisation/bruger Repository Name - + Arkivnavn Is Private Repository - + Er privat arkiv Type of Access - + Type af tilgang Use my SSH Key - + Brug min SSH-nøgle Login to server - + Login til server Username - + Brugernavn Password - + Adgangskode Anonymous (public repositories only) - + Anonym (kun offentlige arkiver) Optional SSH Password - + Valgfri SSH-adgangskode Advanced Options - + Avanceret valgmuligheder Custom Depth - + Tilpasset dybde Single Branch - + Enkel gren branch name - + Grennavn Click "Next" to start downloading the repository - + Klik på "Næste" for at starte download af arkivet Stop Download? - + Stop download? Kill the current download? - + Dræb den aktuelle download? @@ -595,47 +595,47 @@ Ny lokation: %2 Shift+Right - + 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 @@ -650,47 +650,47 @@ Ny lokation: %2 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 @@ -700,112 +700,112 @@ Ny lokation: %2 Del - + Del Refresh - + Genopfrisk Close Tab - + Luk faneblad Repo Status - + Arkivstatus Clone Repository - + Klon arkiv Ctrl+T - + Ctrl+T Exit - + Afslut Ctrl+Q - + Ctrl+Q &Preferences - + &Præferencer Show Hidden Files - + Vis skjulte filer Scan for Devices - + Skan efter enheder Manage Bookmarks - Administrér bogmærker + Håndter bogmærker Show Action Buttons - + Vis handlingsknapper Load Thumbnails - + Indlæs miniaturer Ctrl+F - + Ctrl+F Detailed List - + Detaljeret liste Basic List - + Basisliste Ctrl+W - + Ctrl+W F5 - + F5 Ctrl+C - + Ctrl+C Rename... - + Omdøb... F2 - + F2 @@ -825,52 +825,52 @@ Ny lokation: %2 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 @@ -890,12 +890,12 @@ Ny lokation: %2 Git Repository Status - + Git-arkiv status Multimedia - + Multimedie @@ -905,62 +905,62 @@ Ny lokation: %2 Items to be removed: - + Poster som skal fjernes: Verify Quit - + Bekræft afslut Ctrl+H - + Ctrl+H Ctrl+L - + Ctrl+L You have multiple tabs open. Are you sure you want to quit? - + Du har adskillige åbne faneblade. Er du sikker på, at du vil afslutte? Verify Removal - + Bekræft fjernelse WARNING: This will permanently delete the file(s) from the system! - + ADVARSEL: Dette vil slette filen/filerne permanent fra systemet! Are you sure you want to continue? - + Er du sikker på, at du vil fortsætte? Rename File - + Omdøb fil New Name: - + Nyt navn: Overwrite File? - + Overskriv fil? An existing file with the same name will be replaced. Are you sure you want to proceed? - + En eksisterende fil med der samme navn vil blive erstattet. Er du sikkert på, at du vil fortsætte? @@ -973,27 +973,27 @@ Ny lokation: %2 Go To Next - + Gå til næste (No Running Video) - + (ingen kørende video) Playing: - + Afspiller: Stopped - + Stoppet Error Playing File: %1 - + Fejl ved afspilning af fil: %1 @@ -1012,42 +1012,42 @@ Ny lokation: %2 ... - + ... Evaluating... - + Evaluerer... Move - + Flyt Copy - + Kopiér Remove - + Fjern File Operation Errors - + Filhandlingsfejl %1 Finished - + %1 gennemført Errors Occured - + Fejl opstod @@ -1060,34 +1060,34 @@ Ny lokation: %2 Delete this image file - + Slet denne billedfil Rotate this image file counter-clockwise - + Roter denne billedfil modsat urets retning Rotate this image file clockwise - + Roter denne billefil i urets retning Zoom in - + Zoom ind Zoom out - + Zoom ud Go to Beginning - + Gå til begyndelsen @@ -1095,7 +1095,7 @@ Ny lokation: %2 ... - + ... @@ -1105,52 +1105,52 @@ Ny lokation: %2 Go to Previous - + Gå til forrige Left - + Venstre File Name - + Filnavn Go to Next - + Gå til næste Right - + Højre Go to End - + Gå til slutningen Shift+Right - + Skift+Højre Verify Removal - + Bekræft fjernelse WARNING: This will permanently delete the file from the system! - + ADVARSEL: Dette vil slette filen permanent fra systemet! Are you sure you want to continue? - + Er du sikker på, at du vil fortsætte? @@ -1163,7 +1163,7 @@ Ny lokation: %2 Errors during operation. Click to view details - + Fejl under handling. Klik for at vise detaljer -- cgit From 72126f746695bc1f26ca81b37b6cd9e58adf3b1d Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 06:11:31 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 87.7% (272 of 310 strings) --- .../core/lumina-desktop/i18n/lumina-desktop_da.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index d9e91880..bc31261f 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -171,32 +171,32 @@ Want to change the interface? Everything is customizable in the desktop configuration! - + Vil du ændre brugerfladen? Alt kan tilpasses i skrivebordskonfigurationen! Lumina can easily reproduce the interface from most other desktop environments. - + Lumina kan nemt efterligne brugerfladen fra de fleste andre skrivebordsmiljøer. This desktop is generously sponsored by iXsystems - + Dette skrivebord er generøst sponsoreret af iXsystems I have never been hurt by what I have not said - + Jeg har aldrig taget skade af det jeg aldrig har sagt Gotta have more cowbell! - + Flere koklokker tak! Everything has its beauty but not everyone sees it. - + Alt har sin skønhed, men alle ser det ikke. @@ -236,17 +236,17 @@ Never trust a computer you can’t throw out a window. - + Stol aldrig på en computer du ikke kan smide ud af et vindue. Study the past if you would define the future. - + Lær fortiden af kende hvis du definere fremtiden. The way to get started is to quit talking and begin doing. - + Måden at komme i gang, er at holde op med at snakke og begynde at gøre. @@ -1254,7 +1254,7 @@ Screensaver - Skærmskåner + Pauseskærm -- 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') 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 976618d221053a2bb2f1b4d68dc52b3c30d486be Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 02:41:37 +0000 Subject: Translated using Weblate (lumina_OPEN@da (generated)) Currently translated at 100.0% (39 of 39 strings) --- src-qt5/core/lumina-open/i18n/lumina-open_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts index 5c8d8d05..d1fe0f73 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts @@ -56,7 +56,7 @@ (Internet URL - %1) - (Internet URL - %1) + (Internet-URL - %1) -- cgit From 4b59043bcbf63afe6fec22a6c2556cbd8879a0e4 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 19:04:18 +0000 Subject: Translated using Weblate (lumina_FM@da (generated)) Currently translated at 100.0% (222 of 222 strings) --- src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') 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 21f56e11..4600fd1c 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 @@ -960,7 +960,7 @@ Ny lokation: %2 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 sikkert på, at du vil fortsætte? + En eksisterende fil med der samme navn vil blive erstattet. Er du sikker på, at du vil fortsætte? -- cgit From 3dfee1364b5cf06c6c93d49634af5d31813ad7bc Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 19:05:26 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 87.7% (272 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index bc31261f..d4d0aa4a 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -191,7 +191,7 @@ Gotta have more cowbell! - Flere koklokker tak! + Mere koklokke tak! -- cgit From fad43133babf59dd8d6e9846dd788e741d495f92 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 21:11:59 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 100.0% (310 of 310 strings) --- .../core/lumina-desktop/i18n/lumina-desktop_da.ts | 76 +++++++++++----------- 1 file changed, 38 insertions(+), 38 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index d4d0aa4a..b6071010 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -201,37 +201,37 @@ Before God we are all equally wise - and equally foolish. - + Før gud er vi alle lige kloge - og lige dumme. We cannot do everything at once, but we can do something at once. - + Vi kan ikke gøre alt på samme tid, men vi kan gøre noget på en gang. One with the law is a majority. - + En med loven er et flertal. Don't expect to build up the weak by pulling down the strong. - + Forvent ikke at opbygge det svage ved at nedrive det stærke. You can't know too much, but you can say too much. - + Du kan ikke vide hvor meget, men du kan sige for meget. Duty is not collective; it is personal. - + Pligt er ikke kollektivt; det er personligt. Any society that would give up a little liberty to gain a little security will deserve neither and lose both. - + Et samfund som ville opgive en smule frihed for at gå en smule sikkerhed vil ikke gøre sig fortjent til noget af det og miste begge. @@ -251,137 +251,137 @@ Ask and it will be given to you; search, and you will find; knock and the door will be opened for you. - + Spørg, og det vil blive givet til dig; søg, og du vil finde; bank på, og døren vil blive åbnet for dig. Start where you are. Use what you have. Do what you can. - + Start hvor du er. Brug hvad du har. Gør hvad du kan. A person who never made a mistake never tried anything new. - + En person der aldrig har lavet fejl, har aldrig prøvet noget nyt. It does not matter how slowly you go as long as you do not stop. - + Det har ikke betydning hvor hurtigt du går, så længe du ikke stopper. Do what you can, where you are, with what you have. - + Gør hvad du kan, der hvor du er, med det du har. Remember no one can make you feel inferior without your consent. - + Husk, at ingen kan få dig til at føle dig underlegen, uden dit samtykke. It’s not the years in your life that count. It’s the life in your years. - + Det er ikke årene i dit liv der tæller. Det er livet i dine år. Either write something worth reading or do something worth writing. - + Skriv enten noget som er værd at læse, eller noget som er værd at skrive. The only way to do great work is to love what you do. - + Den eneste måde at udføre godt arbejde, er ved at elske det du gør. Political correctness is tyranny with manners. - + Politisk korrekthed er tyranni uden manerer. Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. - + Kun to ting er uendelige, universet og menneskelig dumhed, og jeg er ikke sikker på det sidste. I find that the harder I work, the more luck I seem to have. - + Jeg oplever at jo hårdere jeg arbejder, jo mere heldig ser jeg ud til at være. Do, or do not. There is no 'try'. - + Gør, eller gør ikke. Der er ikke noget "prøv". A mathematician is a device for turning coffee into theorems. - + En matematiker er en enhed som omdanner kaffe til matematiske sætninger. Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws. - + Gode mennesker behøver ikke love til at fortælle dem at de skal opføre sig ordentligt, mens dårlige mennesker vil finde en vej omkring lovene. Black holes are where God divided by zero. - + Sorte huller er når gud dividere med nul. It's kind of fun to do the impossible. - + Det er egentligt sjovt at gøre det umulige. Knowledge speaks, but wisdom listens. - + Viden taler, men klogskab lytter. A witty saying proves nothing. - + En vittig udtalelse beviser intet. Success usually comes to those who are too busy to be looking for it. - + Succes kommer typisk til dem der ikke har travlt med at lede efter det. Well-timed silence hath more eloquence than speech. - + Godt timet stilhed havde mere elokvens end tale. I have never let my schooling interfere with my education. - + Jeg har aldrig ladet min skolegang blande sig i min uddannelse. The best way to predict the future is to invent it. - + Den bedste måde at forudse fremtiden er ved at opfinde den. Well done is better than well said. - + Vel gjort eller bedre end vel sagt. Sometimes it is not enough that we do our best; we must do what is required. - + Nogen gange er det ikke nok at gøre vores bedst; vi må gøre hvad der er krævet. The truth is more important than the facts. - + Sandheden er vigtigere end fakta. Better to remain silent and be thought a fool than to speak out and remove all doubt. - + Bedre at forblive stille og blive tænkt som værende et fjols, end at tale og fjerne al tvivl. @@ -642,7 +642,7 @@ Launch Item - + Start post @@ -738,7 +738,7 @@ Lock Session - + Lås session @@ -1264,7 +1264,7 @@ Wallpaper - + Tapet @@ -1274,7 +1274,7 @@ All Desktop Settings - + Alle skrivebordsindstillinger -- 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') 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 10b605454bb9a5cfe9381bec5bbe89c06a0b1fdc Mon Sep 17 00:00:00 2001 From: Paweł Date: Fri, 24 Feb 2017 13:39:47 +0000 Subject: Translated using Weblate (lumina_INFO@pl (generated)) Currently translated at 100.0% (18 of 18 strings) --- src-qt5/core/lumina-info/i18n/lumina-info_pl.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-info/i18n/lumina-info_pl.ts b/src-qt5/core/lumina-info/i18n/lumina-info_pl.ts index 6ff00c18..0bc77338 100644 --- a/src-qt5/core/lumina-info/i18n/lumina-info_pl.ts +++ b/src-qt5/core/lumina-info/i18n/lumina-info_pl.ts @@ -16,7 +16,7 @@ Source Repository - Repozytorium Żródłowe + Repozytorium źródłowe @@ -26,7 +26,7 @@ Bug Reports - Zgłaszanie Błędów + Zgłaszanie błędów @@ -46,7 +46,7 @@ Ask the Community - Zadaj Pytanie + Zapytaj Społeczność @@ -70,8 +70,8 @@ - <a href="https://github.com/beanpole135">Ken Moore</a> - <a href="https://github.com/beanpole135">Ken Moore</a> + <a href="https://github.com/beanpole135">Ken Moore</a> + <a href="https://github.com/beanpole135">Ken Moore</a> @@ -85,8 +85,8 @@ - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Otwórz w przeglądarce internetowej<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Otwórz w przeglądarce internetowej<a> -- 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') 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 611625391eec23a7101a4795ea486c7207411e6c Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 23:33:32 +0000 Subject: Translated using Weblate (l_FILEINFO@da (generated)) Currently translated at 100.0% (43 of 43 strings) --- src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts index 3ef20ee2..49d266c1 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts @@ -8,7 +8,7 @@ File Information - Filoplysninger + Filinformation @@ -124,7 +124,7 @@ Read/Write - Læs/Skriv + Læs/skriv @@ -144,7 +144,7 @@ XDG Shortcut - XDG genvej + XDG-genvej -- 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') 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 5eb7c70a81fa028ab1e2869115cf70196e74ad01 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 23:31:50 +0000 Subject: Translated using Weblate (lumina_FM@da (generated)) Currently translated at 100.0% (222 of 222 strings) --- src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src-qt5') 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 4600fd1c..5959aa92 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 @@ -6,7 +6,7 @@ Manage Bookmarks - Administrér bogmærker + Håndter bogmærker @@ -51,7 +51,7 @@ This bookmark name already exists. Please choose another. - Dette bogmærke navn findes allerede. Vælg venligst et andet navn. + Dette bogmærkenavn findes allerede. Vælg venligst et andet. @@ -127,13 +127,13 @@ Back - Forrige + Tilbage Go back to previous directory - Gå til forrige mappe + Gå tilbage til den forrige mappe @@ -170,7 +170,7 @@ SingleColumn - EnkelKolonne + Enkelkolonne @@ -466,7 +466,7 @@ Old Location: %1 New Location: %2 - Det er ikke muligt at flytte en mappe ind i sig selv. Lav venligst en kopi af mappen istedet. + Det er ikke muligt at flytte en mappe ind i sig selv. Lav venligst en kopi af mappen i stedet. Gl. lokation: %1 Ny lokation: %2 @@ -562,7 +562,7 @@ Ny lokation: %2 branch name - Grennavn + grennavn @@ -590,7 +590,7 @@ Ny lokation: %2 Shift+Left - Skift+venstre + Skift+Venstre @@ -1100,7 +1100,7 @@ Ny lokation: %2 Shift+Left - Skift+venstre + Skift+Venstre -- 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') 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 a19bbeed9090d1844f265e3d3969b89e839a0697 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 23:18:20 +0000 Subject: Translated using Weblate (l_SCREENSHOT@da (generated)) Currently translated at 100.0% (24 of 24 strings) --- src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts index 9267cde8..5fd60ba2 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts @@ -60,7 +60,7 @@ Edit - Redigér + Rediger @@ -125,7 +125,7 @@ PNG Files (*.png);;AllFiles (*) - PNG Filer (*.png);;AllFiles (*) + PNG-filer (*.png);;Alle filer (*) -- cgit From 744504c52ef40507576f3a19ca1dbae947451332 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 22:04:57 +0000 Subject: Translated using Weblate (l_TERMINAL@da (generated)) Currently translated at 100.0% (7 of 7 strings) --- src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts index 15527873..f046a686 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts @@ -6,7 +6,7 @@ Copy Selection - Kopiér markering + Kopiér valgte -- cgit From 7f509b27aba1da63db8a93b47dffe4f1c3eda4ad Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Fri, 24 Feb 2017 03:04:24 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 100.0% (310 of 310 strings) --- .../core/lumina-desktop/i18n/lumina-desktop_da.ts | 114 ++++++++++----------- 1 file changed, 57 insertions(+), 57 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index b6071010..d2cb0bee 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -58,7 +58,7 @@ Manage Applications - Håndtér Programmer + Håndtér programmer @@ -396,7 +396,7 @@ Loading User Preferences … - Indlæser brugerindstillinger … + Indlæser brugerpræferencer … @@ -431,7 +431,7 @@ Starting App: %1 - Starter Progr: %1 + Starter program: %1 @@ -497,12 +497,12 @@ Remove from Quicklaunch - Fjern fra Kvikbar + Fjern fra hurtigstart Add to Quicklaunch - Tilføj til Kvikbar + Føj til hurtigstart @@ -518,7 +518,7 @@ Quickly launch applications or open files - Hurtigt kør programmer eller åbne filer + Start hurtigt programmer eller åbne filer @@ -608,7 +608,7 @@ Leave - Forlad + Ud @@ -616,12 +616,12 @@ %1 % (Charging) - %1 % (Oplader) + %1 % (lader) %1 % (%2 Remaining) - %1 % (%2 Tilbage) + %1 % (%2 tilbage) @@ -634,7 +634,7 @@ Use System Time - Brug Systemtid + Brug systemtid @@ -675,7 +675,7 @@ Favorite Applications - Farvoritprogrammer + Favoritprogrammer @@ -723,7 +723,7 @@ Lumina Desktop - Lumina Skrivebord + Lumina-skrivebord @@ -748,7 +748,7 @@ Leave - Forlad + Ud @@ -765,7 +765,7 @@ Remove from Quicklaunch - Fjern fra kvikstart + Fjern fra hurtigstart @@ -795,12 +795,12 @@ System Volume - Systemdrev + Systemlydstyrke Launch Audio Mixer - Kør Lyd Mixer + Start lydmikser @@ -888,7 +888,7 @@ Quickly launch applications or open files - Hurtigt kør programmer eller åbne filer + Start hurtigt programmer eller åbne filer @@ -911,12 +911,12 @@ CPU Usage: - CPU brug: + CPU-forbrug: Mem Usage: - Hukommelsesbrug: + Hukommelsesforbrug: @@ -929,7 +929,7 @@ Note Files (*.note) - Note Filer (*.note) + Note-filer (*.note) @@ -949,17 +949,17 @@ Invalid Note Name: Try Again - Forkert Note Navn: Prøv Igen + Ugyldigt notenavn: Prøv igen Select a Note Name - Vælg et Notenavn + Vælg et notenavn Open Text File - Åbn Tekstfil + Åbn tekstfil @@ -1070,27 +1070,27 @@ Multimedia Files - Mediefiler + Multimediefiler Select Multimedia Files - Vælg mediefiler + Vælg multimediefiler Select Multimedia Directory - Vælg Medie Mappe + Vælg multimediemappe Enter a valid URL for a multimedia file or stream: - Indtast en korrekt URL til mediefil eller stream: + Indtast en gyldig URL til en multimediefil eller strøm: Multimedia URL - Medie URL + Multimedie-URL @@ -1135,12 +1135,12 @@ New Feed Subscription - Abonner på nyt RSS-feed + Abonner på nyt feed RSS URL - RSS URL + RSS-URL @@ -1150,7 +1150,7 @@ Add to Feeds - Tilføj til RSS-feeds + Tilføj til feeds @@ -1160,7 +1160,7 @@ Manual Sync Only - Udelukkende manuel synkronisering + Kun manuel synkronisering @@ -1170,7 +1170,7 @@ Default Sync Interval - Standard synkroniseringsinterval + Standardsynkroniseringsinterval @@ -1216,7 +1216,7 @@ Feed URL: %1 - RSS-feed URL: %1 + Feed-URL: %1 @@ -1259,7 +1259,7 @@ Preferences - Indstillinger + Præferencer @@ -1269,7 +1269,7 @@ Display - Fremvis + Skærm @@ -1307,7 +1307,7 @@ Browse Applications - Gennemse Programmer + Gennemse programmer @@ -1317,12 +1317,12 @@ Leave - Forlad + Ud Manage Applications - Håndtér Programmer + Håndtér programmer @@ -1332,12 +1332,12 @@ Configure Desktop - Indstil skrivebordsmiljø + Konfigurer skrivebord Sign Out User - Log Bruger Ud + Log bruger ud @@ -1347,22 +1347,22 @@ Preferences - Indstillinger + Præferencer Power Off System - Sluk System + Sluk system (System Performing Updates) - (System Udfører Opdateringer) + (systemet udfører opdateringer) Suspend System - Systemdvale + Sæt system i hvile @@ -1382,17 +1382,17 @@ %1% (Plugged In) - %1% (Indsat) + %1% (tilsluttet) %1% (%2 Estimated) - %1% (%2 Estimeret) + %1% (%2 sstimeret) %1% Remaining - %1% Tilbage + %1% tilbage @@ -1407,7 +1407,7 @@ System Options - Systemindstillinger + Systemvalgmuligheder @@ -1427,7 +1427,7 @@ Cancel - Annullér + Annuller @@ -1478,7 +1478,7 @@ UserWidget - Bruger Widget + Brugerwidget @@ -1489,7 +1489,7 @@ Favorite Applications - Farvoritprogrammer + Favoritprogrammer @@ -1556,7 +1556,7 @@ Desktop Preferences - Skrivebordsindstillinger + Skrivebordspræferencer @@ -1566,12 +1566,12 @@ Desktop Appearance/Plugins - Skrivebord Udseende/Plugins + Skrivebord udseende/plugins Screen Configuration - Skærm Indstillinger + Skærmkonfiguration @@ -1581,7 +1581,7 @@ About the Lumina Desktop - Om Lumina Skrivebordet + Om Lumina-skrivebordet @@ -1641,7 +1641,7 @@ Utilities - Hjælpeværktøjer + Redskaber -- cgit From 10cd5f2a0bdc08d34f46781a645f519a86670618 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 23:33:16 +0000 Subject: Translated using Weblate (lumina_INFO@da (generated)) Currently translated at 100.0% (18 of 18 strings) --- src-qt5/core/lumina-info/i18n/lumina-info_da.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-info/i18n/lumina-info_da.ts b/src-qt5/core/lumina-info/i18n/lumina-info_da.ts index 8f0d9133..894a0dc0 100644 --- a/src-qt5/core/lumina-info/i18n/lumina-info_da.ts +++ b/src-qt5/core/lumina-info/i18n/lumina-info_da.ts @@ -6,7 +6,7 @@ Lumina Desktop Information - Lumina Skrivebords Information + Lumina-skrivebordsinformation @@ -21,7 +21,7 @@ Lumina Website - Hjemmeside for Lumina + Lumina-websted @@ -31,7 +31,7 @@ Desktop Version: - Skrivebords Version: + Skrivebordsversion: @@ -51,7 +51,7 @@ View Information - Se Information + Vis information @@ -86,7 +86,7 @@ <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Åben i en web browser<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Åbn i en webbrowser<a> -- cgit From 7cf54c7a2697e571ed67b38399f823c95114e46e Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Thu, 23 Feb 2017 23:15:09 +0000 Subject: Translated using Weblate (lumina_OPEN@da (generated)) Currently translated at 100.0% (39 of 39 strings) --- src-qt5/core/lumina-open/i18n/lumina-open_da.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts index d1fe0f73..4f6d82c2 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts @@ -31,7 +31,7 @@ Find - Søg + Find @@ -46,7 +46,7 @@ Cancel - Annullér + Annuller @@ -121,7 +121,7 @@ Utilities - Værktøjer + Redskaber @@ -145,7 +145,7 @@ Audio Volume %1% - Lyd Volume %1% + Lydstyrke %1% -- cgit From d2f7a857ab551bd511c0827e846fcd83d94949b9 Mon Sep 17 00:00:00 2001 From: Paweł Date: Fri, 24 Feb 2017 13:56:20 +0000 Subject: Translated using Weblate (lumina_DESKTOP@pl (generated)) Currently translated at 100.0% (310 of 310 strings) --- .../core/lumina-desktop/i18n/lumina-desktop_pl.ts | 92 +++++++++++----------- 1 file changed, 46 insertions(+), 46 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts index 9a73dc96..806b46f3 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts @@ -231,157 +231,157 @@ Any society that would give up a little liberty to gain a little security will deserve neither and lose both. - + Any society that would give up a little liberty to gain a little security will deserve neither and lose both. Never trust a computer you can’t throw out a window. - + Never trust a computer you can’t throw out a window. Study the past if you would define the future. - + Study the past if you would define the future. The way to get started is to quit talking and begin doing. - + The way to get started is to quit talking and begin doing. Ask and it will be given to you; search, and you will find; knock and the door will be opened for you. - + Ask and it will be given to you; search, and you will find; knock and the door will be opened for you. Start where you are. Use what you have. Do what you can. - + Start where you are. Use what you have. Do what you can. A person who never made a mistake never tried anything new. - + A person who never made a mistake never tried anything new. It does not matter how slowly you go as long as you do not stop. - + It does not matter how slowly you go as long as you do not stop. Do what you can, where you are, with what you have. - + Do what you can, where you are, with what you have. Remember no one can make you feel inferior without your consent. - + Remember no one can make you feel inferior without your consent. It’s not the years in your life that count. It’s the life in your years. - + It’s not the years in your life that count. It’s the life in your years. Either write something worth reading or do something worth writing. - + Either write something worth reading or do something worth writing. The only way to do great work is to love what you do. - + The only way to do great work is to love what you do. Political correctness is tyranny with manners. - + Political correctness is tyranny with manners. Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. - + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. I find that the harder I work, the more luck I seem to have. - + I find that the harder I work, the more luck I seem to have. Do, or do not. There is no 'try'. - + Do, or do not. There is no 'try'. A mathematician is a device for turning coffee into theorems. - + A mathematician is a device for turning coffee into theorems. Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws. - + Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws. Black holes are where God divided by zero. - + Black holes are where God divided by zero. It's kind of fun to do the impossible. - + It's kind of fun to do the impossible. Knowledge speaks, but wisdom listens. - + Knowledge speaks, but wisdom listens. A witty saying proves nothing. - + A witty saying proves nothing. Success usually comes to those who are too busy to be looking for it. - + Success usually comes to those who are too busy to be looking for it. Well-timed silence hath more eloquence than speech. - + Well-timed silence hath more eloquence than speech. I have never let my schooling interfere with my education. - + I have never let my schooling interfere with my education. The best way to predict the future is to invent it. - + The best way to predict the future is to invent it. Well done is better than well said. - + Well done is better than well said. Sometimes it is not enough that we do our best; we must do what is required. - + Sometimes it is not enough that we do our best; we must do what is required. The truth is more important than the facts. - + The truth is more important than the facts. Better to remain silent and be thought a fool than to speak out and remove all doubt. - + Better to remain silent and be thought a fool than to speak out and remove all doubt. @@ -642,7 +642,7 @@ Launch Item - + Uruchom @@ -738,7 +738,7 @@ Lock Session - + Zablokuj sesję @@ -982,57 +982,57 @@ Form - Formularz + Formularz Clear Playlist - Wyczyść listę odtwarzania + Wyczyść listę odtwarzania Shuffle Playlist - Odtwarzanie losowe + Odtwarzanie losowe Add Files - Dodaj pliki + Dodaj pliki Add Directory - Dodaj katalog + Dodaj katalog Add URL - Dodaj URL + Dodaj URL Multimedia Files - Pliki multimedialne + Pliki multimedialne Select Multimedia Files - Wybierz pliki multimedialne + Wybierz pliki multimedialne Select Multimedia Directory - Wybierz katalog z multimediami + Wybierz katalog z multimediami Enter a valid URL for a multimedia file or stream: - Podaj adres URL pliku lub strumienia multimedialnego: + Podaj adres URL pliku lub strumienia multimedialnego: Multimedia URL - Adres URL multimediów + Adres URL multimediów @@ -1264,7 +1264,7 @@ Wallpaper - + Tapeta @@ -1274,7 +1274,7 @@ All Desktop Settings - + Ustawienia pulpitu -- cgit From 9364e6a4edaef2bbbbf84480ac2cb7c68c95ca90 Mon Sep 17 00:00:00 2001 From: Paweł Date: Fri, 24 Feb 2017 14:04:49 +0000 Subject: Translated using Weblate (l_TE@pl (generated)) Currently translated at 100.0% (54 of 54 strings) --- .../desktop-utils/lumina-textedit/i18n/l-te_pl.ts | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts index 914fa454..9d24336f 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts @@ -99,7 +99,7 @@ Hide the find/replace options - + Ukryj opcję szukaj/zamień @@ -241,7 +241,7 @@ Lose Unsaved Changes? - + Porzucić niezapisane zmiany? @@ -249,7 +249,10 @@ Do you want to close it anyway? %1 - + Plik posiada niezapisane dane. +Czy na pewno go zamknąć? + +%1 @@ -257,7 +260,10 @@ Do you want to close it anyway? Do you want to close the editor anyway? %1 - + Niezapisane dane. +Czy chcesz mimo to zamknąć edytor? + +%1 @@ -275,22 +281,22 @@ Do you want to close the editor anyway? Row Number: %1, Column Number: %2 - + Numier wiersza: %1, Numer kolumny: %2 The following file has been changed by some other utility. Do you want to re-load it? - + Zawartość pliku została zmieniona przez zewnętrzny program. Czy ponownie załadować plik? (Note: You will lose all currently-unsaved changes) - + (Uwaga: Utracisz wszystkie niezapisane dane) File Modified - + Plik zmodyfikowany -- 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') 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 f54f49edaf06afa7f9e09b12a30649096991ac10 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 24 Feb 2017 11:03:58 -0500 Subject: Quick fix for the "Directory" XDG desktop type detection/verification. --- src-qt5/core/libLumina/LuminaXDG.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/libLumina/LuminaXDG.cpp b/src-qt5/core/libLumina/LuminaXDG.cpp index d92285c5..38128fc7 100644 --- a/src-qt5/core/libLumina/LuminaXDG.cpp +++ b/src-qt5/core/libLumina/LuminaXDG.cpp @@ -127,9 +127,8 @@ void XDGDesktop::sync(){ else if(var=="Type" && insection){ if(val.toLower()=="application"){ type = XDGDesktop::APP; } else if(val.toLower()=="link"){ type = XDGDesktop::LINK; } - else if(val.toLower()=="dir"){ type = XDGDesktop::DIR; } + else if(val.toLower().startsWith("dir")){ type = XDGDesktop::DIR; } //older specs are "Dir", newer specs are "Directory" else{ type = XDGDesktop::BAD; } //Unknown type - //hasType = true; } } //end reading file file.clear(); //done with contents of file @@ -176,7 +175,7 @@ bool XDGDesktop::isValid(bool showAll){ //if(DEBUG && !ok){ qDebug() << " - Link with missing URL"; } break; case XDGDesktop::DIR: - ok = !path.isEmpty(); + ok = !path.isEmpty() && QFile::exists(path); //if(DEBUG && !ok){ qDebug() << " - Dir with missing path"; } break; default: -- 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') 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 e7e16599de6912251abd4cae07df553c6ac4dc64 Mon Sep 17 00:00:00 2001 From: Paweł Date: Fri, 24 Feb 2017 14:09:26 +0000 Subject: Translated using Weblate (l_SCREENSHOT@pl (generated)) Currently translated at 91.6% (22 of 24 strings) --- src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts index 9ccca97d..c2dafeda 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts @@ -45,22 +45,22 @@ Lumina Screenshot - + Zrzut ekranu Lumina Sec Delay - + sekund(y) opoźnienia Capture - + Wykonaj zrzut ekranu Edit - + Edycja -- cgit From 92a819fa17ea240eeaada027420ed1fd7b84f5e9 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 24 Feb 2017 11:23:04 -0500 Subject: Update the Lumina Desktop /media watcher to allow both directories AND files to be detected/shown. --- src-qt5/core/lumina-desktop/LDesktop.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/LDesktop.cpp b/src-qt5/core/lumina-desktop/LDesktop.cpp index 92cef4d1..73ed6d47 100644 --- a/src-qt5/core/lumina-desktop/LDesktop.cpp +++ b/src-qt5/core/lumina-desktop/LDesktop.cpp @@ -376,11 +376,11 @@ void LDesktop::UpdateDesktop(){ } //Also show anything available in the /media directory QDir media("/media"); - QStringList mediadirs = media.entryList(QDir::Dirs | QDir::NoDotAndDotDot, QDir::Name); + QStringList mediadirs = media.entryList(QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot, QDir::Name); for(int i=0; iLoadItems(plugins, filelist); } -- cgit From b28fb3902d2435f1e60dfed2196f90378f56bcbd Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 24 Feb 2017 13:11:35 -0500 Subject: Make sure the tooltip on the desktop icons is properly set for .desktop entries (comment field). --- .../lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp index c8ecf2c8..1d957817 100644 --- a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp +++ b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp @@ -38,6 +38,7 @@ void AppLauncherPlugin::loadButton(){ int icosize = this->height()-4 - 2.2*button->fontMetrics().height(); button->setFixedSize( this->width()-4, this->height()-4); button->setIconSize( QSize(icosize,icosize) ); + button->setToolTip(""); QString txt; if(path.endsWith(".desktop") && ok){ XDGDesktop file(path); @@ -50,6 +51,7 @@ void AppLauncherPlugin::loadButton(){ }else{ button->setWhatsThis(file.filePath); button->setIcon( QIcon(LXDG::findIcon(file.icon,"system-run").pixmap(QSize(icosize,icosize)).scaledToHeight(icosize, Qt::SmoothTransformation) ) ); + if(!file.comment.isEmpty()){button->setWhatsThis(file.comment); } txt = file.name; if(!watcher->files().isEmpty()){ watcher->removePaths(watcher->files()); } watcher->addPath(file.filePath); //make sure to update this shortcut if the file changes @@ -90,7 +92,7 @@ void AppLauncherPlugin::loadButton(){ button->setIcon( QIcon(QPixmap::fromImage(img)) ); } //Now adjust the visible text as necessary based on font/grid sizing - button->setToolTip(txt); + if(button->tooltip().isEmpty()){ button->setToolTip(txt); } //Double check that the visual icon size matches the requested size - otherwise upscale the icon if(button->fontMetrics().width(txt) > (button->width()-OUTMARGIN) ){ //Text too long, try to show it on two lines -- 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') 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 108d553e6a515fe1739b93a00788a8f401a5f15c Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Fri, 24 Feb 2017 16:50:31 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 100.0% (310 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index d2cb0bee..b17243a4 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -901,7 +901,7 @@ Summary - Oversigt + Sammendrag -- cgit From fca827cd967bfcb4fdc95f22ed94a6529ec6d5b4 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Fri, 24 Feb 2017 13:15:15 -0500 Subject: Oops - fix a typo in the tooltip update. --- .../lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp index 1d957817..76b27787 100644 --- a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp +++ b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp @@ -92,7 +92,7 @@ void AppLauncherPlugin::loadButton(){ button->setIcon( QIcon(QPixmap::fromImage(img)) ); } //Now adjust the visible text as necessary based on font/grid sizing - if(button->tooltip().isEmpty()){ button->setToolTip(txt); } + if(button->toolTip().isEmpty()){ button->setToolTip(txt); } //Double check that the visual icon size matches the requested size - otherwise upscale the icon if(button->fontMetrics().width(txt) > (button->width()-OUTMARGIN) ){ //Text too long, try to show it on two lines -- cgit From 9888aaf8fa56c3d70fa721a27b47d7dd2c3f5f1e Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 18:19:42 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 100.0% (310 of 310 strings) --- src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index b17243a4..1d042180 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -35,7 +35,7 @@ Click to Set - Klik for at vælge + Klik for at sætte @@ -123,7 +123,7 @@ Wine - + Wine @@ -598,7 +598,7 @@ Wine - + Wine @@ -733,7 +733,7 @@ Terminal - + Terminal @@ -782,7 +782,7 @@ System Dashboard - Systemets instrumentpanel + Systemets instrumentbræt @@ -1387,7 +1387,7 @@ %1% (%2 Estimated) - %1% (%2 sstimeret) + %1% (%2 estimeret) @@ -1646,7 +1646,7 @@ Wine - + Wine -- cgit From 5920c7ddf24f9175cedaee645185f3880f3a5ebf Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 18:12:18 +0000 Subject: Translated using Weblate (l_TE@da (generated)) Currently translated at 100.0% (54 of 54 strings) --- src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index b320d709..f9a5fdde 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -124,7 +124,7 @@ toolBar - værktøjslinje + værktøjsbjælke -- 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') 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 From 49bb40362e535c6962139d2f9781c7b2c6de29fb Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 18:02:46 +0000 Subject: Translated using Weblate (l_FILEINFO@da (generated)) Currently translated at 100.0% (43 of 43 strings) --- src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts index 49d266c1..526d90a9 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts @@ -154,7 +154,7 @@ Binary - Binær fil + Binær @@ -179,7 +179,7 @@ Select a binary - Vælg en binær fil + Vælg en binær -- cgit From ba7a57079a47e9bca2fc35ea379fd0c7db125ed2 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 18:07:08 +0000 Subject: Translated using Weblate (l_SCREENSHOT@da (generated)) Currently translated at 100.0% (24 of 24 strings) --- src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts index 5fd60ba2..ec870f78 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts @@ -19,7 +19,7 @@ Take Screenshot - Gem skærmbillede + Tag skærmbillede -- cgit From adc2e0f1612e9e144333ed2eb5ceac5dc8dfaae6 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Feb 2017 07:09:02 -0500 Subject: Oops - Fix a typo in the desktop applauncher plugin: The comment field should have been put into the tooltip - not replace the "whatsThis" value. This will fix the desktop autmounter entries getting launched appropriately again. --- .../lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp index 76b27787..14599c5d 100644 --- a/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp +++ b/src-qt5/core/lumina-desktop/desktop-plugins/applauncher/AppLauncherPlugin.cpp @@ -51,7 +51,7 @@ void AppLauncherPlugin::loadButton(){ }else{ button->setWhatsThis(file.filePath); button->setIcon( QIcon(LXDG::findIcon(file.icon,"system-run").pixmap(QSize(icosize,icosize)).scaledToHeight(icosize, Qt::SmoothTransformation) ) ); - if(!file.comment.isEmpty()){button->setWhatsThis(file.comment); } + if(!file.comment.isEmpty()){button->setToolTip(file.comment); } txt = file.name; if(!watcher->files().isEmpty()){ watcher->removePaths(watcher->files()); } watcher->addPath(file.filePath); //make sure to update this shortcut if the file changes -- cgit From d8e3d247feb3836aeabc95d1bdc00d49e21fa44f Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 20:48:17 +0000 Subject: Translated using Weblate (l_TE@da (generated)) Currently translated at 100.0% (54 of 54 strings) --- src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index f9a5fdde..034fab65 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -291,7 +291,7 @@ Vil du lukke redigeringsprogrammet alligevel? (Note: You will lose all currently-unsaved changes) - (bemærk: du vil miste alle nuværende ugemte ændringer) + (Bemærk: Du vil miste alle nuværende ugemte ændringer) -- cgit From 5181c4d1964b9823cfe760e374868e02619e8003 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 20:45:36 +0000 Subject: Translated using Weblate (lumina_DESKTOP@da (generated)) Currently translated at 100.0% (310 of 310 strings) --- .../core/lumina-desktop/i18n/lumina-desktop_da.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index 1d042180..4683020c 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -58,7 +58,7 @@ Manage Applications - Håndtér programmer + Håndter programmer @@ -146,7 +146,7 @@ Starting the Lumina Desktop... - Starter Lumina-skrivebordet... + Starter Lumina-skrivebordet ... @@ -647,27 +647,27 @@ Start Moving Item - Begynd at flytte element + Begynd at flytte post Start Resizing Item - Begynd at ændre størrelse på element + Begynd at ændre størrelse på post Increase Item Sizes - Forøg element størrelse + Forøg poststørrelser Decrease Item Sizes - Formindsk element størrelse + Formindsk poststørrelser Remove Item - Fjern element + Fjern post @@ -949,12 +949,12 @@ Invalid Note Name: Try Again - Ugyldigt notenavn: Prøv igen + Ugyldigt notesnavn: Prøv igen Select a Note Name - Vælg et notenavn + Vælg et notesnavn @@ -1322,7 +1322,7 @@ Manage Applications - Håndtér programmer + Håndter programmer -- cgit From 6955109a819df480f2837fafd74ebda823dbd6dc Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sun, 26 Feb 2017 02:25:38 +0000 Subject: Translated using Weblate (l_FILEINFO@da (generated)) Currently translated at 100.0% (43 of 43 strings) --- src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts index 526d90a9..8efbb459 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_da.ts @@ -59,7 +59,7 @@ Edit Shortcut - Redigér genvej + Rediger genvej @@ -99,7 +99,7 @@ Options - Indstillinger + Valgmuligheder @@ -119,7 +119,7 @@ ---Calculating--- - ---Beregner--- + ---Udregner--- @@ -221,7 +221,7 @@ Calculating... - Beregner... + Udregner ... -- cgit From 1f623338b9dae961ffc4482e755a8d67d78e40cb Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 20:32:37 +0000 Subject: Translated using Weblate (lumina_OPEN@da (generated)) Currently translated at 100.0% (39 of 39 strings) --- src-qt5/core/lumina-open/i18n/lumina-open_da.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts index 4f6d82c2..672db6fc 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts @@ -6,7 +6,7 @@ Open With... - Åbn med... + Åbn med ... @@ -151,7 +151,7 @@ Screen Brightness %1% - Skærm-lysstyrke %1% + Skærmlysstyrke %1% -- cgit From f1967d2a24f18e65b3827dde97ebce51127095f8 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 20:16:04 +0000 Subject: Translated using Weblate (lumina_FM@da (generated)) Currently translated at 100.0% (222 of 222 strings) --- .../desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 28 +++++++++++----------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'src-qt5') 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 5959aa92..30f65ecc 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 @@ -175,7 +175,7 @@ Single column view - Enkelkolonne visning + Enkelkolonnevisning @@ -185,7 +185,7 @@ Dual Column View - Dobbeltkolonne visning + Dobbeltkolonnevisning @@ -240,7 +240,7 @@ Loading... - Indlæser... + Indlæser ... @@ -267,7 +267,7 @@ Create... - Opret... + Opret ... @@ -287,7 +287,7 @@ Launch... - Start... + Start ... @@ -307,7 +307,7 @@ View Files... - Vis filer... + Vis filer ... @@ -342,12 +342,12 @@ Open With... - Åbn med... + Åbn med ... Rename... - Omdøb... + Omdøb ... @@ -466,10 +466,10 @@ Old Location: %1 New Location: %2 - Det er ikke muligt at flytte en mappe ind i sig selv. Lav venligst en kopi af mappen i stedet. + Det er ikke muligt at flytte en mappe ind i sig selv. Opret venligst en kopi af mappen i stedet. -Gl. lokation: %1 -Ny lokation: %2 +Gammel placering: %1 +Ny placering: %2 @@ -640,7 +640,7 @@ Ny lokation: %2 Search Directory... - Søg i bibliotek... + Søg i bibliotek ... @@ -800,7 +800,7 @@ Ny lokation: %2 Rename... - Omdøb... + Omdøb ... @@ -1017,7 +1017,7 @@ Ny lokation: %2 Evaluating... - Evaluerer... + Evaluerer ... -- cgit From 3f3b711d30066f9c541da94c961b9803b17f21b9 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sun, 26 Feb 2017 02:25:41 +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 | 32 +++++++++++----------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'src-qt5') 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 add87210..edce850a 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 + Rediger farveskema @@ -159,7 +159,7 @@ Auto-hide Panel - Auto-skjul Panel + Auto-skjul panel @@ -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. + Alternativ startmenu 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. + Alternativ startmenu som fokusere på start af programmer. @@ -391,7 +391,7 @@ Pin an application shortcut directly to the panel - Fastgør en programgenvej direkte til panalet + Fastgør en programgenvej direkte til panelet @@ -520,7 +520,7 @@ List the open, minimized, active, and urgent application windows - Vis de åbne, minimerede, aktive og vigtige programvinduer + Vis de åbne, minimerede, aktive og haster programvinduer @@ -611,7 +611,7 @@ Secondary Color - Sekundfær farve + Sekundær farve @@ -831,7 +831,7 @@ General Options - Generelle instillinger + Generelle valgmuligheder @@ -1035,7 +1035,7 @@ Application Binaries (*) - Programbinærer (*) + Programbinære (*) @@ -1068,7 +1068,7 @@ Disable Compositing Manager (session restart required) - Deaktivér kompositingshåndtering (kræver genstart af session) + Deaktivér kompositionshåndtering (kræver genstart af session) @@ -1459,7 +1459,7 @@ Search for.... - Søg efter.... + Søg efter .... @@ -1608,12 +1608,12 @@ Manage desktop app links - Håndtér skrivebordsprogramlinks + Håndter skrivebordsprogramlinks Show application crash data - Vis programnebrudsdata + Vis programnedbrudsdata @@ -1760,7 +1760,7 @@ Valid Date Codes: - Gyldig datokodeks: + Gyldige datokoder: @@ -1979,7 +1979,7 @@ Screen Resolution: - Skræmopløsning: + Skærmopløsning: @@ -2076,7 +2076,7 @@ Find Background Image Directory - Find baggrudsbilledmappe + Find baggrundsbilledmappe -- cgit From e4db98aafa8c86d76a199e34c14f7f75736ae184 Mon Sep 17 00:00:00 2001 From: scootergrisen Date: Sat, 25 Feb 2017 20:16:18 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src-qt5') 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 2c750640..dc0c39d0 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 @@ -44,7 +44,7 @@ Search For... - Søg efter... + Søg efter ... -- cgit From b3a573041b4b42828afc2ae3afaca599051d48bc Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Feb 2017 10:50:32 -0500 Subject: Re-sync the translation files with the latest from the Lumina source files. --- .../lumina-config/i18n/lumina-config_af.ts | 171 +++++------ .../lumina-config/i18n/lumina-config_ar.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_az.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_bg.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_bn.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_bs.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_ca.ts | 321 +++++++++------------ .../lumina-config/i18n/lumina-config_cs.ts | 157 ++++------ .../lumina-config/i18n/lumina-config_cy.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_da.ts | 157 ++++------ .../lumina-config/i18n/lumina-config_de.ts | 157 ++++------ .../lumina-config/i18n/lumina-config_el.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_en_GB.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_en_ZA.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_es.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_et.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_eu.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_fa.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_fi.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_fr.ts | 221 ++++++-------- .../lumina-config/i18n/lumina-config_fr_CA.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_gl.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_he.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_hi.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_hr.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_hu.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_id.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_is.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_it.ts | 195 +++++-------- .../lumina-config/i18n/lumina-config_ja.ts | 162 ++++------- .../lumina-config/i18n/lumina-config_ka.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_ko.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_lt.ts | 159 ++++------ .../lumina-config/i18n/lumina-config_lv.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_mk.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_mn.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_ms.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_mt.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_nb.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_nl.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_pa.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_pl.ts | 157 ++++------ .../lumina-config/i18n/lumina-config_pt.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_pt_BR.ts | 157 ++++------ .../lumina-config/i18n/lumina-config_ro.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_ru.ts | 157 ++++------ .../lumina-config/i18n/lumina-config_sk.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_sl.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_sr.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_sv.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_sw.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_ta.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_tg.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_th.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_tr.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_uk.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_uz.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_vi.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_zh_CN.ts | 141 ++++----- .../lumina-config/i18n/lumina-config_zh_HK.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_zh_TW.ts | 137 ++++----- .../lumina-config/i18n/lumina-config_zu.ts | 137 ++++----- .../lumina-search/i18n/lumina-search_fr.ts | 2 +- .../core/lumina-desktop/i18n/lumina-desktop_af.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_ar.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_az.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_bg.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_bn.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_bs.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_ca.ts | 138 ++++----- .../core/lumina-desktop/i18n/lumina-desktop_cs.ts | 50 ++-- .../core/lumina-desktop/i18n/lumina-desktop_cy.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_da.ts | 52 ++-- .../core/lumina-desktop/i18n/lumina-desktop_de.ts | 52 ++-- .../core/lumina-desktop/i18n/lumina-desktop_el.ts | 40 +-- .../lumina-desktop/i18n/lumina-desktop_en_GB.ts | 40 +-- .../lumina-desktop/i18n/lumina-desktop_en_ZA.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_es.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_et.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_eu.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_fa.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_fi.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_fr.ts | 72 ++--- .../lumina-desktop/i18n/lumina-desktop_fr_CA.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_gl.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_he.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_hi.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_hr.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_hu.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_id.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_is.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_it.ts | 64 ++-- .../core/lumina-desktop/i18n/lumina-desktop_ja.ts | 56 ++-- .../core/lumina-desktop/i18n/lumina-desktop_ka.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_ko.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_lt.ts | 50 ++-- .../core/lumina-desktop/i18n/lumina-desktop_lv.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_mk.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_mn.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_ms.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_mt.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_nb.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_nl.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_pa.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_pl.ts | 56 ++-- .../core/lumina-desktop/i18n/lumina-desktop_pt.ts | 40 +-- .../lumina-desktop/i18n/lumina-desktop_pt_BR.ts | 52 ++-- .../core/lumina-desktop/i18n/lumina-desktop_ro.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_ru.ts | 50 ++-- .../core/lumina-desktop/i18n/lumina-desktop_sk.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_sl.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_sr.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_sv.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_sw.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_ta.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_tg.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_th.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_tr.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_uk.ts | 42 +-- .../core/lumina-desktop/i18n/lumina-desktop_uz.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_vi.ts | 40 +-- .../lumina-desktop/i18n/lumina-desktop_zh_CN.ts | 40 +-- .../lumina-desktop/i18n/lumina-desktop_zh_HK.ts | 40 +-- .../lumina-desktop/i18n/lumina-desktop_zh_TW.ts | 40 +-- .../core/lumina-desktop/i18n/lumina-desktop_zu.ts | 40 +-- src-qt5/core/lumina-info/i18n/lumina-info_da.ts | 8 +- src-qt5/core/lumina-info/i18n/lumina-info_pl.ts | 8 +- src-qt5/core/lumina-open/i18n/lumina-open_af.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_ar.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_az.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_bg.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_bn.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_bs.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_ca.ts | 45 +-- src-qt5/core/lumina-open/i18n/lumina-open_cs.ts | 25 +- src-qt5/core/lumina-open/i18n/lumina-open_cy.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_da.ts | 27 +- src-qt5/core/lumina-open/i18n/lumina-open_de.ts | 25 +- src-qt5/core/lumina-open/i18n/lumina-open_el.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_en_GB.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_en_ZA.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_es.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_et.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_eu.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_fa.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_fi.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_fr.ts | 31 +- src-qt5/core/lumina-open/i18n/lumina-open_fr_CA.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_gl.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_he.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_hi.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_hr.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_hu.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_id.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_is.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_it.ts | 29 +- src-qt5/core/lumina-open/i18n/lumina-open_ja.ts | 27 +- src-qt5/core/lumina-open/i18n/lumina-open_ka.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_ko.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_lt.ts | 25 +- src-qt5/core/lumina-open/i18n/lumina-open_lv.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_mk.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_mn.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_ms.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_mt.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_nb.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_nl.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_pa.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_pl.ts | 25 +- src-qt5/core/lumina-open/i18n/lumina-open_pt.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_pt_BR.ts | 25 +- src-qt5/core/lumina-open/i18n/lumina-open_ro.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_ru.ts | 25 +- src-qt5/core/lumina-open/i18n/lumina-open_sk.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_sl.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_sr.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_sv.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_sw.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_ta.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_tg.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_th.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_tr.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_uk.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_uz.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_vi.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_zh_CN.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_zh_HK.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_zh_TW.ts | 21 +- src-qt5/core/lumina-open/i18n/lumina-open_zu.ts | 21 +- .../lumina-archiver/i18n/l-archiver_af.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ar.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_az.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_bg.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_bn.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_bs.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ca.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_cs.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_cy.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_da.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_de.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_el.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_en_GB.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_en_ZA.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_es.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_et.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_eu.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_fa.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_fi.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_fr.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_fr_CA.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_gl.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_he.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_hi.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_hr.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_hu.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_id.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_is.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_it.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ja.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ka.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ko.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_lt.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_lv.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_mk.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_mn.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ms.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_mt.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_nb.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_nl.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_pa.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_pl.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_pt.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_pt_BR.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ro.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ru.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_sk.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_sl.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_sr.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_sv.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_sw.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_ta.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_tg.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_th.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_tr.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_uk.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_uz.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_vi.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_zh_CN.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_zh_HK.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_zh_TW.ts | 182 +++++++----- .../lumina-archiver/i18n/l-archiver_zu.ts | 182 +++++++----- .../lumina-fileinfo/i18n/l-fileinfo_fr.ts | 4 +- .../lumina-fileinfo/i18n/l-fileinfo_it.ts | 4 +- .../desktop-utils/lumina-fm/i18n/lumina-fm_af.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_ar.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_az.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_bg.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_bn.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_bs.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts | 144 ++++----- .../desktop-utils/lumina-fm/i18n/lumina-fm_cs.ts | 90 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_cy.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_da.ts | 92 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_de.ts | 94 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_el.ts | 84 +++--- .../lumina-fm/i18n/lumina-fm_en_GB.ts | 84 +++--- .../lumina-fm/i18n/lumina-fm_en_ZA.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_es.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_et.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_eu.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_fa.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_fi.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_fr.ts | 84 +++--- .../lumina-fm/i18n/lumina-fm_fr_CA.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_gl.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_he.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_hi.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_hr.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_hu.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_id.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_is.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_it.ts | 104 +++---- .../desktop-utils/lumina-fm/i18n/lumina-fm_ja.ts | 98 +++---- .../desktop-utils/lumina-fm/i18n/lumina-fm_ka.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_ko.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_lt.ts | 92 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_lv.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_mk.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_mn.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_ms.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_mt.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_nb.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_nl.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_pa.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_pl.ts | 92 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_pt.ts | 84 +++--- .../lumina-fm/i18n/lumina-fm_pt_BR.ts | 92 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_ro.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_ru.ts | 92 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_sk.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_sl.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_sr.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_sv.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_sw.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_ta.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_tg.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_th.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_tr.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_uk.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_uz.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_vi.ts | 84 +++--- .../lumina-fm/i18n/lumina-fm_zh_CN.ts | 84 +++--- .../lumina-fm/i18n/lumina-fm_zh_HK.ts | 84 +++--- .../lumina-fm/i18n/lumina-fm_zh_TW.ts | 84 +++--- .../desktop-utils/lumina-fm/i18n/lumina-fm_zu.ts | 84 +++--- .../lumina-screenshot/i18n/l-screenshot_af.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_ar.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_az.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_bg.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_bn.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_bs.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_ca.ts | 139 ++++++--- .../lumina-screenshot/i18n/l-screenshot_cs.ts | 133 +++++++-- .../lumina-screenshot/i18n/l-screenshot_cy.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_da.ts | 133 +++++++-- .../lumina-screenshot/i18n/l-screenshot_de.ts | 133 +++++++-- .../lumina-screenshot/i18n/l-screenshot_el.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_en_GB.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_en_ZA.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_es.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_et.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_eu.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_fa.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_fi.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_fr.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_fr_CA.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_gl.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_he.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_hi.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_hr.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_hu.ts | 133 +++++++-- .../lumina-screenshot/i18n/l-screenshot_id.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_is.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_it.ts | 135 ++++++--- .../lumina-screenshot/i18n/l-screenshot_ja.ts | 137 ++++++--- .../lumina-screenshot/i18n/l-screenshot_ka.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_ko.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_lt.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_lv.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_mk.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_mn.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_ms.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_mt.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_nb.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_nl.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_pa.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_pl.ts | 133 +++++++-- .../lumina-screenshot/i18n/l-screenshot_pt.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_pt_BR.ts | 133 +++++++-- .../lumina-screenshot/i18n/l-screenshot_ro.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_ru.ts | 133 +++++++-- .../lumina-screenshot/i18n/l-screenshot_sk.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_sl.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_sr.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_sv.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_sw.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_ta.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_tg.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_th.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_tr.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_uk.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_uz.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_vi.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_zh_CN.ts | 129 +++++++-- .../lumina-screenshot/i18n/l-screenshot_zh_HK.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_zh_TW.ts | 127 ++++++-- .../lumina-screenshot/i18n/l-screenshot_zu.ts | 127 ++++++-- .../lumina-terminal/i18n/l-terminal_af.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ar.ts | 4 +- .../lumina-terminal/i18n/l-terminal_az.ts | 4 +- .../lumina-terminal/i18n/l-terminal_bg.ts | 4 +- .../lumina-terminal/i18n/l-terminal_bn.ts | 4 +- .../lumina-terminal/i18n/l-terminal_bs.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ca.ts | 4 +- .../lumina-terminal/i18n/l-terminal_cs.ts | 4 +- .../lumina-terminal/i18n/l-terminal_cy.ts | 4 +- .../lumina-terminal/i18n/l-terminal_da.ts | 4 +- .../lumina-terminal/i18n/l-terminal_de.ts | 4 +- .../lumina-terminal/i18n/l-terminal_el.ts | 4 +- .../lumina-terminal/i18n/l-terminal_en_GB.ts | 4 +- .../lumina-terminal/i18n/l-terminal_en_ZA.ts | 4 +- .../lumina-terminal/i18n/l-terminal_es.ts | 4 +- .../lumina-terminal/i18n/l-terminal_et.ts | 4 +- .../lumina-terminal/i18n/l-terminal_eu.ts | 4 +- .../lumina-terminal/i18n/l-terminal_fa.ts | 4 +- .../lumina-terminal/i18n/l-terminal_fi.ts | 4 +- .../lumina-terminal/i18n/l-terminal_fr.ts | 4 +- .../lumina-terminal/i18n/l-terminal_fr_CA.ts | 4 +- .../lumina-terminal/i18n/l-terminal_gl.ts | 4 +- .../lumina-terminal/i18n/l-terminal_he.ts | 4 +- .../lumina-terminal/i18n/l-terminal_hi.ts | 4 +- .../lumina-terminal/i18n/l-terminal_hr.ts | 4 +- .../lumina-terminal/i18n/l-terminal_hu.ts | 4 +- .../lumina-terminal/i18n/l-terminal_id.ts | 4 +- .../lumina-terminal/i18n/l-terminal_is.ts | 4 +- .../lumina-terminal/i18n/l-terminal_it.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ja.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ka.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ko.ts | 4 +- .../lumina-terminal/i18n/l-terminal_lt.ts | 4 +- .../lumina-terminal/i18n/l-terminal_lv.ts | 4 +- .../lumina-terminal/i18n/l-terminal_mk.ts | 4 +- .../lumina-terminal/i18n/l-terminal_mn.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ms.ts | 4 +- .../lumina-terminal/i18n/l-terminal_mt.ts | 4 +- .../lumina-terminal/i18n/l-terminal_nb.ts | 4 +- .../lumina-terminal/i18n/l-terminal_nl.ts | 4 +- .../lumina-terminal/i18n/l-terminal_pa.ts | 4 +- .../lumina-terminal/i18n/l-terminal_pl.ts | 4 +- .../lumina-terminal/i18n/l-terminal_pt.ts | 4 +- .../lumina-terminal/i18n/l-terminal_pt_BR.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ro.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ru.ts | 4 +- .../lumina-terminal/i18n/l-terminal_sk.ts | 4 +- .../lumina-terminal/i18n/l-terminal_sl.ts | 4 +- .../lumina-terminal/i18n/l-terminal_sr.ts | 4 +- .../lumina-terminal/i18n/l-terminal_sv.ts | 4 +- .../lumina-terminal/i18n/l-terminal_sw.ts | 4 +- .../lumina-terminal/i18n/l-terminal_ta.ts | 4 +- .../lumina-terminal/i18n/l-terminal_tg.ts | 4 +- .../lumina-terminal/i18n/l-terminal_th.ts | 4 +- .../lumina-terminal/i18n/l-terminal_tr.ts | 4 +- .../lumina-terminal/i18n/l-terminal_uk.ts | 4 +- .../lumina-terminal/i18n/l-terminal_uz.ts | 4 +- .../lumina-terminal/i18n/l-terminal_vi.ts | 4 +- .../lumina-terminal/i18n/l-terminal_zh_CN.ts | 4 +- .../lumina-terminal/i18n/l-terminal_zh_HK.ts | 4 +- .../lumina-terminal/i18n/l-terminal_zh_TW.ts | 4 +- .../lumina-terminal/i18n/l-terminal_zu.ts | 4 +- .../desktop-utils/lumina-textedit/i18n/l-te_af.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ar.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_az.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_bg.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_bn.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_bs.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ca.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_cs.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_cy.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_da.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_de.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_el.ts | 103 ++++--- .../lumina-textedit/i18n/l-te_en_GB.ts | 103 ++++--- .../lumina-textedit/i18n/l-te_en_ZA.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_es.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_et.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_eu.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_fa.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_fi.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_fr.ts | 113 ++++---- .../lumina-textedit/i18n/l-te_fr_CA.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_gl.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_he.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_hi.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_hr.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_hu.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_id.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_is.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_it.ts | 105 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ja.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ka.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ko.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_lt.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_lv.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_mk.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_mn.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ms.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_mt.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_nb.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_nl.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_pa.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_pl.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_pt.ts | 103 ++++--- .../lumina-textedit/i18n/l-te_pt_BR.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ro.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ru.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_sk.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_sl.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_sr.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_sv.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_sw.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_ta.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_tg.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_th.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_tr.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_uk.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_uz.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_vi.ts | 103 ++++--- .../lumina-textedit/i18n/l-te_zh_CN.ts | 103 ++++--- .../lumina-textedit/i18n/l-te_zh_HK.ts | 103 ++++--- .../lumina-textedit/i18n/l-te_zh_TW.ts | 103 ++++--- .../desktop-utils/lumina-textedit/i18n/l-te_zu.ts | 103 ++++--- 501 files changed, 24462 insertions(+), 19999 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_af.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_af.ts index 613e3e8c..f916475b 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_af.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_af.ts @@ -8,6 +8,11 @@ Select Application Selecionar Aplicativo + + + Search for.... + + ColorDialog @@ -340,7 +345,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. Iniciar menu alternativo com foco nos arquivos do usuário, diretórios e favoritos. @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -999,7 +994,7 @@ Form - + Modelo @@ -1062,7 +1057,7 @@ Form - + Modelo @@ -1076,7 +1071,7 @@ - Compositor Settings + Window Effects @@ -1085,7 +1080,7 @@ Form - + Modelo @@ -1164,31 +1159,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1252,9 +1243,9 @@ - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key @@ -1298,7 +1289,7 @@ Form - + Modelo @@ -1387,7 +1378,7 @@ Form - + Modelo @@ -1410,7 +1401,7 @@ Form - + Modelo @@ -1428,7 +1419,7 @@ Form - + Modelo @@ -1441,7 +1432,7 @@ - + Desktop Settings @@ -1451,7 +1442,7 @@ Form - + Modelo @@ -1459,61 +1450,33 @@ - + Interface Configuration - + Appearance Aparência - + Desktop Defaults - + User Settings - - Desktop Settings - - - - - page_mouse - - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1522,7 +1485,7 @@ Form - + Modelo @@ -1580,7 +1543,7 @@ Form - + Modelo @@ -1680,142 +1643,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes @@ -1825,7 +1788,7 @@ Form - + Modelo @@ -1930,7 +1893,7 @@ Form - + Modelo @@ -2027,7 +1990,7 @@ Center - + Centro diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ar.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ar.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ar.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ar.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_az.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_az.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_az.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_az.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_bg.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_bg.ts index 23576d81..edd59953 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_bg.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_bg.ts @@ -8,6 +8,11 @@ Select Application Избор на програма + + + Search for.... + Търсене на... + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ Избор на монитор/работен плот за настройка - + Unsaved Changes Незапазени промени - + This page currently has unsaved changes, do you wish to save them now? Тази страница съдържа незапазени промени. Искате ли да ги запазите сега? @@ -1075,8 +1070,8 @@ - Compositor Settings - Настройки на съставителя + Window Effects + Ефекти на прозорците @@ -1163,31 +1158,27 @@ Стандартни програми - - - - - + Click to Set Щракнете за да зададете - + %1 (%2) %1 (%2) - + Select Binary Избор на двоичен файл - + Invalid Binary Невалиден двоичен файл - + The selected binary is not executable! Избраният двоичен файл не е изпълним! @@ -1442,7 +1433,7 @@ - + Desktop Settings Настройки на работния плот @@ -1460,62 +1451,34 @@ Търсене на... - + Interface Configuration Настройка на интерфейса - + Appearance Изглед - + Desktop Defaults - + User Settings Потребителски настройки - - Desktop Settings - Настройки на работния плот - - - - page_mouse - - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + Настройки на работния плот @@ -1681,142 +1644,142 @@ Първо деня, после часа - + Desktop Settings Настройки на работния плот - + Select an image Избор на изображение - + Images Изображения - + Reset User Image Нулиране на изображението на потребителя - + Would you like to reset the user image to the system default? Искате ли да нулирате изображението на потребителя до стандартното за системата? - + Valid Time Codes: Валидни кодове за час: - + %1: Hour without leading zero (1) %1: Час без водеща нула (1) - + %1: Hour with leading zero (01) %1: Час с водеща нула (01) - + %1: Minutes without leading zero (2) %1: Минути без водеща нула (2) - + %1: Minutes with leading zero (02) %1: Минути с водеща нула (02) - + %1: Seconds without leading zero (3) %1: Секунди без водеща нула (3) - + %1: Seconds with leading zero (03) %1: Секунди с водеща нула (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: СП/ПП (12-часа) часовник (главни или малки букви) - + %1: Timezone %1: Часова зона - + Time Codes Часови кодове - + Valid Date Codes: Валидни кодове за дата: - + %1: Numeric day without a leading zero (1) %1: Числов ден без водеща нула (1) - + %1: Numeric day with leading zero (01) %1: Числов ден с водеща нула (01) - + %1: Day as abbreviation (localized) %1: Ден като съкращение (локализирано) - + %1: Day as full name (localized) %1: Ден с пълното име (локализирано) - + %1: Numeric month without leading zero (2) %1: Числов месец без водеща нула (2) - + %1: Numeric month with leading zero (02) %1: Числов месец с водеща нула (02) - + %1: Month as abbreviation (localized) %1: Месец като съкращение (локализирано) - + %1: Month as full name (localized) %1: Месец с пълното име (локализирано) - + %1: Year as 2-digit number (15) %1: Година като двуцифрено число (15) - + %1: Year as 4-digit number (2015) %1: Година като четири цифрено число (2015) - + Text may be contained within single-quotes to ignore replacements Текстът може да бъде ограден в единични кавички за да се игнорират заместванията - + Date Codes Кодове за дата diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_bn.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_bn.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_bn.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_bn.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_bs.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_bs.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_bs.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_bs.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ca.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ca.ts index f218d072..429931de 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ca.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ca.ts @@ -8,6 +8,11 @@ Select Application Seleccioneu una aplicació + + + Search for.... + Cerca... + ColorDialog @@ -72,7 +77,7 @@ This color scheme already exists. Overwrite it? Aquest esquema de colors ja existeix. -Voleu sobreescriure'l? +Voleu sobreescriure'l? @@ -184,7 +189,7 @@ Voleu sobreescriure'l? Top/Left - A dalt a l'esquerra + A dalt a l'esquerra @@ -234,12 +239,12 @@ Voleu sobreescriure'l? Desktop Bar - Barra de l'escriptori + Barra de l'escriptori This provides shortcuts to everything in the desktop folder - allowing easy access to all your favorite files/applications. - Això proporciona dreceres a tot el que hi ha dins la carpeta de l'escriptori. Permet un accés fàcil a tots els vostres fitxers / aplicacions. + Això proporciona dreceres a tot el que hi ha dins la carpeta de l'escriptori. Permet un accés fàcil a tots els vostres fitxers / aplicacions. @@ -264,7 +269,7 @@ Voleu sobreescriure'l? Keep track of your battery status. - Feu un seguiment de l'estat de la bateria. + Feu un seguiment de l'estat de la bateria. @@ -274,7 +279,7 @@ Voleu sobreescriure'l? View the current time and date. - Mostra l'hora i la data actuals. + Mostra l'hora i la data actuals. @@ -284,7 +289,7 @@ Voleu sobreescriure'l? View or change system settings (audio volume, screen brightness, battery life, virtual desktops). - Vegeu o canvieu els paràmetres del sistema (volum de l'àudio, la brillantor, la vida de la bateria, els escriptoris virtuals). + Vegeu o canvieu els paràmetres del sistema (volum de l'àudio, la brillantor, la vida de la bateria, els escriptoris virtuals). @@ -305,17 +310,17 @@ Voleu sobreescriure'l? Display area for dockable system applications - Mostra l'àrea per a aplicacions de sistema acoblables + Mostra l'àrea per a aplicacions de sistema acoblables Hide all open windows and show the desktop - Amaga totes les finestres i mostra l'escriptori + Amaga totes les finestres i mostra l'escriptori Start Menu - Menú d'inici + Menú d'inici @@ -325,33 +330,33 @@ Voleu sobreescriure'l? Display a calendar on the desktop - Mostra un calendari a l'escriptori + Mostra un calendari a l'escriptori Application Launcher - Llançador d'aplicacions + Llançador d'aplicacions User Menu - Menú de l'usuari + Menú de l'usuari - Start menu alternative focusing on the user's files, directories, and favorites. - Inicia un menú alternatiu centrat en els fitxers, directoris i favorits de l'usuari. + Start menu alternative focusing on the user's files, directories, and favorites. + Inicia un menú alternatiu centrat en els fitxers, directoris i favorits de l'usuari. Application Menu - Menú d'aplicació + Menú d'aplicació Start menu alternative which focuses on launching applications. - Inicia un menú alternatiu centrat en el llançament d'aplicacions. + Inicia un menú alternatiu centrat en el llançament d'aplicacions. @@ -366,42 +371,42 @@ Voleu sobreescriure'l? Workspace Switcher - Canviador d'espais de treball + Canviador d'espais de treball View and control any running application windows (group similar windows under a single button). - Mostra i controla qualsevol finestra d'aplicació en execució (agrupa les finestres similars en un sol botó). + Mostra i controla qualsevol finestra d'aplicació en execució (agrupa les finestres similars en un sol botó). View and control any running application windows (every individual window has a button) - Mostra i controla qualsevol finestra d'aplicació en execució (cada finestra té un botó). + Mostra i controla qualsevol finestra d'aplicació en execució (cada finestra té un botó). Show Desktop - Mostra l'escriptori + Mostra l'escriptori Unified system access and application launch menu. - Menú unificat de llançador d'aplicacions i d'accés al sistema. + Menú unificat de llançador d'aplicacions i d'accés al sistema. Pin an application shortcut directly to the panel - Enganxa la drecera d'una aplicació directament al plafó + Enganxa la drecera d'una aplicació directament al plafó Desktop button for launching an application - Botó d'escriptori per iniciar una aplicació + Botó d'escriptori per iniciar una aplicació Desktop Icons View - Vista d'icones a l'escriptori + Vista d'icones a l'escriptori @@ -411,19 +416,19 @@ Voleu sobreescriure'l? Keep simple text notes on your desktop - Mantingueu notes de text senzilles a l'escriptori + Mantingueu notes de text senzilles a l'escriptori Audio Player - Reproductor d'àudio + Reproductor d'àudio Play through lists of audio files - Reprodueix llistes de fitxers d'àudio + Reprodueix llistes de fitxers d'àudio @@ -433,7 +438,7 @@ Voleu sobreescriure'l? Keep track of system statistics such as CPU/Memory usage and CPU temperatures. - Control de les estadístiques del sistema com ara l'ús de la CPU i la mèmòria i les temperatures de la CPU. + Control de les estadístiques del sistema com ara l'ús de la CPU i la mèmòria i les temperatures de la CPU. @@ -484,7 +489,7 @@ Voleu sobreescriure'l? Show the desktop settings menu. - Mostra el menú de paràmetres de l'escriptori. + Mostra el menú de paràmetres de l'escriptori. @@ -505,7 +510,7 @@ Voleu sobreescriure'l? Configurable area for automatically showing desktop icons - Àrea configurable per mostrar automàticament icones d'escriptori + Àrea configurable per mostrar automàticament icones d'escriptori @@ -520,13 +525,13 @@ Voleu sobreescriure'l? List the open, minimized, active, and urgent application windows - Llista les finestres d'aplicació obertes, minimitzades, actives i urgents. + Llista les finestres d'aplicació obertes, minimitzades, actives i urgents. Run an external script to generate a user defined menu - Executa un script extern per generar un menú definit per l'usuari. + Executa un script extern per generar un menú definit per l'usuari. @@ -536,7 +541,7 @@ Voleu sobreescriure'l? Lock the current desktop session - Bloqueja la sessió d'escriptori actual + Bloqueja la sessió d'escriptori actual @@ -586,7 +591,7 @@ Voleu sobreescriure'l? Main background color for widgets that list or display collections of items. - Color de fons principal per a ginys que llisten o mostres col·leccions d'ítems. + Color de fons principal per a ginys que llisten o mostres col·leccions d'ítems. @@ -631,7 +636,7 @@ Voleu sobreescriure'l? Accent Color - Color d'accentuació + Color d'accentuació @@ -641,7 +646,7 @@ Voleu sobreescriure'l? Accent Color (Disabled) - Color d'accentuació (inhabilitat) + Color d'accentuació (inhabilitat) @@ -701,7 +706,7 @@ Voleu sobreescriure'l? Startup Settings - Paràmetres de l'inici + Paràmetres de l'inici @@ -756,7 +761,7 @@ Voleu sobreescriure'l? Change window settings and appearances - Canvia els paràmetres i l'aparença de les finestres + Canvia els paràmetres i l'aparença de les finestres @@ -773,25 +778,15 @@ Voleu sobreescriure'l? Menu Menú - - - Input Device Settings - Paràmetres dels dispositius d'entrada - - - - Adjust keyboard and mouse devices - Configuració del teclat i del ratolí - Desktop Plugins - Connectors de l'escriptori + Connectors de l'escriptori Change what icons or tools are embedded on the desktop - Canvia les icones o les eines encastades a l'escriptori + Canvia les icones o les eines encastades a l'escriptori @@ -811,7 +806,7 @@ Voleu sobreescriure'l? Change what options are shown on the desktop context menu - Canvia les opcions que es mostren al menú contextual de l'escriptori + Canvia les opcions que es mostren al menú contextual de l'escriptori @@ -836,12 +831,12 @@ Voleu sobreescriure'l? User Settings - Paràmetres de l'usuari + Paràmetres de l'usuari Change basic user settings such as time/date formats - Canvieu els paràmetres d'usuari bàsics com ara el format de l'hora i la data + Canvieu els paràmetres d'usuari bàsics com ara el format de l'hora i la data @@ -890,7 +885,7 @@ Voleu sobreescriure'l? Select an icon file - Seleccioneu un fitxer d'icona + Seleccioneu un fitxer d'icona @@ -937,7 +932,7 @@ Voleu sobreescriure'l? This theme already exists. Overwrite it? Aquest tema ja existeix. -Voleu sobreescriure'l? +Voleu sobreescriure'l? @@ -950,7 +945,7 @@ Voleu sobreescriure'l? toolBar - Barra d'eines + Barra d'eines @@ -985,12 +980,12 @@ Voleu sobreescriure'l? Seleccioneu el monitor / escriptori per configurar - + Unsaved Changes Canvis sense desar - + This page currently has unsaved changes, do you wish to save them now? Aquesta pàgina té canvis sense desar. Els voleu desar ara? @@ -1005,7 +1000,7 @@ Voleu sobreescriure'l? Add New Startup Service - Afegeix un servei nou a l'inici + Afegeix un servei nou a l'inici @@ -1025,7 +1020,7 @@ Voleu sobreescriure'l? Startup Services - Serveis de l'inici + Serveis de l'inici @@ -1035,7 +1030,7 @@ Voleu sobreescriure'l? Application Binaries (*) - Binaris d'aplicacions (*) + Binaris d'aplicacions (*) @@ -1077,8 +1072,8 @@ Voleu sobreescriure'l? - Compositor Settings - Paràmetres del compositor + Window Effects + Efectes de les finestres @@ -1121,7 +1116,7 @@ Voleu sobreescriure'l? Set App - Estableix l'aplicació + Estableix l'aplicació @@ -1165,31 +1160,27 @@ Voleu sobreescriure'l? Aplicacions per defecte - - - - - + Click to Set Cliqueu-hi per establir-ho - + %1 (%2) %1 (%2) - + Select Binary Seleccioneu el binari - + Invalid Binary Binari no vàlid - + The selected binary is not executable! El binari seleccionat no és executable! @@ -1244,7 +1235,7 @@ Voleu sobreescriure'l? Note: Current key bindings need to be cleared and saved before they can be re-used. - Nota: les associacions de tecles actuals s'han de netejar i desar abans que es puguin reutilitzar. + Nota: les associacions de tecles actuals s'han de netejar i desar abans que es puguin reutilitzar. @@ -1253,12 +1244,12 @@ Voleu sobreescriure'l? - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": tecla Alt -"Mod4": tecla Windows/Mac -"Control": tecla Ctrl + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": tecla Alt +"Mod4": tecla Windows/Mac +"Control": tecla Ctrl @@ -1268,12 +1259,12 @@ Voleu sobreescriure'l? Audio Volume Up - Volum de l'àudio amunt + Volum de l'àudio amunt Audio Volume Down - Volum de l'àudio avall + Volum de l'àudio avall @@ -1316,7 +1307,7 @@ Voleu sobreescriure'l? Number of Workspaces - Nombre d'espais de treball + Nombre d'espais de treball @@ -1400,12 +1391,12 @@ Voleu sobreescriure'l? Display Desktop Folder Contents - Mostra els continguts de la carpeta de l'escriptori + Mostra els continguts de la carpeta de l'escriptori Desktop Settings - Paràmetres de l'escriptori + Paràmetres de l'escriptori @@ -1423,7 +1414,7 @@ Voleu sobreescriure'l? Desktop Settings - Paràmetres de l'escriptori + Paràmetres de l'escriptori @@ -1444,9 +1435,9 @@ Voleu sobreescriure'l? Importa - + Desktop Settings - Paràmetres de l'escriptori + Paràmetres de l'escriptori @@ -1462,62 +1453,34 @@ Voleu sobreescriure'l? Cerca... - + Interface Configuration Configuració de la interfície - + Appearance Aparença - + Desktop Defaults - Valors per defecte de l'escriptori + Valors per defecte de l'escriptori - + User Settings - Paràmetres de l'usuari - - - - Desktop Settings - Paràmetres de l'escriptori - - - - page_mouse - - - Form - Formulari + Paràmetres de l'usuari - - Input Device Settings - Paràmetres dels dispositius d'entrada + + System Settings + - - Mouse #%1 - Ratolí #%1 - - - - Keyboard #%1 - Teclat #%1 - - - - Extension Device #%1 - Dispositiu d'extensió #%1 - - - - Master Device - Dispositiu mestre + + Desktop Settings + Paràmetres de l'escriptori @@ -1570,7 +1533,7 @@ Voleu sobreescriure'l? Desktop Settings - Paràmetres de l'escriptori + Paràmetres de l'escriptori @@ -1588,7 +1551,7 @@ Voleu sobreescriure'l? Enable numlock on startup - Habilita el bloqueig numèric a l'inici + Habilita el bloqueig numèric a l'inici @@ -1608,22 +1571,22 @@ Voleu sobreescriure'l? Manage desktop app links - Gestió dels enllaços de les aplicacions d'escriptori + Gestió dels enllaços de les aplicacions d'escriptori Show application crash data - Mostra les dades de la fallada d'aplicacions + Mostra les dades de la fallada d'aplicacions Change User Icon - Canvia la icona de l'usuari + Canvia la icona de l'usuari Time Format: - Format de l'hora: + Format de l'hora: @@ -1650,7 +1613,7 @@ Voleu sobreescriure'l? Reset Desktop Settings - Restableix els paràmetres de l'escriptori + Restableix els paràmetres de l'escriptori @@ -1675,150 +1638,150 @@ Voleu sobreescriure'l? Time first then Date - Primer l'hora, després la data + Primer l'hora, després la data Date first then Time - Primer la data, després l'hora + Primer la data, després l'hora - + Desktop Settings - Paràmetres de l'escriptori + Paràmetres de l'escriptori - + Select an image Seleccioneu una imatge - + Images Imatges - + Reset User Image - Restableix la imatge de l'usuari + Restableix la imatge de l'usuari - + Would you like to reset the user image to the system default? - Voleu restablir la imatge de l'usuari a la predeterminada del sistema? + Voleu restablir la imatge de l'usuari a la predeterminada del sistema? - + Valid Time Codes: - Codis d'hora vàlids: + Codis d'hora vàlids: - + %1: Hour without leading zero (1) %1: Hora sense el zero davant (1) - + %1: Hour with leading zero (01) %1: Hora amb el zero davant (01) - + %1: Minutes without leading zero (2) %1: Minuts sense el zero davant (2) - + %1: Minutes with leading zero (02) %1: Minuts amb el zero davant (02) - + %1: Seconds without leading zero (3) %1: Segons sense el zero davant (3) - + %1: Seconds with leading zero (03) %1: Segons amb el zero davant (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: Rellotge amb AM/PM (12 hores) (en majúscules o minúscules) - + %1: Timezone %1: Zona horària - + Time Codes - Codis d'hora + Codis d'hora - + Valid Date Codes: - Codis d'hora vàlids: + Codis d'hora vàlids: - + %1: Numeric day without a leading zero (1) %1: Dia numèric sense el zero davant (1) - + %1: Numeric day with leading zero (01) %1: Dia numèric amb el zero davant (01) - + %1: Day as abbreviation (localized) %1: Dia com a abreviatura (localitzat) - + %1: Day as full name (localized) %1: Dia amb el nom complet (localitzat) - + %1: Numeric month without leading zero (2) %1: Mes numèric sense el zero davant (2) - + %1: Numeric month with leading zero (02) %1: Mes numèric amb el zero davant (02) - + %1: Month as abbreviation (localized) %1: Mes com a abreviatura (localitzat) - + %1: Month as full name (localized) %1: Mes amb el nom sencer (localitzat) - + %1: Year as 2-digit number (15) %1: Any com a número binari (15) - + %1: Year as 4-digit number (2015) %1: Any com a número de quatre xifres (2015) - + Text may be contained within single-quotes to ignore replacements El text pot encabir-se entre cometes simples per ignorar substitucions - + Date Codes Codis de la data @@ -1833,7 +1796,7 @@ Voleu sobreescriure'l? Desktop Theme - Tema de l'escriptori + Tema de l'escriptori @@ -1879,7 +1842,7 @@ Voleu sobreescriure'l? Icon Pack: - Paquet d'icones: + Paquet d'icones: @@ -1889,7 +1852,7 @@ Voleu sobreescriure'l? Application Themes - Temes de l'aplicació + Temes de l'aplicació @@ -1938,7 +1901,7 @@ Voleu sobreescriure'l? Single Background - Fons d'escriptori únic + Fons d'escriptori únic @@ -2035,7 +1998,7 @@ Voleu sobreescriure'l? Top Left - Dalt a l'esquerra + Dalt a l'esquerra @@ -2045,7 +2008,7 @@ Voleu sobreescriure'l? Bottom Left - A baix a l'esquerra + A baix a l'esquerra @@ -2076,7 +2039,7 @@ Voleu sobreescriure'l? Find Background Image Directory - Troba el directori d'imatges de fons + Troba el directori d'imatges de fons diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_cs.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_cs.ts index 4f3df454..03894438 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_cs.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_cs.ts @@ -8,6 +8,11 @@ Select Application Vybrat aplikaci + + + Search for.... + Hledat... + ColorDialog @@ -340,7 +345,7 @@ Přepsat je? - Start menu alternative focusing on the user's files, directories, and favorites. + Start menu alternative focusing on the user's files, directories, and favorites. Náhradní spouštěcí nabídka se zaměřením na uživatelovy soubory, adresáře a záložky (oblíbené). @@ -773,16 +778,6 @@ Přepsat je? Menu Nabídka - - - Input Device Settings - Nastavení vstupního zařízení - - - - Adjust keyboard and mouse devices - Přizpůsobit zařízení klávesnice a myši - Desktop Plugins @@ -985,12 +980,12 @@ Přepsat jej? Vybrat obrazovku/pracovní plochu k nastavení - + Unsaved Changes Neuložené změny - + This page currently has unsaved changes, do you wish to save them now? Tato strana má teď neuložené změny. Chcete je nyní uložit? @@ -1077,8 +1072,8 @@ Přepsat jej? - Compositor Settings - Nastavení sazeče + Window Effects + Okenní efekty @@ -1165,31 +1160,27 @@ Přepsat jej? Výchozí aplikace - - - - - + Click to Set Klepnutím nastavit - + %1 (%2) %1 (%2) - + Select Binary Vybrat spustitelný soubor - + Invalid Binary Neplatný spustitelný soubor - + The selected binary is not executable! Vybraný spustitelný soubor není spustitelný! @@ -1253,12 +1244,12 @@ Přepsat jej? - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": Alt key -"Mod4": klávesa Windows/Mac -"Control": klávesa Ctrl + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": Alt key +"Mod4": klávesa Windows/Mac +"Control": klávesa Ctrl @@ -1444,7 +1435,7 @@ Přepsat jej? Zavedení - + Desktop Settings Nastavení pracovní plochy @@ -1462,62 +1453,34 @@ Přepsat jej? Hledat... - + Interface Configuration Nastavení rozhraní - + Appearance Vzhled - + Desktop Defaults Výchozí nastavení plochy - + User Settings Uživatelská nastavení - - Desktop Settings - Nastavení pracovní plochy - - - - page_mouse - - - Form - Formulář - - - - Input Device Settings - Nastavení vstupního zařízení - - - - Mouse #%1 - Myš #%1 - - - - Keyboard #%1 - Klávesnice #%1 - - - - Extension Device #%1 - Rozšiřující zařízení #%1 + + System Settings + - - Master Device - Hlavní zařízení + + Desktop Settings + Nastavení pracovní plochy @@ -1683,142 +1646,142 @@ Přepsat jej? Nejprve datum, potom čas - + Desktop Settings Nastavení pracovní plochy - + Select an image Vyberte obrázek - + Images Obrázky - + Reset User Image Nastavit obrázek uživatele znovu - + Would you like to reset the user image to the system default? Chcete nastavit obrázek uživatele na výchozí obrázek systému? - + Valid Time Codes: Platné časové kódy: - + %1: Hour without leading zero (1) %1: Hodina jako číslo bez nuly na začátku (1) - + %1: Hour with leading zero (01) %1: Hodina jako číslo s nulou na začátku (01) - + %1: Minutes without leading zero (2) %1: Minuta jako číslo bez nuly na začátku (2) - + %1: Minutes with leading zero (02) %1: Minuty jako čísla s nulou na začátku (02) - + %1: Seconds without leading zero (3) %1: sekundy jako čísla bez nuly na začátku (3) - + %1: Seconds with leading zero (03) %1: sekundy jako čísla s nulou na začátku (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-hodinové) hodiny (velká nebo malá písmena) - + %1: Timezone %1: Časové pásmo - + Time Codes Časové kódy - + Valid Date Codes: Platné kódy data: - + %1: Numeric day without a leading zero (1) %1: Den jako číslo bez nuly na začátku (1) - + %1: Numeric day with leading zero (01) %1: Den jako číslo s nulou na začátku (01) - + %1: Day as abbreviation (localized) %1: Den jako zkratka (lokalizovaná) - + %1: Day as full name (localized) %1: Den jako plný název (lokalizovaný) - + %1: Numeric month without leading zero (2) %1: Číselný měsíc bez nuly na začátku (2) - + %1: Numeric month with leading zero (02) %1: Číselný měsíc s nulou na začátku (02) - + %1: Month as abbreviation (localized) %1: Měsíc jako zkratka (lokalizovaná) - + %1: Month as full name (localized) %1: Měsíc jako plný název (lokalizovaný) - + %1: Year as 2-digit number (15) %1: Rok jako dvojmístné číslo (15) - + %1: Year as 4-digit number (2015) %1: Rok jako čtyřmístné číslo (2015) - + Text may be contained within single-quotes to ignore replacements Text musí být v jednoduchých závorkách, aby se přehlížela nahrazení - + Date Codes Kódy dat diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_cy.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_cy.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_cy.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_cy.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes 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 edce850a..3b4e76ff 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 @@ -8,6 +8,11 @@ Select Application Vælg program + + + Search for.... + Søg efter .... + ColorDialog @@ -340,7 +345,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. Alternativ startmenu som fokusere på brugerens filer, mapper og favoritter. @@ -773,16 +778,6 @@ Menu Menu - - - Input Device Settings - Inputenhedsindstillinger - - - - Adjust keyboard and mouse devices - Juster tastatur- og museenheder - Desktop Plugins @@ -985,12 +980,12 @@ 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? @@ -1077,8 +1072,8 @@ - Compositor Settings - Kompositorindstillinger + Window Effects + Vindueseffekter @@ -1165,31 +1160,27 @@ Standardprogrammer - - - - - + Click to Set Klik for at sætte - + %1 (%2) %1 (%2) - + Select Binary Vælg binær - + Invalid Binary Ugyldig binær - + The selected binary is not executable! Den valgte binær er ikke eksekverbar! @@ -1253,12 +1244,12 @@ - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": Alt-tast -"Mod4": Windows-/Mac-tast -"Control": Ctrl-tast + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": Alt-tast +"Mod4": Windows-/Mac-tast +"Control": Ctrl-tast @@ -1444,7 +1435,7 @@ Importér - + Desktop Settings Skrivebordsindstillinger @@ -1462,62 +1453,34 @@ Søg efter .... - + Interface Configuration Brugerfladekonfiguration - + Appearance Udseende - + Desktop Defaults Skrivebordsstandarder - + User Settings Brugerindstillinger - - Desktop Settings - Skrivebordsindstillinger - - - - page_mouse - - - Form - Formular - - - - Input Device Settings - Inputenhedsindstillinger - - - - Mouse #%1 - Mus nummer %1 - - - - Keyboard #%1 - Tastatur nummer %1 - - - - Extension Device #%1 - Udvidelsesenhed nummer %1 + + System Settings + - - Master Device - Master-enhed + + Desktop Settings + Skrivebordsindstillinger @@ -1683,142 +1646,142 @@ Først dato, så klokkeslæt - + Desktop Settings Skrivebordsindstillinger - + Select an image Vælg et billede - + Images Billeder - + Reset User Image Nulstil brugerbillede - + Would you like to reset the user image to the system default? Vil du nulstille brugerbilledet til systemstandarden? - + Valid Time Codes: 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: Gyldige datokoder: - + %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 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 9d145f55..5ae3f986 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 @@ -8,6 +8,11 @@ Select Application Anwendung auswählen + + + Search for.... + Nach ... suchen + ColorDialog @@ -340,7 +345,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. @@ -773,16 +778,6 @@ Menu Menü - - - Input Device Settings - Eingabegeräteeinstellungen - - - - Adjust keyboard and mouse devices - Tastatur und Mausgeräte anpassen - Desktop Plugins @@ -985,12 +980,12 @@ Monitor/Arbeitsfläche zum Konfigurieren auswählen - + Unsaved Changes Ungespeicherte Änderungen - + This page currently has unsaved changes, do you wish to save them now? Diese Seite enthält ungespeicherte Änderungen, möchten Sie diese jetzt speichern? @@ -1077,8 +1072,8 @@ - Compositor Settings - Compositor-Einstellungen + Window Effects + Fenstereffekte @@ -1165,31 +1160,27 @@ Vorgabe-Anwendungen - - - - - + Click to Set Zum Festlegen klicken - + %1 (%2) %1 (%2) - + Select Binary Programmdatei auswählen - + Invalid Binary Ungültige Programmdatei - + The selected binary is not executable! Die ausgewählte Programmdatei ist nicht ausführbar! @@ -1253,12 +1244,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 @@ -1444,7 +1435,7 @@ Import - + Desktop Settings Arbeitsflächen-Einstellungen @@ -1462,62 +1453,34 @@ Nach ... suchen - + Interface Configuration Oberflächenkonfiguration - + Appearance Erscheinungsbild - + Desktop Defaults Arbeitsflächen-Standardeinstellungen - + User Settings Benutzereinstellungen - - Desktop Settings - Arbeitsflächeneinstellungen - - - - page_mouse - - - Form - Formular - - - - Input Device Settings - Eingabegeräteeinstellungen - - - - Mouse #%1 - Maus #%1 - - - - Keyboard #%1 - Tastatur #%1 - - - - Extension Device #%1 - Erweiterungsgerät #%1 + + System Settings + - - Master Device - Hauptgerät + + Desktop Settings + Arbeitsflächeneinstellungen @@ -1683,142 +1646,142 @@ Datum zuerst, dann Zeit - + Desktop Settings Arbeitsflächen-Einstellungen - + Select an image Bild auswählen - + Images Bilder - + Reset User Image Benutzerbild zurücksetzen - + Would you like to reset the user image to the system default? Möchten Sie das Benutzerbild auf den Systemstandard zurücksetzen? - + Valid Time Codes: Gültige Zeitcodes: - + %1: Hour without leading zero (1) %1: Stunde ohne führende Null (1) - + %1: Hour with leading zero (01) %1: Stunde mit führender Null (0) - + %1: Minutes without leading zero (2) %1: Minuten ohne führende Null (2) - + %1: Minutes with leading zero (02) %1: Minuten mit führender Null (02) - + %1: Seconds without leading zero (3) %1: Sekunden ohne führende Null (3) - + %1: Seconds with leading zero (03) %1: Sekunden mit führender Null (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-Stunden-)Uhr (Groß- oder Kleinschreibung) - + %1: Timezone %1: Zeitzone - + Time Codes Zeitcodes - + Valid Date Codes: Gültige Datumscodes: - + %1: Numeric day without a leading zero (1) %1: Numerischer Tag ohne führende Null (1) - + %1: Numeric day with leading zero (01) %1: Numerischer Tag mit führender Null (01) - + %1: Day as abbreviation (localized) %1: Tag als Abkürzung (lokalisiert) - + %1: Day as full name (localized) %1: Tag als vollständiger Name (lokalisiert) - + %1: Numeric month without leading zero (2) %1: Numerischer Monat ohne führende Null (2) - + %1: Numeric month with leading zero (02) %1: Numerischer Monat mit führender Null (02) - + %1: Month as abbreviation (localized) %1: Monat als Abkürzung (lokalisiert) - + %1: Month as full name (localized) %1: Monat als vollständiger Name (lokalisiert) - + %1: Year as 2-digit number (15) %1: Jahr als zweistellige Zahl (15) - + %1: Year as 4-digit number (2015) %1: Jahr als vierstellige Zahl (2015) - + Text may be contained within single-quotes to ignore replacements Text muss in Hochkommas gesetzt werden, um Ersetzungen zu ignorieren - + Date Codes Datumscodes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_el.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_el.ts index 40673611..89b8674a 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_el.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_el.ts @@ -8,6 +8,11 @@ Select Application Επιλογή Προγράμματος + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1076,7 +1071,7 @@ - Compositor Settings + Window Effects @@ -1164,31 +1159,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1441,7 +1432,7 @@ - + Desktop Settings @@ -1459,61 +1450,33 @@ - + Interface Configuration - + Appearance Εμφάνιση - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - Μορφή - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1680,142 +1643,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_en_GB.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_en_GB.ts index 2a3f6af8..8688e75b 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_en_GB.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_en_GB.ts @@ -8,6 +8,11 @@ Select Application Select Application + + + Search for.... + Search for.... + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ Select monitor/desktop to configure - + Unsaved Changes Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? This page currently has unsaved changes, do you wish to save them now? @@ -1077,8 +1072,8 @@ - Compositor Settings - Compositor Settings + Window Effects + Window Effects @@ -1165,31 +1160,27 @@ Default Applications - - - - - + Click to Set Click to Set - + %1 (%2) %1 (%2) - + Select Binary Select Binary - + Invalid Binary Invalid Binary - + The selected binary is not executable! The selected binary is not executable! @@ -1444,7 +1435,7 @@ - + Desktop Settings Desktop Settings @@ -1462,62 +1453,34 @@ Search for.... - + Interface Configuration Interface Configuration - + Appearance Appearance - + Desktop Defaults - + User Settings User Settings - - Desktop Settings - Desktop Settings - - - - page_mouse - - - Form - Form - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + Desktop Settings @@ -1683,142 +1646,142 @@ Date first then Time - + Desktop Settings Desktop Settings - + Select an image Select an image - + Images Images - + Reset User Image Reset User Image - + Would you like to reset the user image to the system default? Would you like to reset the user image to the system default? - + Valid Time Codes: Valid Time Codes: - + %1: Hour without leading zero (1) %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone %1: Timezone - + Time Codes Time Codes - + Valid Date Codes: Valid Date Codes: - + %1: Numeric day without a leading zero (1) %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) %1: Day as abbreviation (localised) - + %1: Day as full name (localized) %1: Day as full name (localised) - + %1: Numeric month without leading zero (2) %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) %1: Month as abbreviation (localised) - + %1: Month as full name (localized) %1: Month as full name (localised) - + %1: Year as 2-digit number (15) %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements Text may be contained within single-quotes to ignore replacements - + Date Codes Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_en_ZA.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_en_ZA.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_en_ZA.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_en_ZA.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_es.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_es.ts index df892ab8..7d949476 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_es.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_es.ts @@ -8,6 +8,11 @@ Select Application Seleccionar Aplicación + + + Search for.... + Buscar… + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ Sobrescribirlo? Seleccionar monitor/escritorio para configurar - + Unsaved Changes Cambios no Guardados - + This page currently has unsaved changes, do you wish to save them now? Esta página tiene actualmente cambios sin guardar, gusta guardarlos ahora? @@ -1077,8 +1072,8 @@ Sobrescribirlo? - Compositor Settings - Preferencias del Compositor + Window Effects + Efectos de la Ventana @@ -1165,31 +1160,27 @@ Sobrescribirlo? Aplicaciones Predeterminadas - - - - - + Click to Set Presione para Aplicar - + %1 (%2) %1 (%2) - + Select Binary Seleccionar Binario - + Invalid Binary Binario Inválido - + The selected binary is not executable! El binario seleccionado no es ejecutable! @@ -1444,7 +1435,7 @@ Sobrescribirlo? - + Desktop Settings Preferencias del Escritorio @@ -1462,62 +1453,34 @@ Sobrescribirlo? Buscar… - + Interface Configuration Configuración de Interfaz - + Appearance Apariencia - + Desktop Defaults - + User Settings Preferencias de Usuario - - Desktop Settings - Preferencias del Escritorio - - - - page_mouse - - - Form - Formulario - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + Preferencias del Escritorio @@ -1683,142 +1646,142 @@ Sobrescribirlo? Fecha primero, luego Hora - + Desktop Settings Preferencias del Escritorio - + Select an image Seleccionar una imágen - + Images Imágenes - + Reset User Image Restablecer Imágen de Usuario - + Would you like to reset the user image to the system default? Quiere restablecer la imágen de usuario a la predeterminada del sistema? - + Valid Time Codes: Zonas Horarias Válidas: - + %1: Hour without leading zero (1) %1: Hora sin cero inicial (1) - + %1: Hour with leading zero (01) %1: Hora con cero inicial (01) - + %1: Minutes without leading zero (2) %1: Minutos sin cero inicial (2) - + %1: Minutes with leading zero (02) %1: Minutos con cero inicial (02) - + %1: Seconds without leading zero (3) %1: Segundos sin cero inicial (3) - + %1: Seconds with leading zero (03) %1: Segundos con cero inicial (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM reloj (12 horas) (mayúsculas o minúsculas) - + %1: Timezone %1: Zona Horaria - + Time Codes Zonas Horarias - + Valid Date Codes: Códigos de Fecha Válidos: - + %1: Numeric day without a leading zero (1) %1: Día numérico sin cero inicial (1) - + %1: Numeric day with leading zero (01) %1: Día numérico con cero inicial (01) - + %1: Day as abbreviation (localized) %1: Día abreviado (localizado) - + %1: Day as full name (localized) %1: Día con nombre completo (localizado) - + %1: Numeric month without leading zero (2) %1: Mes numérico sin cero inicial (2) - + %1: Numeric month with leading zero (02) %1: Mes numérico con cero inicial (02) - + %1: Month as abbreviation (localized) %1: Mes abreviado(localizado) - + %1: Month as full name (localized) %1: Mes con nombre completo (localizado) - + %1: Year as 2-digit number (15) %1: Año como número de 2 dígitos (15) - + %1: Year as 4-digit number (2015) %1: Año como número de 4 dígitos (2015) - + Text may be contained within single-quotes to ignore replacements El texto debe estar encerrado en comillas simpler para ignorar reemplazos - + Date Codes Códigos de Fecha diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_et.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_et.ts index 78c73e4f..13433e1c 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_et.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_et.ts @@ -8,6 +8,11 @@ Select Application Vali rakendus + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1077,7 +1072,7 @@ - Compositor Settings + Window Effects @@ -1165,31 +1160,27 @@ - - - - - + Click to Set Klõpsa määramiseks - + %1 (%2) %1 (%2) - + Select Binary Vali käivitatav fail - + Invalid Binary Vigane käivitatav fail - + The selected binary is not executable! Valitud fail ei ole käivitatav! @@ -1442,7 +1433,7 @@ - + Desktop Settings @@ -1460,61 +1451,33 @@ - + Interface Configuration Liidese seadistus - + Appearance Välimus - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1681,142 +1644,142 @@ Enne kuupäev, siis kellaaeg - + Desktop Settings - + Select an image Vali pilt - + Images Pildid - + Reset User Image Taasta kasutaja pilt - + Would you like to reset the user image to the system default? Kas soovid taastada kasutaja pildi vaikimisi pildile? - + Valid Time Codes: Lubatud ajakoodid: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_eu.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_eu.ts index 50cd77ff..1e5dde2d 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_eu.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_eu.ts @@ -8,6 +8,11 @@ Select Application Aplikazioa hautatu + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Gainidatzi? Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ Gainidatzi? - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1076,7 +1071,7 @@ Gainidatzi? - Compositor Settings + Window Effects @@ -1164,31 +1159,27 @@ Gainidatzi? - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1441,7 +1432,7 @@ Gainidatzi? - + Desktop Settings @@ -1459,61 +1450,33 @@ Gainidatzi? - + Interface Configuration Interfazearen konfigurazioa - + Appearance Itxura - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1680,142 +1643,142 @@ Gainidatzi? - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_fa.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_fa.ts index c20ae7e7..2f6878c7 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_fa.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_fa.ts @@ -8,6 +8,11 @@ Select Application کاربست برگزین + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1076,7 +1071,7 @@ - Compositor Settings + Window Effects @@ -1164,31 +1159,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1441,7 +1432,7 @@ - + Desktop Settings @@ -1459,61 +1450,33 @@ - + Interface Configuration - + Appearance نما - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - ریخت - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1680,142 +1643,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_fi.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_fi.ts index 19752b33..74c76915 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_fi.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_fi.ts @@ -8,6 +8,11 @@ Select Application Valitse sovellus + + + Search for.... + Etsi… + ColorDialog @@ -773,16 +778,6 @@ Korvataanko se? Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ Korvataanko se? Valitse asetettava näyttö tai työpöytä - + Unsaved Changes Tallentamattomia muutoksia - + This page currently has unsaved changes, do you wish to save them now? Sivulla on yhä tallentamattomia muutoksia. Haluatko tallentaa ne nyt? @@ -1077,8 +1072,8 @@ Korvataanko se? - Compositor Settings - Koostamisasetukset + Window Effects + Ikkunatehosteet @@ -1165,31 +1160,27 @@ Korvataanko se? Oletussovellukset - - - - - + Click to Set Aseta napsauttamalla - + %1 (%2) %1 (%2) - + Select Binary Valitse ohjelmatiedosto - + Invalid Binary Kelvoton ohjelmatiedosto - + The selected binary is not executable! Valittu tiedosto ei ole suoritettava ohjelma! @@ -1444,7 +1435,7 @@ Korvataanko se? - + Desktop Settings Työpöytäasetukset @@ -1462,62 +1453,34 @@ Korvataanko se? Etsi… - + Interface Configuration Käyttöliittymäasetukset - + Appearance Ulkoasu - + Desktop Defaults - + User Settings Käyttäjän asetukset - - Desktop Settings - Työpöytäasetukset - - - - page_mouse - - - Form - Lomake - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + Työpöytäasetukset @@ -1683,142 +1646,142 @@ Korvataanko se? Ensin päiväys, sitten aika - + Desktop Settings Työpöytäasetukset - + Select an image Valitse kuva - + Images Kuvat - + Reset User Image Poista käyttäjän kuva - + Would you like to reset the user image to the system default? Haluatko palauttaa käyttäjän kuvan järjestelmän oletukseksi? - + Valid Time Codes: Kelvolliset aikakoodit: - + %1: Hour without leading zero (1) %1: Tunti etunollatta (1) - + %1: Hour with leading zero (01) %1: Tunti etunollalla (01) - + %1: Minutes without leading zero (2) %1: Minuutit etunollatta (2) - + %1: Minutes with leading zero (02) %1: Minuutit etunollalla (02) - + %1: Seconds without leading zero (3) %1: Sekunnit etunollatta (3) - + %1: Seconds with leading zero (03) %1: Sekunnit etunollalla (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: ap/ip (12-tuntinen kello joko pien- tai suuraakkosin) - + %1: Timezone %1: Aikavyöhyke - + Time Codes Aikakoodit - + Valid Date Codes: Kelvolliset päiväyskoodit: - + %1: Numeric day without a leading zero (1) %1: Päivä lukuna etunollatta (1) - + %1: Numeric day with leading zero (01) %1: Päivä lukuna etunollalla (01) - + %1: Day as abbreviation (localized) %1: Päivän kotoistettu lyhenne - + %1: Day as full name (localized) %1: Päivän kotoistettu koko nimi - + %1: Numeric month without leading zero (2) %1: Päivä lukuna etunollatta (2) - + %1: Numeric month with leading zero (02) %1: Päivä lukuna etunollalla (02) - + %1: Month as abbreviation (localized) %1: Kuukauden kotoistettu lyhenne - + %1: Month as full name (localized) %1: Kuukauden kotoistettu koko nimi - + %1: Year as 2-digit number (15) %1: Vuosi kaksinumeroisena lukuna (15) - + %1: Year as 4-digit number (2015) %1: Vuosi nelinumeroisena lukuna (2015) - + Text may be contained within single-quotes to ignore replacements Tekstin voi ympäröidä puolilainausmerkein korvausten ohittamiseksi - + Date Codes Päiväyskoodit diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_fr.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_fr.ts index dacaed1b..2d3bd69d 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_fr.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_fr.ts @@ -8,6 +8,11 @@ Select Application Sélectionner une application + + + Search for.... + + ColorDialog @@ -72,7 +77,7 @@ This color scheme already exists. Overwrite it? Ce jeu de couleurs existe déjà. -Voulez-vous l'écraser ? +Voulez-vous l'écraser ? @@ -249,7 +254,7 @@ Voulez-vous l'écraser ? Invisible spacer to separate plugins. - Élément d'espacement invisible pour séparer les éléments. + Élément d'espacement invisible pour séparer les éléments. @@ -274,7 +279,7 @@ Voulez-vous l'écraser ? View the current time and date. - Affiche l'heure et la date actuelle. + Affiche l'heure et la date actuelle. @@ -305,7 +310,7 @@ Voulez-vous l'écraser ? Display area for dockable system applications - Zone d'affichage pour les applications systèmes attachables + Zone d'affichage pour les applications systèmes attachables @@ -331,7 +336,7 @@ Voulez-vous l'écraser ? Application Launcher - Lanceur d'applications + Lanceur d'applications @@ -340,13 +345,13 @@ Voulez-vous l'écraser ? - Start menu alternative focusing on the user's files, directories, and favorites. + Start menu alternative focusing on the user's files, directories, and favorites. Application Menu - Menu de l'application + Menu de l'application @@ -366,7 +371,7 @@ Voulez-vous l'écraser ? Workspace Switcher - Sélecteur d'espace de travail + Sélecteur d'espace de travail @@ -386,7 +391,7 @@ Voulez-vous l'écraser ? Unified system access and application launch menu. - Accès simplifié au serveur et Menu de lancement d'application + Accès simplifié au serveur et Menu de lancement d'application @@ -433,7 +438,7 @@ Voulez-vous l'écraser ? Keep track of system statistics such as CPU/Memory usage and CPU temperatures. - Suivre les statistiques système comme l'utilisation CPU/Mémoire et les températures CPU. + Suivre les statistiques système comme l'utilisation CPU/Mémoire et les températures CPU. @@ -576,7 +581,7 @@ Voulez-vous l'écraser ? Main background color for the window/dialog. - Couleur d'arrière plan principale pour les fenêtres / dialogues. + Couleur d'arrière plan principale pour les fenêtres / dialogues. @@ -586,7 +591,7 @@ Voulez-vous l'écraser ? Main background color for widgets that list or display collections of items. - Couleur principale de fond pour les widgets qui liste ou affiche les collections d'objets. + Couleur principale de fond pour les widgets qui liste ou affiche les collections d'objets. @@ -631,7 +636,7 @@ Voulez-vous l'écraser ? Accent Color - Couleur d'Accent + Couleur d'Accent @@ -641,7 +646,7 @@ Voulez-vous l'écraser ? Accent Color (Disabled) - Couleur d'Accent (Désactivée) + Couleur d'Accent (Désactivée) @@ -656,7 +661,7 @@ Voulez-vous l'écraser ? Color used for highlighting an item. - Couleur utilisée pour la surbrillance d'un élément. + Couleur utilisée pour la surbrillance d'un élément. @@ -773,16 +778,6 @@ Voulez-vous l'écraser ? Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -937,7 +932,7 @@ Voulez-vous l'écraser ? This theme already exists. Overwrite it? Ce thème existe déjà. - Voulez-vous l'écraser ? + Voulez-vous l'écraser ? @@ -950,7 +945,7 @@ Voulez-vous l'écraser ? toolBar - Barre d'outils + Barre d'outils @@ -985,12 +980,12 @@ Voulez-vous l'écraser ? - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1035,7 +1030,7 @@ Voulez-vous l'écraser ? Application Binaries (*) - Exécutables de L'Application (*) + Exécutables de L'Application (*) @@ -1045,7 +1040,7 @@ Voulez-vous l'écraser ? The selected file is not executable! - Le fichier sélectionné n'est pas exécutable ! + Le fichier sélectionné n'est pas exécutable ! @@ -1077,7 +1072,7 @@ Voulez-vous l'écraser ? - Compositor Settings + Window Effects @@ -1165,33 +1160,29 @@ Voulez-vous l'écraser ? - - - - - + Click to Set Cliquez pour définir - + %1 (%2) %1 (%2) - + Select Binary Choisissez un exécutable - + Invalid Binary exécutable non valide - + The selected binary is not executable! - Le fichier sélectionné n'est pas exécutable. + Le fichier sélectionné n'est pas exécutable. @@ -1239,7 +1230,7 @@ Voulez-vous l'écraser ? Change Key Binding: - Changer l'Affectation de Touche + Changer l'Affectation de Touche @@ -1253,9 +1244,9 @@ Voulez-vous l'écraser ? - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key @@ -1276,12 +1267,12 @@ Voulez-vous l'écraser ? Screen Brightness Up - Luminosité de l'écran + + Luminosité de l'écran + Screen Brightness Down - Diminuer la Luminosité de l'Écran + Diminuer la Luminosité de l'Écran @@ -1291,7 +1282,7 @@ Voulez-vous l'écraser ? Lock Screen - Verrouiller l'écran + Verrouiller l'écran @@ -1314,7 +1305,7 @@ Voulez-vous l'écraser ? Number of Workspaces - Nombre d'Espaces de Travail + Nombre d'Espaces de Travail @@ -1442,7 +1433,7 @@ Voulez-vous l'écraser ? - + Desktop Settings @@ -1460,61 +1451,33 @@ Voulez-vous l'écraser ? - + Interface Configuration - Configuration de l'interface + Configuration de l'interface - + Appearance Apparence - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - Formulaire - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1616,12 +1579,12 @@ Voulez-vous l'écraser ? Change User Icon - Modifier l'Icône Utilisateur + Modifier l'Icône Utilisateur Time Format: - Format d'Heure: + Format d'Heure: @@ -1643,7 +1606,7 @@ Voulez-vous l'écraser ? Display Format - Format d'Affichage + Format d'Affichage @@ -1678,145 +1641,145 @@ Voulez-vous l'écraser ? Date first then Time - Date avant l'heure + Date avant l'heure - + Desktop Settings - + Select an image Choisir une image - + Images Images - + Reset User Image - Réinitialiser l'image de l'utilisateur + Réinitialiser l'image de l'utilisateur - + Would you like to reset the user image to the system default? - Voulez-vous réinitialiser l'image de l'utilisateur aux paramètres par défaut du système ? + Voulez-vous réinitialiser l'image de l'utilisateur aux paramètres par défaut du système ? - + Valid Time Codes: Codes valides: - + %1: Hour without leading zero (1) %1: Heure format court (1) - + %1: Hour with leading zero (01) %1: Heure format long (01) - + %1: Minutes without leading zero (2) %1: Minutes format court (2) - + %1: Minutes with leading zero (02) %1: Minutes format long (02) - + %1: Seconds without leading zero (3) %1: Secondes format court (3) - + %1: Seconds with leading zero (03) %1: Secondes format long (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-Heure) horloge (majuscule ou minuscule) - + %1: Timezone %1 : Fuseau horaire - + Time Codes Règles de temps - + Valid Date Codes: Règles de date valides: - + %1: Numeric day without a leading zero (1) %1: Jour en numérique sans les zéros devant (ex: 1) - + %1: Numeric day with leading zero (01) %1: Jour en numérique avec les zéros devant (ex: 01) - + %1: Day as abbreviation (localized) %1: Jour en abrégé (localisé) - + %1: Day as full name (localized) %1: Jour nom complet (localisé) - + %1: Numeric month without leading zero (2) %1: Mois en 1 ou 2 chiffres (ex: 2, 12) - + %1: Numeric month with leading zero (02) %1: Mois en 2 chiffres (ex: 02) - + %1: Month as abbreviation (localized) %1: Mois en lettres abrégé (localisé) - + %1: Month as full name (localized) %1: Mois en lettres (localisé) - + %1: Year as 2-digit number (15) %1: Année en 2 chiffres (ex: 15) - + %1: Year as 4-digit number (2015) %1: Année en format numérique sur 4 chiffres (ex: 2015) - + Text may be contained within single-quotes to ignore replacements - Le texte peut être inclus dans des apostrophes afin d'ignorer les substitutions + Le texte peut être inclus dans des apostrophes afin d'ignorer les substitutions - + Date Codes Règles sur la date @@ -1877,7 +1840,7 @@ Voulez-vous l'écraser ? Icon Pack: - Pack d'icônes: + Pack d'icônes: @@ -1941,7 +1904,7 @@ Voulez-vous l'écraser ? Rotate Background - Tourner l'arrière-plan + Tourner l'arrière-plan @@ -2053,7 +2016,7 @@ Voulez-vous l'écraser ? No Background - Pas d'arrière-plan + Pas d'arrière-plan @@ -2063,18 +2026,18 @@ Voulez-vous l'écraser ? File does not exist - Le fichier n'existe pas + Le fichier n'existe pas Find Background Image(s) - Recherche d'image(s) pour l'arrière plan + Recherche d'image(s) pour l'arrière plan Find Background Image Directory - Trouver le Répertoire d'Image des Arrière-Plans + Trouver le Répertoire d'Image des Arrière-Plans diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_fr_CA.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_fr_CA.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_fr_CA.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_fr_CA.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_gl.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_gl.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_gl.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_gl.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_he.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_he.ts index e21af334..71636de2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_he.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_he.ts @@ -8,6 +8,11 @@ Select Application בחר יישום + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_hi.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_hi.ts index 47ab2838..ca5357df 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_hi.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_hi.ts @@ -8,6 +8,11 @@ Select Application एप्लीकेशन चुनें + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set तय करने के लिए क्लिक करें - + %1 (%2) %1 (%2) - + Select Binary बाइनरी चुनें - + Invalid Binary अवैध बाइनरी - + The selected binary is not executable! चुनी गयी बाइनरी क्रियान्वित नहीं हो सकती! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration इंटरफ़ेस आकृति - + Appearance दिखावट - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - फॉर्म - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ पहले तारीख फिर समय - + Desktop Settings - + Select an image तस्वीर चुनें - + Images तस्वीरें - + Reset User Image यूजर की तस्वीर पुनर्निर्धारित करें - + Would you like to reset the user image to the system default? क्या आप चाहते हैं कि यूजर की तस्वीर उपकरण निर्धारित तय हो? - + Valid Time Codes: वैध टाइम कोड्स: - + %1: Hour without leading zero (1) %1:जीरो से शुरू न होने वाले घन्टे(1) - + %1: Hour with leading zero (01) %1:जीरो से शुरू होने वाले घन्टे(01) - + %1: Minutes without leading zero (2) %1:जीरो से शुरू न होने वाले मिनट्स(2) - + %1: Minutes with leading zero (02) %1:जीरो से शुरू होने वाले मिनट्स(02) - + %1: Seconds without leading zero (3) %1:जीरो से शुरू न होने वाले सेकंड्स(3) - + %1: Seconds with leading zero (03) %1:जीरो से शुरू होने वाले सेकंड्स(03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1:%1: AM/PM (12-घंटे)घड़ी(बड़े व छोटे अक्षर) - + %1: Timezone %1:समय क्षेत्र - + Time Codes समय संकेत - + Valid Date Codes: वैध समय संकेत - + %1: Numeric day without a leading zero (1) %1:दिन नंबर जो शून्य से शुरू नहीं होते(1) - + %1: Numeric day with leading zero (01) %1:दिन नंबर जो शून्य से शुरू होते हैं(01) - + %1: Day as abbreviation (localized) %1: दिन का उपनाम(स्थानीय) - + %1: Day as full name (localized) %1:दिन का पूरा नाम(स्थानीय) - + %1: Numeric month without leading zero (2) %1:मासिक नंबर जो शून्य से शुरू नहीं होते हैं(2) - + %1: Numeric month with leading zero (02) %1:मासिक नंबर जो शून्य से शुरू होते हैं(02) - + %1: Month as abbreviation (localized) %1:महीने का उपनाम(स्थानीय) - + %1: Month as full name (localized) %1:महीने का पूरा नाम(स्थानीय) - + %1: Year as 2-digit number (15) %1:वर्ष दो अंको में(15) - + %1: Year as 4-digit number (2015) %1:वर्ष चार अंको में(2015) - + Text may be contained within single-quotes to ignore replacements प्रतिस्थापन अनदेखी के लिए टेक्स्ट एकल-चिन्ह हो सकता है - + Date Codes तारीख संकेत diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_hr.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_hr.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_hr.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_hr.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_hu.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_hu.ts index 653184ef..869ef359 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_hu.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_hu.ts @@ -8,6 +8,11 @@ Select Application Alkalmazás választása + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1076,7 +1071,7 @@ - Compositor Settings + Window Effects @@ -1164,31 +1159,27 @@ - - - - - + Click to Set Kattintson a beállításhoz - + %1 (%2) %1 (%2) - + Select Binary Bináris kiválasztása - + Invalid Binary Érvénytelen bináris - + The selected binary is not executable! A kiválasztott bináris nem futtatható @@ -1441,7 +1432,7 @@ - + Desktop Settings @@ -1459,61 +1450,33 @@ - + Interface Configuration Eszközbeállítás - + Appearance Megjelenés - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - Űrlap - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1680,142 +1643,142 @@ Dátum előbb, majd Idő - + Desktop Settings - + Select an image Egy kép kijelölése - + Images Képek - + Reset User Image Felhasználói kép nullázása (alapértelmezett sablonra) - + Would you like to reset the user image to the system default? Szeretné visszaállítani a felhasználói (profil)képet a rendszer alapértelmezett képére? - + Valid Time Codes: Érvényes időkódok: - + %1: Hour without leading zero (1) %1: Óra, vezető nulla nélkül (1) - + %1: Hour with leading zero (01) %1: Óra, vezető nullával (01) - + %1: Minutes without leading zero (2) %1: Percek, vezető nulla nélkül (2) - + %1: Minutes with leading zero (02) %1: Percek, vezető nullával (02) - + %1: Seconds without leading zero (3) %1: Másodpercek, vezető nulla nélkül (3) - + %1: Seconds with leading zero (03) %1: Másodpercek, vezető nullával (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: de/du (12-órás) óra (nagy- vagy kisbetűkkel) - + %1: Timezone %1: Időzóna - + Time Codes Időkódok - + Valid Date Codes: Érvényes dátum-kódok - + %1: Numeric day without a leading zero (1) %1: Számban megadott nap vezető nulla nélkül (1) - + %1: Numeric day with leading zero (01) %1: Számokkal megadott nap vezető nullával (01) - + %1: Day as abbreviation (localized) %1: Nap, rövidítve (helyileg) - + %1: Day as full name (localized) %1: Nap teljes névvel (helyileg) - + %1: Numeric month without leading zero (2) %1: Hónap számokkal, vezető nulla nélkül (2) - + %1: Numeric month with leading zero (02) %1: Hónap számokkal, vezető nullával (02) - + %1: Month as abbreviation (localized) %1: Hónap rövidítve (helyileg) - + %1: Month as full name (localized) %1: Hónap, teljes névvel (helyileg) - + %1: Year as 2-digit number (15) %1: Évszám utolsó két számjegye (15) - + %1: Year as 4-digit number (2015) %1: Évszám négyjegyűen (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes Dátum-kódok diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_id.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_id.ts index d2b6297d..06fef287 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_id.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_id.ts @@ -8,6 +8,11 @@ Select Application Pilih Aplikasi + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menimpanya? Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ Menimpanya? - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1076,7 +1071,7 @@ Menimpanya? - Compositor Settings + Window Effects @@ -1164,31 +1159,27 @@ Menimpanya? - - - - - + Click to Set Klik untuk set - + %1 (%2) %1 (%2) - + Select Binary pilih binari - + Invalid Binary binari tak valid - + The selected binary is not executable! Biner yang dipilih tidak dieksekusi! @@ -1441,7 +1432,7 @@ Menimpanya? - + Desktop Settings @@ -1459,61 +1450,33 @@ Menimpanya? - + Interface Configuration Konfigurasi Antarmuka - + Appearance Penampilan - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1680,142 +1643,142 @@ Menimpanya? Kencan pertama kemudian Waktu - + Desktop Settings - + Select an image Pilih gambar - + Images Gambar - + Reset User Image mulai ulang gambar - + Would you like to reset the user image to the system default? mulai ulang sistem to gambar sistem default? - + Valid Time Codes: Kode Waktu: - + %1: Hour without leading zero (1) % 1: Jam tanpa nol (1) - + %1: Hour with leading zero (01) %1: Jam dengan (leading) nol terkemuka (01) - + %1: Minutes without leading zero (2) %1: Menit tanpa (leading) nol (2) - + %1: Minutes with leading zero (02) %1: Menit dengan (leading) nol (02) - + %1: Seconds without leading zero (3) %1: detik tanpa (leading) nol (3) - + %1: Seconds with leading zero (03) %1: detik dengan (leading) nol (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-jam) jam dinding (atas atau bawah kasus) - + %1: Timezone %1: zona Waktu - + Time Codes Kode waktu - + Valid Date Codes: Sah Tanggal Kode: - + %1: Numeric day without a leading zero (1) % 1: hari numerik tanpa nol (1) - + %1: Numeric day with leading zero (01) %1: Numeric hari dengan nol (01) - + %1: Day as abbreviation (localized) %1: Hari sebagai singkatan (lokal) - + %1: Day as full name (localized) %1: Hari nama lengkap (lokal) - + %1: Numeric month without leading zero (2) %1: bulan numerik tanpa nol (2) - + %1: Numeric month with leading zero (02) %1: bulan numerik dengan nol terkemuka (02) - + %1: Month as abbreviation (localized) %1: Bulan sebagai singkatan (lokal) - + %1: Month as full name (localized) %1: Bulan nama lengkap (lokal) - + %1: Year as 2-digit number (15) %1: Tahun nomor 2 digit (15) - + %1: Year as 4-digit number (2015) %1: Tahun empat digit angka (2015) - + Text may be contained within single-quotes to ignore replacements Teks dapat terkandung dalam tanda kutip tunggal untuk mengabaikan pengganti - + Date Codes Tanggal Kode diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_is.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_is.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_is.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_is.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_it.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_it.ts index b2d0a512..fd4a99db 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_it.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_it.ts @@ -8,6 +8,11 @@ Select Application Seleziona applicazione + + + Search for.... + Cerca... + ColorDialog @@ -336,12 +341,12 @@ Sovrascriverlo? User Menu - Menu dell'utente + Menu dell'utente - Start menu alternative focusing on the user's files, directories, and favorites. - Avvia un menu alternativo focalizzato su file, cartelle e preferiti dell'utente. + Start menu alternative focusing on the user's files, directories, and favorites. + Avvia un menu alternativo focalizzato su file, cartelle e preferiti dell'utente. @@ -396,7 +401,7 @@ Sovrascriverlo? Desktop button for launching an application - Pulsante su desktop per lanciare un'applicazione + Pulsante su desktop per lanciare un'applicazione @@ -526,7 +531,7 @@ Sovrascriverlo? Run an external script to generate a user defined menu - Esegui uno script esterno per generare un menu definito dall'utente + Esegui uno script esterno per generare un menu definito dall'utente @@ -566,7 +571,7 @@ Sovrascriverlo? Text color when selection is highlighted. - Colore testo quando la selezione e' evidenziata. + Colore testo quando la selezione e' evidenziata. @@ -686,7 +691,7 @@ Sovrascriverlo? Change interface fonts and colors - Cambia i font e i colori dell'interfacia + Cambia i font e i colori dell'interfacia @@ -773,16 +778,6 @@ Sovrascriverlo? Menu Menu - - - Input Device Settings - Impostazioni periferica di input - - - - Adjust keyboard and mouse devices - Correzione periferiche mouse e tastiera - Desktop Plugins @@ -890,7 +885,7 @@ Sovrascriverlo? Select an icon file - Seleziona un file per l'icona + Seleziona un file per l'icona @@ -985,12 +980,12 @@ Sovrascriverlo? Seleziona il monitor/desktop da configurare - + Unsaved Changes Modifiche non salvate - + This page currently has unsaved changes, do you wish to save them now? Questa pagina contiene modifiche non salvate, vuoi salvarle adesso? @@ -1005,7 +1000,7 @@ Sovrascriverlo? Add New Startup Service - Aggiungi un nuovo servizio da lanciare all'avvio + Aggiungi un nuovo servizio da lanciare all'avvio @@ -1025,7 +1020,7 @@ Sovrascriverlo? Startup Services - Servizi da lanciare all'avvio + Servizi da lanciare all'avvio @@ -1035,7 +1030,7 @@ Sovrascriverlo? Application Binaries (*) - Eseguibili dell'applicazione (*) + Eseguibili dell'applicazione (*) @@ -1073,12 +1068,12 @@ Sovrascriverlo? Only use compositing with GPU acceleration - Si può usare compositing solo con l'acceleratore grafico GPU + Si può usare compositing solo con l'acceleratore grafico GPU - Compositor Settings - Impostazioni del compositor + Window Effects + Effetti delle finestre @@ -1165,31 +1160,27 @@ Sovrascriverlo? Applicazioni predefinite - - - - - + Click to Set Clicca per impostare - + %1 (%2) %1 (%2) - + Select Binary Scegli Eseguibile - + Invalid Binary Eseguibile non valido - + The selected binary is not executable! Il file selezionato non è eseguibile! @@ -1253,12 +1244,12 @@ Sovrascriverlo? - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": Tasto Alt - "Mod4": Tasto di Windows/Mac - "Control": Tasto Ctrl + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": Tasto Alt + "Mod4": Tasto di Windows/Mac + "Control": Tasto Ctrl @@ -1444,7 +1435,7 @@ Sovrascriverlo? Importa - + Desktop Settings Impostazioni del desktop @@ -1462,62 +1453,34 @@ Sovrascriverlo? Cerca... - + Interface Configuration Configurazione interfaccia - + Appearance Aspetto - + Desktop Defaults Desktop predefinito - + User Settings Impostazioni utente - - Desktop Settings - Impostazioni del desktop - - - - page_mouse - - - Form - Modulo - - - - Input Device Settings - Impostazione periferica di input - - - - Mouse #%1 - Mouse #%1 - - - - Keyboard #%1 - Tastiera #%1 - - - - Extension Device #%1 - Estensione Periferica #%1 + + System Settings + - - Master Device - Periferica principale + + Desktop Settings + Impostazioni del desktop @@ -1588,17 +1551,17 @@ Sovrascriverlo? Enable numlock on startup - Abilita il blocco numerico all'avvio + Abilita il blocco numerico all'avvio Play chimes on startup - Riproduci suoni all'avvio + Riproduci suoni all'avvio Play chimes on exit - Riproduci suoni all'uscita + Riproduci suoni all'uscita @@ -1613,7 +1576,7 @@ Sovrascriverlo? Show application crash data - Mostrare i dati della chiusura improvvisa dell'applicazione + Mostrare i dati della chiusura improvvisa dell'applicazione @@ -1683,142 +1646,142 @@ Sovrascriverlo? Prima data e poi orario - + Desktop Settings Impostazioni del desktop - + Select an image - Scegli un'immagine + Scegli un'immagine - + Images Immagini - + Reset User Image Reimposta immagine utente - + Would you like to reset the user image to the system default? - Vorresti reimpostare l'immagine utente al valore predefinito di sistema? + Vorresti reimpostare l'immagine utente al valore predefinito di sistema? - + Valid Time Codes: Codici orari validi: - + %1: Hour without leading zero (1) %1: Ora senza zero iniziale (1) - + %1: Hour with leading zero (01) %1: Ora con zero iniziale (01) - + %1: Minutes without leading zero (2) %1: Minuti senza zero iniziale (2) - + %1: Minutes with leading zero (02) %1: Minuti con zero iniziale (02) - + %1: Seconds without leading zero (3) %1: Secondi senza zero iniziale (3) - + %1: Seconds with leading zero (03) %1: Secondi con zero iniziale (03) - + %1: AM/PM (12-hour) clock (upper or lower case) % 1: Orologio AM/PM (12 ore) (maiuscole o minuscole) - + %1: Timezone %1: Fuso orario - + Time Codes Codici numerici temporali - + Valid Date Codes: Codici data validi: - + %1: Numeric day without a leading zero (1) % 1: Giorno numerico senza zero iniziale (1) - + %1: Numeric day with leading zero (01) % 1: Giorno numerico con zero iniziale (01) - + %1: Day as abbreviation (localized) % 1: Giorno con abbreviazione (in base alla lingua) - + %1: Day as full name (localized) % 1: Giorno con descrizione completa (in base alla lingua) - + %1: Numeric month without leading zero (2) % 1: Mese numerico senza zero iniziale (2) - + %1: Numeric month with leading zero (02) % 1: Mese numerico con zero iniziale (02) - + %1: Month as abbreviation (localized) %1: Mese con abbreviazione (in base alla lingua) - + %1: Month as full name (localized) %1: Mese con descrizione completa (in base alla lingua) - + %1: Year as 2-digit number (15) %1: Anno come numero di 2 cifre (15) - + %1: Year as 4-digit number (2015) %1: Anno come numero di 4 cifre (2015) - + Text may be contained within single-quotes to ignore replacements - Il testo può essere all'interno di apici singoli per ignorare le sostituzioni + Il testo può essere all'interno di apici singoli per ignorare le sostituzioni - + Date Codes Codici date @@ -2076,7 +2039,7 @@ Sovrascriverlo? Find Background Image Directory - Specifica cartella dell'immagine di sfondo + Specifica cartella dell'immagine di sfondo diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ja.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ja.ts index f056b2b6..c3a7deae 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ja.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ja.ts @@ -8,6 +8,11 @@ Select Application アプリケーションの選択 + + + Search for.... + 設定項目を検索... + ColorDialog @@ -312,7 +317,7 @@ Hide all open windows and show the desktop - "Home Button"の説明文 + "Home Button"の説明文 すべての開いているウィンドウを隠してデスクトップを表示します。 @@ -343,7 +348,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. ユーザーのファイル・ディレクトリーやお気に入りに特化した別の種類のスタートメニューです。 @@ -399,7 +404,7 @@ Desktop button for launching an application - もう一つの"Application Launcher"の説明 + もう一つの"Application Launcher"の説明 アプリケーションを起動するデスクトップボタン @@ -779,16 +784,6 @@ Menu メニュー - - - Input Device Settings - 入力デバイスの設定 - - - - Adjust keyboard and mouse devices - キーボードとマウスの調整を行います - Desktop Plugins @@ -993,12 +988,12 @@ 設定するモニター/デスクトップを選択 - + Unsaved Changes 保存されていない変更 - + This page currently has unsaved changes, do you wish to save them now? このページには保存されていない設定変更があります。保存しますか? @@ -1085,9 +1080,8 @@ - Compositor Settings - "Window effects" 乃設定画面のタイトル - 画面効果の設定 + Window Effects + ウインドウの効果 @@ -1174,31 +1168,27 @@ 通常使用するアプリケーション - - - - - + Click to Set クリックして設定 - + %1 (%2) %1 (%2) - + Select Binary プログラムを選択 - + Invalid Binary 無効なプログラムです - + The selected binary is not executable! 選択したプログラムは実行可能ではありません。 @@ -1264,12 +1254,12 @@ - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": Alt キー -"Mod4": Windows/Mac キー -"Control": Ctrl キー + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": Alt キー +"Mod4": Windows/Mac キー +"Control": Ctrl キー @@ -1455,7 +1445,7 @@ インポート - + Desktop Settings デスクトップ設定 @@ -1473,62 +1463,34 @@ 設定項目を検索... - + Interface Configuration インターフェイス設定 - + Appearance 表示 - + Desktop Defaults デスクトップのデフォルト設定 - + User Settings ユーザー設定 - - Desktop Settings - デスクトップ設定 + + System Settings + - - - page_mouse - - Form - フォーム - - - - Input Device Settings - 入力デバイスの設定 - - - - Mouse #%1 - マウス #%1 - - - - Keyboard #%1 - キーボード #%1 - - - - Extension Device #%1 - 拡張デバイス #%1 - - - - Master Device - マスターデバイス + + Desktop Settings + デスクトップ設定 @@ -1694,142 +1656,142 @@ 日付を時刻より先に表示 - + Desktop Settings デスクトップ設定 - + Select an image 画像ファイルを選択 - + Images 画像 - + Reset User Image ユーザー画像のリセット - + Would you like to reset the user image to the system default? ユーザー画像をリセットしてシステムのデフォルトに戻しますか? - + Valid Time Codes: 有効な時刻設定コード: - + %1: Hour without leading zero (1) %1: 先頭の0が無い時間を表示する (1) - + %1: Hour with leading zero (01) %1: 先頭に0を付けて時間を表示する (01) - + %1: Minutes without leading zero (2) %1: 先頭の0が無い分を表示する (2) - + %1: Minutes with leading zero (02) %1: 先頭に0を付けて分を表示する (02) - + %1: Seconds without leading zero (3) %1: 先頭の0が無い秒を表示する (3) - + %1: Seconds with leading zero (03) %1: 先頭に0を付けて秒を表示する (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: 午前/午後 (12時間表示になります) (大文字と小文字を区別します) - + %1: Timezone %1: タイムゾーン - + Time Codes 時刻設定コード - + Valid Date Codes: 有効な日付設定コード: - + %1: Numeric day without a leading zero (1) %1: 先頭の0が無い日を表示する (1) - + %1: Numeric day with leading zero (01) %1: 先頭に0を付けて日を表示する (01) - + %1: Day as abbreviation (localized) %1: 短縮した曜日を表示する (言語設定で変わる) - + %1: Day as full name (localized) %1: 完全な曜日を表示する (言語設定で変わる) - + %1: Numeric month without leading zero (2) %1: 数字で先頭の0が無い月を表示する (2) - + %1: Numeric month with leading zero (02) %1: 数字で先頭に0を付けた日を表示する (02) - + %1: Month as abbreviation (localized) %1: 月の名前を短縮表示する (言語設定で変わる) - + %1: Month as full name (localized) %1: 月の名前を完全表示する (言語設定で変わる) - + %1: Year as 2-digit number (15) %1: 2桁の年数を表示する (15) - + %1: Year as 4-digit number (2015) %1: 4桁の年数を表示する (2015) - + Text may be contained within single-quotes to ignore replacements シングルクォートで囲まれた文字は日付への置き換え対象から外れます。 - + Date Codes 日付設定コード diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ka.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ka.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ka.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ka.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ko.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ko.ts index 1d407029..8416a23b 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ko.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ko.ts @@ -8,6 +8,11 @@ Select Application 프로그램 선택 + + + Search for.... + + ColorDialog @@ -774,16 +779,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -986,12 +981,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1078,7 +1073,7 @@ - Compositor Settings + Window Effects @@ -1166,31 +1161,27 @@ - - - - - + Click to Set 설정하기 위해 누름 - + %1 (%2) %1 (%2) - + Select Binary 실행 파일 선택 - + Invalid Binary 잘못된 실행 파일 - + The selected binary is not executable! 선택한 파일은 실행할 수 없습니다! @@ -1443,7 +1434,7 @@ - + Desktop Settings @@ -1461,61 +1452,33 @@ - + Interface Configuration 인터페이스 구성 - + Appearance 모양 - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - 양식 - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1682,142 +1645,142 @@ 날짜 다음 시간 - + Desktop Settings - + Select an image 그림 선택 - + Images 그림 - + Reset User Image 사용자 그림 재설정 - + Would you like to reset the user image to the system default? 사용자 그림을 시스템 기본값으로 재설정 하시겠습니까? - + Valid Time Codes: 유효한 시간 코드: - + %1: Hour without leading zero (1) %1: 앞에 0이 없는 시 (1) - + %1: Hour with leading zero (01) %1: 앞에 0이 있는 시 (01) - + %1: Minutes without leading zero (2) %1: 앞에 0이 없는 분 (2) - + %1: Minutes with leading zero (02) %1: 앞에 0이 있는 분 (02) - + %1: Seconds without leading zero (3) %1: 앞에 0이 없는 초 (3) - + %1: Seconds with leading zero (03) %1: 앞에 0이 있는 초 (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: 오전/오후 (12 시간) 시계 - + %1: Timezone %1: 시간대 - + Time Codes 시간 코드 - + Valid Date Codes: 유효한 날짜 코드: - + %1: Numeric day without a leading zero (1) %1: 앞에 0이 없는 숫자화된 요일 (1) - + %1: Numeric day with leading zero (01) %1: 앞에 0이 있는 숫자화된 요일 (01) - + %1: Day as abbreviation (localized) %1: 요일의 짧은 이름 (지역화됨) - + %1: Day as full name (localized) %1: 요일의 긴 이름 (지역화됨) - + %1: Numeric month without leading zero (2) %1: 앞에 0이 없는 숫자화된 달 (2) - + %1: Numeric month with leading zero (02) %1: 앞에 0이 있는 숫자화된 달 (02) - + %1: Month as abbreviation (localized) %1: 달의 짧은 이름 (지역화됨) - + %1: Month as full name (localized) %1: 달의 긴 이름 (지역화됨) - + %1: Year as 2-digit number (15) %1: 2자리 숫자로 된 해 (15) - + %1: Year as 4-digit number (2015) %1: 4자리 숫자로 된 해 (2015) - + Text may be contained within single-quotes to ignore replacements 치환을 방지하기 위해 작은 따옴표 안에 문자를 사용할 수 있음 - + Date Codes 날짜 코드 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 6e2c7388..13cba779 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 @@ -8,6 +8,11 @@ Select Application Pasirinkite programą + + + Search for.... + Ieškoti... + ColorDialog @@ -340,7 +345,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. Pradžios meniu alternatyva, susitelkianti ties naudotojo failais, katalogais ir kitais mėgstamais elementais. @@ -536,7 +541,7 @@ Lock the current desktop session - Blocca l'attuale sessione desktop + Blocca l'attuale sessione desktop @@ -773,16 +778,6 @@ Menu Menu - - - Input Device Settings - Įvesties įrenginio nustatymai - - - - Adjust keyboard and mouse devices - Derinti klaviatūros ir pelės įrenginius - Desktop Plugins @@ -985,12 +980,12 @@ Pasirinkite monitorių/darbalaukį, kurį konfigūruoti - + Unsaved Changes Neįrašyti pakeitimai - + This page currently has unsaved changes, do you wish to save them now? Šiuo metu šiame puslapyje yra neįrašytų pakeitimų, ar norite juos dabar įrašyti? @@ -1077,8 +1072,8 @@ - Compositor Settings - Tvarkytojo nustatymai + Window Effects + Langų efektai @@ -1165,31 +1160,27 @@ Numatytosios programos - - - - - + Click to Set Spustelėkite, kad nustatytumėte - + %1 (%2) %1 (%2) - + Select Binary Pasirinkti dvejetainę - + Invalid Binary Neteisinga dvejetainė - + The selected binary is not executable! Pasirinkta dvejetainė nėra vykdomoji! @@ -1253,12 +1244,12 @@ - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": Alt klavišas -"Mod4": Windows/Mac klavišas -"Control": Ctrl (Vald) klavišas + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": Alt klavišas +"Mod4": Windows/Mac klavišas +"Control": Ctrl (Vald) klavišas @@ -1444,7 +1435,7 @@ Importuoti - + Desktop Settings Darbalaukio nustatymai @@ -1462,62 +1453,34 @@ Ieškoti... - + Interface Configuration Sąsajos konfigūracija - + Appearance Išvaizda - + Desktop Defaults Darbalaukio numatytosios reikšmės - + User Settings Naudotojo nustatymai - - Desktop Settings - Darbalaukio nustatymai - - - - page_mouse - - - Form - Forma - - - - Input Device Settings - Įvesties įrenginio nustatymai - - - - Mouse #%1 - Pelė #%1 - - - - Keyboard #%1 - Klaviatūra #%1 - - - - Extension Device #%1 - Plėtinio įrenginys #%1 + + System Settings + - - Master Device - Pagrindinis įrenginys + + Desktop Settings + Darbalaukio nustatymai @@ -1683,142 +1646,142 @@ Data, o paskui laikas - + Desktop Settings Darbalaukio nustatymai - + Select an image Pasirinkite paveikslą - + Images Paveikslai - + Reset User Image Atstatyti naudotojo paveikslą - + Would you like to reset the user image to the system default? Ar norėtumėte atstatyti naudotojo paveikslą į sistemos numatytąjį? - + Valid Time Codes: Tinkami laiko kodai: - + %1: Hour without leading zero (1) %1: Valanda be priekinio nulio (1) - + %1: Hour with leading zero (01) %1: Valanda su priekiniu nuliu (01) - + %1: Minutes without leading zero (2) %1: Minutės be priekinio nulio (2) - + %1: Minutes with leading zero (02) %1: Minutės su priekiniu nuliu (02) - + %1: Seconds without leading zero (3) %1: Sekundės be priekinio nulio (3) - + %1: Seconds with leading zero (03) %1: Sekundės su priekiniu nuliu (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-valandų) laikrodis (didžiosiomis ar mažosiomis raidėmis) - + %1: Timezone %1: Laiko juosta - + Time Codes Laiko kodai - + Valid Date Codes: Tinkami datos kodai: - + %1: Numeric day without a leading zero (1) %1: Diena skaitmenimis be priekinio nulio (1) - + %1: Numeric day with leading zero (01) %1: Diena skaitmenimis su priekiniu nuliu (01) - + %1: Day as abbreviation (localized) %1: Diena kaip santrumpa (lokalizuota) - + %1: Day as full name (localized) %1: Diena kaip pilnas pavadinimas (lokalizuota) - + %1: Numeric month without leading zero (2) %1: Mėnesis skaitmenimis be priekinio nulio (2) - + %1: Numeric month with leading zero (02) %1: Mėnesis skaitmenimis su priekiniu nuliu (02) - + %1: Month as abbreviation (localized) %1: Mėnesis kaip santrumpa (lokalizuota) - + %1: Month as full name (localized) %1: Mėnesis kaip pilnas pavadinimas (lokalizuota) - + %1: Year as 2-digit number (15) %1: Metai kaip 2-skaitmenų skaičius (15) - + %1: Year as 4-digit number (2015) %1: Metai kaip 4-skaitmenų skaičius (2015) - + Text may be contained within single-quotes to ignore replacements Tekstas gali būti patalpintas į kabutes, kad būtų nepaisoma pakeitimų - + Date Codes Datų kodai diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_lv.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_lv.ts index 66681b6c..c1f1f8fb 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_lv.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_lv.ts @@ -8,6 +8,11 @@ Select Application Izvēlieties lietotni + + + Search for.... + Meklēt.... + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ Izvēlēties monitoru/darbvirsmu, ko konfigurēt - + Unsaved Changes Nesaglabātas izmaiņas - + This page currently has unsaved changes, do you wish to save them now? Šajā lapā pašlaik ir nesaglabātas izmaiņas. Vai vēlaties saglabāt tās tagad? @@ -1077,8 +1072,8 @@ - Compositor Settings - Burtliča iestatījumi + Window Effects + Loga efekti @@ -1165,31 +1160,27 @@ Noklusējuma lietotnes - - - - - + Click to Set Noklikšķināt, lai iestatītu - + %1 (%2) %1 (%2) - + Select Binary Izvēlēties bināru failu - + Invalid Binary Nederīgs binārais fails - + The selected binary is not executable! Izvēlētais binārais fails nav izpildāms! @@ -1444,7 +1435,7 @@ - + Desktop Settings Darbvirsmas iestatījumi @@ -1462,62 +1453,34 @@ Meklēt.... - + Interface Configuration Interfeisa konfigurācija - + Appearance Izskats - + Desktop Defaults - + User Settings Lietotāja iestatījumi - - Desktop Settings - Darbvirsmas iestatījumi - - - - page_mouse - - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + Darbvirsmas iestatījumi @@ -1683,142 +1646,142 @@ Datumu un pēc tam laiku - + Desktop Settings Darbvirsmas iestatījumi - + Select an image Izvēlieties attēlu - + Images Attēli - + Reset User Image Atiestatīt lietotāja attēlu - + Would you like to reset the user image to the system default? Vai vēlaties atiestatīt lietotāja attēlu uz sistēmas noklusējumu? - + Valid Time Codes: Derīgi laika kodi: - + %1: Hour without leading zero (1) %1: Stunda bez nulles sākumā (1) - + %1: Hour with leading zero (01) %1: Stunda ar nulli priekšgalā (01) - + %1: Minutes without leading zero (2) %1: Minūtes bez nulles priekšgalā (2) - + %1: Minutes with leading zero (02) %1: Minūtes ar nulli priekšgalā (02) - + %1: Seconds without leading zero (3) %1: Sekundes bez nulles priekšgalā (3) - + %1: Seconds with leading zero (03) %1: Sekundes ar nulli priekšgalā (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-stundu) pulkstenis (lielie vai mazie burti) - + %1: Timezone %1: Laika josla - + Time Codes Laika kodi - + Valid Date Codes: Derīgu datumu kodi: - + %1: Numeric day without a leading zero (1) %1: Dienas skaitlis bez nulles priekšā (1) - + %1: Numeric day with leading zero (01) %1: Dienas skaitlis ar nulli priekšā (01) - + %1: Day as abbreviation (localized) %1: Diena kā saīsinājums (lokalizēts) - + %1: Day as full name (localized) %1: Dienas pilns nosaukums (lokalizēts) - + %1: Numeric month without leading zero (2) %1: Mēneša skaitlis bez nulles priekšā (2) - + %1: Numeric month with leading zero (02) %1: Mēneša skaitlis ar nulli priekšā (02) - + %1: Month as abbreviation (localized) %1: Mēnesis kā saīsinājums (lokalizēts) - + %1: Month as full name (localized) %1: Mēneša pilns nosaukums (lokalizēts) - + %1: Year as 2-digit number (15) %1: Gads kā 2-ciparu skaitlis (15) - + %1: Year as 4-digit number (2015) %1: Gads kā 4-ciparu skaitlis (2015) - + Text may be contained within single-quotes to ignore replacements Teksts var būt iekļauts apostrofos, lai ignorētu aizvietošanu - + Date Codes Datuma kodi diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_mk.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_mk.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_mk.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_mk.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_mn.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_mn.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_mn.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_mn.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ms.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ms.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ms.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ms.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_mt.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_mt.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_mt.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_mt.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_nb.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_nb.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_nb.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_nb.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_nl.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_nl.ts index be6468b5..535eec51 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_nl.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_nl.ts @@ -8,6 +8,11 @@ Select Application Selecteer applicatie + + + Search for.... + Zoeken naar... + ColorDialog @@ -773,16 +778,6 @@ Wilt u het overschrijven? Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ Wilt u het overschrijven? Selecteer het in te stellen beeldscherm/bureaublad - + Unsaved Changes Niet-opgeslagen wijzigingen - + This page currently has unsaved changes, do you wish to save them now? Deze pagina bevat niet-opgeslagen wijzigingen. Wilt u deze nu opslaan? @@ -1076,8 +1071,8 @@ Wilt u het overschrijven? - Compositor Settings - 3D-instellingen + Window Effects + Venstereffecten @@ -1164,31 +1159,27 @@ Wilt u het overschrijven? Standaardapplicaties - - - - - + Click to Set Klik om in te stellen - + %1 (%2) %1 (%2) - + Select Binary Selecteer uitvoerbaar bestand - + Invalid Binary Ongeldig uitvoerbaar bestand - + The selected binary is not executable! Het geselecteerde bestand is niet uitvoerbaar! @@ -1443,7 +1434,7 @@ Wilt u het overschrijven? - + Desktop Settings Bureaubladinstellingen @@ -1461,62 +1452,34 @@ Wilt u het overschrijven? Zoeken naar... - + Interface Configuration Uiterlijk-configuratie - + Appearance Uiterlijk - + Desktop Defaults - + User Settings Gebruikersinstellingen - - Desktop Settings - Bureaubladinstellingen - - - - page_mouse - - - Form - Formulier - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + Bureaubladinstellingen @@ -1682,142 +1645,142 @@ Wilt u het overschrijven? Eerst de datum, dan de tijd - + Desktop Settings Bureaubladinstellingen - + Select an image Selecteer een afbeelding - + Images Afbeeldingen - + Reset User Image Gebruikersafbeelding herstellen - + Would you like to reset the user image to the system default? Wilt u de gebruikersafbeelding herstellen naar de systeemstandaard? - + Valid Time Codes: Geldige tijdcodes: - + %1: Hour without leading zero (1) %1: uur zonder leidende nul (1) - + %1: Hour with leading zero (01) %1: uur met leidende nul (01) - + %1: Minutes without leading zero (2) %1: minuten zonder leidende nul (2) - + %1: Minutes with leading zero (02) %1: minuten met leidende nul (02) - + %1: Seconds without leading zero (3) %1: seconden zonder leidende nul (3) - + %1: Seconds with leading zero (03) %1: seconden met leidende nul (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12 uur) klok (met kleine of hoofdletter) - + %1: Timezone %1: Tijdzone - + Time Codes Tijdcodes - + Valid Date Codes: Geldige datumcodes: - + %1: Numeric day without a leading zero (1) %1: dag in numeriek formaat zonder voorgaande nul (1) - + %1: Numeric day with leading zero (01) %1: dag in numeriek formaat met voorgaande nul (01) - + %1: Day as abbreviation (localized) %1: dag in afgekort formaat (aangepast aan landinstellingen) - + %1: Day as full name (localized) %1: dag voluit (aangepast aan landinstellingen) - + %1: Numeric month without leading zero (2) %1: maand in numeriek formaat zonder voorgaande nul (2) - + %1: Numeric month with leading zero (02) %1: maand in numeriek formaat met voorgaande nul (02) - + %1: Month as abbreviation (localized) %1: maand in afgekort formaat (aangepast aan landinstellingen) - + %1: Month as full name (localized) %1: maand voluit (aangepast aan landinstellingen) - + %1: Year as 2-digit number (15) %1: jaar geschreven als 2 getallen (15) - + %1: Year as 4-digit number (2015) %1: jaar geschreven als 4 getallen (2015) - + Text may be contained within single-quotes to ignore replacements De tekst kan worden geplaatst tussen enkele aanhalingstekens om vervanging te negeren - + Date Codes Datumcodes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pa.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pa.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pa.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pa.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes 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 25fb461c..033a5259 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 @@ -8,6 +8,11 @@ Select Application Wybierz program + + + Search for.... + Szukaj... + ColorDialog @@ -340,7 +345,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. Alternatywny wygląd menu start, pokazujący pliki użytkownika, jego katalogi i ulubione elementy. @@ -773,16 +778,6 @@ Menu Menu - - - Input Device Settings - Ustawienia urządzeń wejściowych - - - - Adjust keyboard and mouse devices - Skonfiguruj klawiaturę oraz mysz - Desktop Plugins @@ -985,12 +980,12 @@ Wybierz monitor/pulpit do konfiguracji - + Unsaved Changes Niezapisane zmiany - + This page currently has unsaved changes, do you wish to save them now? Ta strona ma niezapisane zmiany, czy chcesz je teraz zapisać? @@ -1077,8 +1072,8 @@ - Compositor Settings - Ustawienia menedżera kompozycji + Window Effects + Efekty okna @@ -1165,31 +1160,27 @@ Domyślne programy - - - - - + Click to Set Kliknij by ustawić - + %1 (%2) %1 (%2) - + Select Binary Wybierz plik binarny - + Invalid Binary Nieprawidłowy plik binarny - + The selected binary is not executable! Wybrany plik binarny nie jest wykonywalny! @@ -1253,12 +1244,12 @@ - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": klawisz Alt -"Mod4": klawisz Windows/Mac -"Control": klawisz Ctrl + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": klawisz Alt +"Mod4": klawisz Windows/Mac +"Control": klawisz Ctrl @@ -1444,7 +1435,7 @@ Import - + Desktop Settings Ustawienia pulpitu @@ -1462,62 +1453,34 @@ Szukaj... - + Interface Configuration Konfiguracja interfejsu - + Appearance Wygląd - + Desktop Defaults Domyślne ustawienia pulpitu - + User Settings Ustawienia użytkownika - - Desktop Settings - Ustawienia pulpitu - - - - page_mouse - - - Form - Formularz - - - - Input Device Settings - Ustawienia urządzeń wejścia - - - - Mouse #%1 - Mysz #%1 - - - - Keyboard #%1 - Klawiatura #%1 - - - - Extension Device #%1 - Urządzenie rozszerzeń #%1 + + System Settings + - - Master Device - Urządzenie główne + + Desktop Settings + Ustawienia pulpitu @@ -1683,142 +1646,142 @@ Najpierw data, a następnie godzina - + Desktop Settings Ustawienia pulpitu - + Select an image Wybierz obraz - + Images Obrazy - + Reset User Image Zresetuj obraz użytkownika - + Would you like to reset the user image to the system default? Chcesz przywrócić obraz użytkownika do systemowych ustawień domyślnych? - + Valid Time Codes: Poprawne kody czasu: - + %1: Hour without leading zero (1) %1: Godzina bez zera z przodu (1) - + %1: Hour with leading zero (01) %1: Godzina z zerem z przodu (01) - + %1: Minutes without leading zero (2) %1: Minuty bez zera z przodu (2) - + %1: Minutes with leading zero (02) %1: Minuty z zerem z przodu (02) - + %1: Seconds without leading zero (3) %1: Sekundy bez zera z przodu (3) - + %1: Seconds with leading zero (03) %1: Sekundy z zerem z przodu (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM zegar 12-godzinny (duża lub mała litera) - + %1: Timezone %1: Strefa czasowa - + Time Codes Kody czasu - + Valid Date Codes: Poprawne formaty daty: - + %1: Numeric day without a leading zero (1) %1: Data w formie numerycznej bez zera z przodu (1) - + %1: Numeric day with leading zero (01) %1: Data w formie numerycznej z zerem z przodu (01) - + %1: Day as abbreviation (localized) %1: Dzień w formie skróconej (zlokalizowany) - + %1: Day as full name (localized) %1: Pełna nazwa dnia (zlokalizowana) - + %1: Numeric month without leading zero (2) %1: Miesiąc w formie numerycznej bez zera z przodu (2) - + %1: Numeric month with leading zero (02) %1: Miesiąc w formie numerycznej z zerem z przodu (02) - + %1: Month as abbreviation (localized) %1: Miesiąc w formie skróconej (zlokalizowany) - + %1: Month as full name (localized) %1: Pełna nazwa miesiąca (zlokalizowana) - + %1: Year as 2-digit number (15) %1: Rok w formie dwucyfrowej (15) - + %1: Year as 4-digit number (2015) %1: Rok w formie czterocyfrowej (2015) - + Text may be contained within single-quotes to ignore replacements Tekst może być zamknięty w pojedynczym cudzysłowie by zignorować zamienniki - + Date Codes Kody daty diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pt.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pt.ts index e502cc9a..358f9f99 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pt.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pt.ts @@ -8,6 +8,11 @@ Select Application Selecione a Aplicação + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ Substitui-lo? - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1077,7 +1072,7 @@ Substitui-lo? - Compositor Settings + Window Effects @@ -1165,31 +1160,27 @@ Substitui-lo? - - - - - + Click to Set Clique para Definir - + %1 (%2) %1 (%2) - + Select Binary Selecionar Binário - + Invalid Binary Binário Inválido - + The selected binary is not executable! O binário selecionado não é executável! @@ -1442,7 +1433,7 @@ Substitui-lo? - + Desktop Settings @@ -1460,61 +1451,33 @@ Substitui-lo? - + Interface Configuration Configuração de Interface - + Appearance Aparência - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1681,142 +1644,142 @@ Substitui-lo? Primeiro a Data depois a Hora - + Desktop Settings - + Select an image Selecione uma imagem - + Images Imagens - + Reset User Image Restaurar Imagem do usuário - + Would you like to reset the user image to the system default? Você gostaria de redefinir a imagem do usuário para o padrão do sistema? - + Valid Time Codes: Códigos de Horários Válidos: - + %1: Hour without leading zero (1) % 1: horas sem zero à esquerda (1) - + %1: Hour with leading zero (01) % 1: horas com zero à esquerda (01) - + %1: Minutes without leading zero (2) % 1: Minutos sem zero à esquerda (2) - + %1: Minutes with leading zero (02) % 1: Minutos com zero à esquerda (02) - + %1: Seconds without leading zero (3) % 1: Segundos sem zero à esquerda (3) - + %1: Seconds with leading zero (03) % 1: Segundos com zero à esquerda (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12 horas) relógio (maiúsculo ou minúsculo) - + %1: Timezone %1: Fuso Horário - + Time Codes Códigos de Hora - + Valid Date Codes: Códigos de Datas Válidos: - + %1: Numeric day without a leading zero (1) % 1: Dia numérico sem um zero à esquerda (1) - + %1: Numeric day with leading zero (01) % 1: Dia numérico sem um zero à esquerda (01) - + %1: Day as abbreviation (localized) % 1: Dia com abreviação (localizada) - + %1: Day as full name (localized) % 1: Dia como nome completo (localizado) - + %1: Numeric month without leading zero (2) % 1: Mês numérico sem zero à esquerda (2) - + %1: Numeric month with leading zero (02) %1: Mês Numérico sem o zero à esquerda (02) - + %1: Month as abbreviation (localized) % 1: Mês com abreviação (localizado) - + %1: Month as full name (localized) %1: Mês com nome completo (localizado) - + %1: Year as 2-digit number (15) %1: Ano com 2 dígitos (15) - + %1: Year as 4-digit number (2015) %1: Ano com 4 dígitos (2015) - + Text may be contained within single-quotes to ignore replacements O texto pode conter dentro de aspas simples para ignorar substituições - + Date Codes Códigos de Datas diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pt_BR.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pt_BR.ts index 08fb6b3b..3e3078b7 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_pt_BR.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_pt_BR.ts @@ -8,6 +8,11 @@ Select Application Selecionar Aplicativo + + + Search for.... + Pesquisar por... + ColorDialog @@ -340,7 +345,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. Inicia menu alternativo, mostrando arquivos, pastas e favoritos do usuário. @@ -773,16 +778,6 @@ Menu Menu - - - Input Device Settings - Configurações do dispositivo de entrada - - - - Adjust keyboard and mouse devices - Ajustar dispositivos de teclado e mouse - Desktop Plugins @@ -985,12 +980,12 @@ Selecionar monitor/área de trabalho para configurar - + Unsaved Changes Alterações não salvas - + This page currently has unsaved changes, do you wish to save them now? Esta página foi alterada. Deseja salvar as alterações? @@ -1077,8 +1072,8 @@ - Compositor Settings - Configurações do editor + Window Effects + Efeitos da janela @@ -1165,31 +1160,27 @@ Aplicativos padrões - - - - - + Click to Set Clique para definir - + %1 (%2) %1 (%2) - + Select Binary Selecionar binário - + Invalid Binary Binário inválido - + The selected binary is not executable! O binário selecionado não é executável! @@ -1253,12 +1244,12 @@ - "Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key - "Mod1": tecla Alt -"Mod4": tecla Windows/Mac -"Controle": tecla Ctrl + "Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key + "Mod1": tecla Alt +"Mod4": tecla Windows/Mac +"Controle": tecla Ctrl @@ -1444,7 +1435,7 @@ Importar - + Desktop Settings Configurações da área de trabalho @@ -1462,62 +1453,34 @@ Pesquisar por... - + Interface Configuration Configuração da Interface - + Appearance Aparência - + Desktop Defaults Padrões da área de trabalho - + User Settings Configurações do usuário - - Desktop Settings - Configurações da área de trabalho - - - - page_mouse - - - Form - Formulário - - - - Input Device Settings - Configurações do dispositivo de entrada - - - - Mouse #%1 - Mouse #%1 - - - - Keyboard #%1 - Teclado #%1 - - - - Extension Device #%1 - Dispositivo de extensão #% 1 + + System Settings + - - Master Device - Dispositivo principal + + Desktop Settings + Configurações da área de trabalho @@ -1683,142 +1646,142 @@ Data antes da Hora - + Desktop Settings Configurações da área de trabalho - + Select an image Selecione uma imagem - + Images Imagens - + Reset User Image Restaurar imagem do usuário - + Would you like to reset the user image to the system default? Gostaria de restaurar a imagem de usuário para o padrão do sistema? - + Valid Time Codes: Códigos de hora válidos: - + %1: Hour without leading zero (1) %1: Hora sem zero à esquerda (1) - + %1: Hour with leading zero (01) %1: Hora com zero à esquerda (01) - + %1: Minutes without leading zero (2) %1: Minutos sem zero à esquerda (2) - + %1: Minutes with leading zero (02) %1: Minutos com zero à esquerda (02) - + %1: Seconds without leading zero (3) %1: Segundos sem zero à esquerda (3) - + %1: Seconds with leading zero (03) %1: Segundos com zero à esquerda (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-horas) relógio (maiúsculo ou minúsculo) - + %1: Timezone %1: Fuso horário - + Time Codes Códigos de hora - + Valid Date Codes: Códigos de data válidos: - + %1: Numeric day without a leading zero (1) %1: Número do dia sem zero à esquerda (1) - + %1: Numeric day with leading zero (01) %1: Número do dia com zero à esquerda (01) - + %1: Day as abbreviation (localized) % 1: Dia como abreviatura (localizada) - + %1: Day as full name (localized) % 1: Dia como nome completo (localizado) - + %1: Numeric month without leading zero (2) % 1: mês numérico sem zero inicial (2) - + %1: Numeric month with leading zero (02) % 1: mês numérico com zero inicial (02) - + %1: Month as abbreviation (localized) %1: Mês abreviado (localizado) - + %1: Month as full name (localized) % 1: Mês como nome completo (localizado) - + %1: Year as 2-digit number (15) % 1: Ano como número de 2 dígitos (15) - + %1: Year as 4-digit number (2015) %1: Ano com número de 4 dígitos (2015) - + Text may be contained within single-quotes to ignore replacements O texto pode estar entre aspas simples para ignorar substituições - + Date Codes Códigos de data diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ro.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ro.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ro.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ro.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ru.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ru.ts index 2e3be541..04a3904b 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ru.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ru.ts @@ -8,6 +8,11 @@ Select Application Выбор Приложения + + + Search for.... + Искать.... + ColorDialog @@ -339,7 +344,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. Альтернативное стартовое меню, сфокусированное на пользовательских файлах, каталогах и Избранном. @@ -772,16 +777,6 @@ Menu Меню - - - Input Device Settings - Настройки устройств ввода - - - - Adjust keyboard and mouse devices - Настройка клавиатуры и мыши - Desktop Plugins @@ -983,12 +978,12 @@ Выберете монитор / рабочий стол для настройки - + Unsaved Changes Несохраненные изменения - + This page currently has unsaved changes, do you wish to save them now? Эта страница в настоящее время имеет несохраненные изменения, вы хотите сохранить их сейчас? @@ -1075,8 +1070,8 @@ - Compositor Settings - Настройки наборщика + Window Effects + Оконные эффекты @@ -1163,31 +1158,27 @@ Приложения по умолчанию - - - - - + Click to Set Нажмите, что бы выбрать - + %1 (%2) %1 (%2) - + Select Binary Выбрать Бинарный Файл - + Invalid Binary Неверное Бинарное Приложение - + The selected binary is not executable! Выбранный бинарный файл не исполняемый! @@ -1251,12 +1242,12 @@ - "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 @@ -1442,7 +1433,7 @@ Импорт - + Desktop Settings Параметры рабочего стола @@ -1460,62 +1451,34 @@ Искать.... - + Interface Configuration Настройка интерфейса - + Appearance Оформление - + Desktop Defaults Рабочий стол по умолчанию - + User Settings Пользовательские настройки - - Desktop Settings - Параметры рабочего стола - - - - page_mouse - - - Form - Форма - - - - Input Device Settings - Настройки устройств ввода - - - - Mouse #%1 - Мышь #%1 - - - - Keyboard #%1 - Клавиатура #%1 - - - - Extension Device #%1 - Дополнительное устройство #%1 + + System Settings + - - Master Device - Главное устройство + + Desktop Settings + Параметры рабочего стола @@ -1681,142 +1644,142 @@ Вначале Дата потом Время - + Desktop Settings Параметры рабочего стола - + Select an image Выберите изображение - + Images Изображения - + Reset User Image Сброс изображения пользователя - + Would you like to reset the user image to the system default? Хотите вернуть изображения пользователя по умолчанию? - + Valid Time Codes: Допустимые коды Времени: - + %1: Hour without leading zero (1) %1: Часы без первого нуля (1) - + %1: Hour with leading zero (01) %1: Часы с первым нулем (01) - + %1: Minutes without leading zero (2) %1: Минуты без первого нуля (2) - + %1: Minutes with leading zero (02) %1: Минуты с первым нулем (02) - + %1: Seconds without leading zero (3) %1: Секунды без первого нуля (3) - + %1: Seconds with leading zero (03) %1: Секунды с первым нулем (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM / PM (12-часовой) часы (верхний или нижний регистр) - + %1: Timezone %1: Временная зона - + Time Codes Коды Времени - + Valid Date Codes: Допустимые коды Даты: - + %1: Numeric day without a leading zero (1) %1: Дни без первого нуля (1) - + %1: Numeric day with leading zero (01) %1: Дни с первым нулем (01) - + %1: Day as abbreviation (localized) %1: День, как аббревиатура - + %1: Day as full name (localized) %1: День, как полное наименование - + %1: Numeric month without leading zero (2) %1: Месяц без первого нуля (2) - + %1: Numeric month with leading zero (02) %1: Месяц с первым нулем (02) - + %1: Month as abbreviation (localized) %1: Месяц, как аббревиатура - + %1: Month as full name (localized) %1: Месяц, как полное наименование - + %1: Year as 2-digit number (15) %1: Год, как 2-ое число (15) - + %1: Year as 4-digit number (2015) %1: Год, как 4-ое число (2015) - + Text may be contained within single-quotes to ignore replacements Текст может быть в одиночных кавычках, чтобы игнорировать замены - + Date Codes Коды Даты diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sk.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sk.ts index dcd181ad..8871e2c8 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sk.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sk.ts @@ -8,6 +8,11 @@ Select Application Výber aplikácie + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Má sa prepísať? Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ Má sa prepísať? - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1077,7 +1072,7 @@ Má sa prepísať? - Compositor Settings + Window Effects @@ -1165,31 +1160,27 @@ Má sa prepísať? - - - - - + Click to Set Kliknúť pre nastavenie - + %1 (%2) %1 (%2) - + Select Binary Vyberte binary - + Invalid Binary Neplatné binary - + The selected binary is not executable! @@ -1442,7 +1433,7 @@ Má sa prepísať? - + Desktop Settings @@ -1460,61 +1451,33 @@ Má sa prepísať? - + Interface Configuration Konfigurácia rozhrania - + Appearance Vzhľad - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1681,142 +1644,142 @@ Má sa prepísať? Naskôr dátum, potom čas - + Desktop Settings - + Select an image Vybrať obrázok - + Images Obrázky - + Reset User Image Vybudovať obrázok užívateľa - + Would you like to reset the user image to the system default? Chcete,aby obrázok užívateľa bol predvolený systémom? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) %1: minúta bez úvodnej nuly (2) - + %1: Minutes with leading zero (02) %1: minúta s úvodnou nulou (2) - + %1: Seconds without leading zero (3) %1: sekundy bez úvodnej nuly (3) - + %1: Seconds with leading zero (03) %1: sekundy s úvodnou nulou (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone %1: Časová zóna - + Time Codes Časové kódy - + Valid Date Codes: Platné dátumové kódy: - + %1: Numeric day without a leading zero (1) %1: deň bez vodiacej nuly (1) - + %1: Numeric day with leading zero (01) %1: deň s vodiacou nulou (01) - + %1: Day as abbreviation (localized) %1: skrátený tvar dňa (lokalizované ) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) %1: mesiac bez vodiacej nuly (2) - + %1: Numeric month with leading zero (02) %1: mesiac s vodiacou nulou (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sl.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sl.ts index d5dbe671..2f5b5b2c 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sl.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sl.ts @@ -8,6 +8,11 @@ Select Application Izberi program + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1076,7 +1071,7 @@ - Compositor Settings + Window Effects @@ -1164,31 +1159,27 @@ - - - - - + Click to Set Kliknite za nastavitev - + %1 (%2) %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1441,7 +1432,7 @@ - + Desktop Settings @@ -1459,61 +1450,33 @@ - + Interface Configuration - + Appearance Videz - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - Forma - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1680,142 +1643,142 @@ - + Desktop Settings - + Select an image Izbor slike - + Images Slike - + Reset User Image Ponastavi sliko uporabnika - + Would you like to reset the user image to the system default? Ponastavi uporabnikovo sliko na sistemske prednastavitve? - + Valid Time Codes: Veljavne oznake za čas: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: Veljavne oznake za datum: - + %1: Numeric day without a leading zero (1) %1: numerični dan brez spremljajoče ničle (1) - + %1: Numeric day with leading zero (01) %1: numerični dan s spremljajočo ničlo (01) - + %1: Day as abbreviation (localized) %1: dan kot okrajšava (lokalizirano) - + %1: Day as full name (localized) %1: dan kot polno ime (lokalizirano) - + %1: Numeric month without leading zero (2) %1: numerični mesec brez spremljajoče ničle (2) - + %1: Numeric month with leading zero (02) %1: numerični mesec s spremljajočo ničlo (02) - + %1: Month as abbreviation (localized) %1: mesec kot okrajšava (lokalizirano) - + %1: Month as full name (localized) %1: mesec s polnim imenom (lokalizirano) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sr.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sr.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sr.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sr.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sv.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sv.ts index db6f3cfe..7cd20f2e 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sv.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sv.ts @@ -8,6 +8,11 @@ Select Application Välj program + + + Search for.... + Sök efter.... + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ Välj bildskärm/skrivbord att konfigurera - + Unsaved Changes Osparade ändringar - + This page currently has unsaved changes, do you wish to save them now? Den här sidan har osparade ändringar, vill du spara dem nu? @@ -1077,8 +1072,8 @@ - Compositor Settings - Kompositionsinställningar + Window Effects + Fönster effekter @@ -1165,31 +1160,27 @@ Standardprogram - - - - - + Click to Set Klicka för att ställa in - + %1 (%2) %1 (%2) - + Select Binary Välj binär - + Invalid Binary Ogiltig binär - + The selected binary is not executable! Den valda binären är inte körbar! @@ -1444,7 +1435,7 @@ - + Desktop Settings Skrivbordsinställningar @@ -1462,62 +1453,34 @@ Sök efter.... - + Interface Configuration Gränssnittsinställningar - + Appearance Utseende - + Desktop Defaults - + User Settings Användarinställningar - - Desktop Settings - Skrivbordsinställningar - - - - page_mouse - - - Form - Formulär - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + Skrivbordsinställningar @@ -1683,142 +1646,142 @@ Datum först sen Tid - + Desktop Settings Skrivbordsinställningar - + Select an image Välj en bild - + Images Bilder - + Reset User Image Återställ användarbild - + Would you like to reset the user image to the system default? Vill du återställa användar bilden till systemets standard? - + Valid Time Codes: Giltiga tidskoder: - + %1: Hour without leading zero (1) %1: Timme utan inledande nolla (1) - + %1: Hour with leading zero (01) %1: Timme med inledande nolla (01) - + %1: Minutes without leading zero (2) %1: Minuter utan inledande nolla (2) - + %1: Minutes with leading zero (02) %1: Minuter med inledande nolla (02) - + %1: Seconds without leading zero (3) %1: Sekunder utan inledande nolla (3) - + %1: Seconds with leading zero (03) %1: Sekunder med inledande nolla (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-timmars) klocka (stora och små bokstäver) - + %1: Timezone %1: Tidszon - + Time Codes Tidskoder - + Valid Date Codes: Accepterade Datum koder: - + %1: Numeric day without a leading zero (1) %1: Numerisk dag utan en inledande nolla (1) - + %1: Numeric day with leading zero (01) %1: Numerisk dag med inledande nolla (01) - + %1: Day as abbreviation (localized) %1: Dag som förkortning (lokaliserad) - + %1: Day as full name (localized) %1: Dag som fullständigt namn (lokaliserad) - + %1: Numeric month without leading zero (2) %1: Numerisk månad utan inledande nolla (2) - + %1: Numeric month with leading zero (02) %1: Numerisk månad med inledande nolla (02) - + %1: Month as abbreviation (localized) %1: Månad som förkortning (lokaliserad) - + %1: Month as full name (localized) %1: Månad som fullständigt namn (lokaliserad) - + %1: Year as 2-digit number (15) %1: Året som 2-siffrigt nummer (15) - + %1: Year as 4-digit number (2015) %1: Året som 4-siffrigt nummer (2015) - + Text may be contained within single-quotes to ignore replacements Text kan inrymmas i enkla citattecken att ignorera ersättare - + Date Codes Datumkoder diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sw.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sw.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_sw.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_sw.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ta.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ta.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_ta.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_ta.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_tg.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_tg.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_tg.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_tg.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_th.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_th.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_th.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_th.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_tr.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_tr.ts index b27fde67..b3cf5b42 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_tr.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_tr.ts @@ -8,6 +8,11 @@ Select Application Uygulama Seç + + + Search for.... + Ara.... + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -985,12 +980,12 @@ Yapılandırmak için monitör/masaüstü seç - + Unsaved Changes Kaydedilmemiş Değişiklikler - + This page currently has unsaved changes, do you wish to save them now? Bu sayfada kaydedilmemiş değişiklikler bulunuyor, bunları şimdi kaydetmek ister misiniz? @@ -1077,8 +1072,8 @@ - Compositor Settings - Kompozitör Ayarları + Window Effects + Pencere Efektleri @@ -1165,31 +1160,27 @@ Varsayılan Uygulamalar - - - - - + Click to Set Ayarlamak için Tıkla - + %1 (%2) %1 (%2) - + Select Binary İkili Seç - + Invalid Binary Geçersiz İkili - + The selected binary is not executable! Seçilen ikili çalıştırılabilir değil! @@ -1444,7 +1435,7 @@ - + Desktop Settings Masaüstü Ayarları @@ -1462,62 +1453,34 @@ Ara.... - + Interface Configuration Arabirim Yapılandırması - + Appearance Görünüm - + Desktop Defaults - + User Settings Kullanıcı Ayarları - - Desktop Settings - Masaüstü Ayarları - - - - page_mouse - - - Form - Form - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + Masaüstü Ayarları @@ -1683,142 +1646,142 @@ Önce Tarih sonra Saat - + Desktop Settings Masaüstü Ayarları - + Select an image Bir resim seç - + Images Resimler - + Reset User Image Kullanıcı Resmini Sıfırla - + Would you like to reset the user image to the system default? Kullanıcı resmini sistem varsayılanına sıfırlamak ister misiniz? - + Valid Time Codes: Geçerli Zaman Kodları: - + %1: Hour without leading zero (1) %1: Ön sıfırsız saat (1) - + %1: Hour with leading zero (01) %1: Ön sıfırlı saat (01) - + %1: Minutes without leading zero (2) %1: Ön sıfırsız dakika (2) - + %1: Minutes with leading zero (02) %1: Ön sıfırlı dakika (02) - + %1: Seconds without leading zero (3) %1: Ön sıfırsız saniye (3) - + %1: Seconds with leading zero (03) %1: Ön sıfırlı saniye (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12 saat) biçimi (büyük ya da küçük harf) - + %1: Timezone %1: Zaman dilimi - + Time Codes Zaman Kodları - + Valid Date Codes: Geçerli Tarih Kodları: - + %1: Numeric day without a leading zero (1) %1: Ön sıfırsız sayısal gün (1) - + %1: Numeric day with leading zero (01) %1: Ön sıfırlı sayısal gün (01) - + %1: Day as abbreviation (localized) %1: Kısaltma şeklinde gün (yerelleştirilmiş) - + %1: Day as full name (localized) %1: Tam adıyla gün (yerelleştirilmiş) - + %1: Numeric month without leading zero (2) %1: Ön sıfırsız sayısal ay (2) - + %1: Numeric month with leading zero (02) %1: Ön sıfırlı sayısal ay (02) - + %1: Month as abbreviation (localized) %1: Kısaltma şeklinde ay (yerelleştirilmiş) - + %1: Month as full name (localized) %1: Tam adıyla ay (yerelleştirilmiş) - + %1: Year as 2-digit number (15) %1: 2 haneli sayı şeklinde yıl (15) - + %1: Year as 4-digit number (2015) %1: 4 haneli sayı şeklinde yıl (2015) - + Text may be contained within single-quotes to ignore replacements Değiştirmeleri görmezden gelmek için metin tek tırnak içine alınabilir - + Date Codes Tarih Kodları diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_uk.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_uk.ts index 35a28cc5..2f59e710 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_uk.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_uk.ts @@ -8,6 +8,11 @@ Select Application Вибрати програму + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1076,7 +1071,7 @@ - Compositor Settings + Window Effects @@ -1164,31 +1159,27 @@ - - - - - + Click to Set Натисніть, щоб встановити - + %1 (%2) %1 (%2) - + Select Binary Виберіть бінарний файл - + Invalid Binary Некоректний бінарний файл - + The selected binary is not executable! Вибраний бінарний файл не виконується! @@ -1441,7 +1432,7 @@ - + Desktop Settings @@ -1459,61 +1450,33 @@ - + Interface Configuration Налаштування інтерфейсу - + Appearance Вигляд - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - Форма - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1680,142 +1643,142 @@ Спочатку дата, потім Час - + Desktop Settings - + Select an image Вибрати зображення - + Images Зображення - + Reset User Image Скинути зображення користувача - + Would you like to reset the user image to the system default? Хочете повернути зображення користувача на початкове? - + Valid Time Codes: Доступні часові коди: - + %1: Hour without leading zero (1) %1: Годинник без початкового нуля (1) - + %1: Hour with leading zero (01) %1: Годинник з початковим нулем (01) - + %1: Minutes without leading zero (2) %1: Хвилини без початкового нуля (2) - + %1: Minutes with leading zero (02) %1: Хвилини з початковим нулем (02) - + %1: Seconds without leading zero (3) %1: Секунди без початкового нуля (3) - + %1: Seconds with leading zero (03) %1: Секунди з початковим нулем (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: AM/PM (12-годинний) годинник (верхній або нижній регістр) - + %1: Timezone %1: Часовий пояс - + Time Codes Часові коди - + Valid Date Codes: Допустимі коди дати: - + %1: Numeric day without a leading zero (1) %1: Дні без початкового нуля (1) - + %1: Numeric day with leading zero (01) %1: Дні з першим нулем (01) - + %1: Day as abbreviation (localized) %1: День як абревіатура - + %1: Day as full name (localized) %1: День як повне найменування - + %1: Numeric month without leading zero (2) %1: Місяць без початкового нуля (2) - + %1: Numeric month with leading zero (02) %1: Місяць з початковим нулем(02) - + %1: Month as abbreviation (localized) %1: Місяць як абревіатура - + %1: Month as full name (localized) %1: Місяць як повне найменування - + %1: Year as 2-digit number (15) %1: Рік як 2-зачне число (15) - + %1: Year as 4-digit number (2015) %1: Рік як 4-значне число (2015) - + Text may be contained within single-quotes to ignore replacements Текст може бути в одинарних лапках, щоб ігнорувати заміни - + Date Codes Код дати diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_uz.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_uz.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_uz.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_uz.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_vi.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_vi.ts index b89c8713..334213c9 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_vi.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_vi.ts @@ -8,6 +8,11 @@ Select Application Chọn ứng dụng + + + Search for.... + + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1076,7 +1071,7 @@ - Compositor Settings + Window Effects @@ -1164,31 +1159,27 @@ - - - - - + Click to Set Nhấn để sửa - + %1 (%2) %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1441,7 +1432,7 @@ - + Desktop Settings @@ -1459,61 +1450,33 @@ - + Interface Configuration Cấu hình giao diện - + Appearance Diện mạo - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1680,142 +1643,142 @@ - + Desktop Settings - + Select an image Chọn một ảnh - + Images Ảnh - + Reset User Image Đặt lại ảnh người dùng - + Would you like to reset the user image to the system default? Bạn có muốn đặt lại ảnh người dùng cho mặc định hệ thống? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes Mã thời gian - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_CN.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_CN.ts index ddcd7cc8..92693a5b 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_CN.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_CN.ts @@ -8,6 +8,11 @@ Select Application 选择程序 + + + Search for.... + 查找… + ColorDialog @@ -773,16 +778,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -984,12 +979,12 @@ 选择要设置的显示器或桌面 - + Unsaved Changes 未保存的更改 - + This page currently has unsaved changes, do you wish to save them now? 此页面当前有未保存的更改,您希望保存吗? @@ -1076,8 +1071,8 @@ - Compositor Settings - 混成器设置 + Window Effects + 窗口特效 @@ -1164,31 +1159,27 @@ 默认应用程序 - - - - - + Click to Set 单击以设定 - + %1 (%2) %1 (%2) - + Select Binary 选择二进制程序 - + Invalid Binary 无效的二进制程序 - + The selected binary is not executable! 选中的二进制文件不可执行! @@ -1443,7 +1434,7 @@ - + Desktop Settings 桌面设置 @@ -1461,62 +1452,34 @@ 查找… - + Interface Configuration 界面配置 - + Appearance 外观 - + Desktop Defaults - + User Settings 用户设置 - - Desktop Settings - 桌面设置 - - - - page_mouse - - - Form - 表单 - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 + + System Settings - - Extension Device #%1 - - - - - Master Device - + + Desktop Settings + 桌面设置 @@ -1682,142 +1645,142 @@ 日期显示于时间之上 - + Desktop Settings 桌面设置 - + Select an image 选择一张图片 - + Images 图像 - + Reset User Image 重置用户图标 - + Would you like to reset the user image to the system default? 您希望将用户图标重置为系统默认吗? - + Valid Time Codes: 可用的时间代码: - + %1: Hour without leading zero (1) %1: 不带前导0的小时 (1) - + %1: Hour with leading zero (01) %1: 带前导0的小时 (01) - + %1: Minutes without leading zero (2) %1: 不带前导0的分钟 (2) - + %1: Minutes with leading zero (02) %1: 带前导0的分钟 (02) - + %1: Seconds without leading zero (3) %1: 不带前导0的秒数 (3) - + %1: Seconds with leading zero (03) %1: 带前导0的秒数 (03) - + %1: AM/PM (12-hour) clock (upper or lower case) %1: 上午/下午 (12小时) 时钟 (大写或小写) - + %1: Timezone %1: 时区 - + Time Codes 时间代码 - + Valid Date Codes: 可用的日期代码: - + %1: Numeric day without a leading zero (1) %1: 不包含前导0的日 (1) - + %1: Numeric day with leading zero (01) %1: 包含前导0的日 (01) - + %1: Day as abbreviation (localized) %1: 缩略的星期几 (本地化的) - + %1: Day as full name (localized) %1: 完整的星期几 (本地化的) - + %1: Numeric month without leading zero (2) %1: 不带前导0的月份 (2) - + %1: Numeric month with leading zero (02) %1: 带前导0的月份 (02) - + %1: Month as abbreviation (localized) %1: 缩略的月份 (本地化的) - + %1: Month as full name (localized) %1: 完整的月份 (本地化的) - + %1: Year as 2-digit number (15) %1: 两位数年份 (15) - + %1: Year as 4-digit number (2015) %1: 四位数年份 (2015) - + Text may be contained within single-quotes to ignore replacements 可将文字包在单引号中来避免转义 - + Date Codes 日期代码 diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_HK.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_HK.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_HK.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_HK.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_TW.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_TW.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_TW.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_zh_TW.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-config/i18n/lumina-config_zu.ts b/src-qt5/core-utils/lumina-config/i18n/lumina-config_zu.ts index 09540eda..2a0457f2 100644 --- a/src-qt5/core-utils/lumina-config/i18n/lumina-config_zu.ts +++ b/src-qt5/core-utils/lumina-config/i18n/lumina-config_zu.ts @@ -8,6 +8,11 @@ Select Application + + + Search for.... + + ColorDialog @@ -772,16 +777,6 @@ Menu - - - Input Device Settings - - - - - Adjust keyboard and mouse devices - - Desktop Plugins @@ -983,12 +978,12 @@ - + Unsaved Changes - + This page currently has unsaved changes, do you wish to save them now? @@ -1075,7 +1070,7 @@ - Compositor Settings + Window Effects @@ -1163,31 +1158,27 @@ - - - - - + Click to Set - + %1 (%2) - + Select Binary - + Invalid Binary - + The selected binary is not executable! @@ -1440,7 +1431,7 @@ - + Desktop Settings @@ -1458,61 +1449,33 @@ - + Interface Configuration - + Appearance - + Desktop Defaults - + User Settings - - Desktop Settings + + System Settings - - - page_mouse - - Form - - - - - Input Device Settings - - - - - Mouse #%1 - - - - - Keyboard #%1 - - - - - Extension Device #%1 - - - - - Master Device + + Desktop Settings @@ -1679,142 +1642,142 @@ - + Desktop Settings - + Select an image - + Images - + Reset User Image - + Would you like to reset the user image to the system default? - + Valid Time Codes: - + %1: Hour without leading zero (1) - + %1: Hour with leading zero (01) - + %1: Minutes without leading zero (2) - + %1: Minutes with leading zero (02) - + %1: Seconds without leading zero (3) - + %1: Seconds with leading zero (03) - + %1: AM/PM (12-hour) clock (upper or lower case) - + %1: Timezone - + Time Codes - + Valid Date Codes: - + %1: Numeric day without a leading zero (1) - + %1: Numeric day with leading zero (01) - + %1: Day as abbreviation (localized) - + %1: Day as full name (localized) - + %1: Numeric month without leading zero (2) - + %1: Numeric month with leading zero (02) - + %1: Month as abbreviation (localized) - + %1: Month as full name (localized) - + %1: Year as 2-digit number (15) - + %1: Year as 4-digit number (2015) - + Text may be contained within single-quotes to ignore replacements - + Date Codes diff --git a/src-qt5/core-utils/lumina-search/i18n/lumina-search_fr.ts b/src-qt5/core-utils/lumina-search/i18n/lumina-search_fr.ts index 6b08de19..f7d3d35a 100644 --- a/src-qt5/core-utils/lumina-search/i18n/lumina-search_fr.ts +++ b/src-qt5/core-utils/lumina-search/i18n/lumina-search_fr.ts @@ -90,7 +90,7 @@ Save Screenshot - Enregistrer la Capture d'Écran + Enregistrer la Capture d'Écran diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_af.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_af.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_af.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_af.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ar.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ar.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ar.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ar.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_az.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_az.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_az.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_az.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bg.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bg.ts index 38f57767..f65c71ad 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bg.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bg.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Кликнете за задаване - + Select Application Избор на програма - + Name: Име: @@ -721,32 +721,32 @@ Списък на прозорците - + Lumina Desktop Графична среда Lumina - + Workspace %1 Работен плот %1 - + Terminal Терминал - + Lock Session - + Browse Files Разглеждане на файлове - + Leave Напускане @@ -771,8 +771,8 @@ LSession - - + + Desktop Работен плот @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Активиране на прозореца - + Minimize Window Минимизиране на прозореца - + Restore Window Възстановяване на прозореца - + Maximize Window Максимизиране на прозореца - + Close Window Затваряне на прозореца - + Show All Windows Показване на всички прозорци - + Minimize All Windows Минимизиране на всички прозорци - + Close All Windows Затваряне на всички прозорци diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bn.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bn.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bn.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bn.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bs.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bs.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bs.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_bs.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ca.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ca.ts index ba9c5848..1ad9da40 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ca.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ca.ts @@ -21,7 +21,7 @@ Select Application - Seleccioneu l'aplicació + Seleccioneu l'aplicació @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Cliqueu per establir-ho - + Select Application - Seleccioneu l'aplicació + Seleccioneu l'aplicació - + Name: Nom: @@ -146,7 +146,7 @@ Starting the Lumina Desktop... - S'inicia l'escriptori Lumina... + S'inicia l'escriptori Lumina... @@ -161,22 +161,22 @@ Keep up with desktop news! - Mantingueu-vos al dia de les notícies de l'escriptori! + Mantingueu-vos al dia de les notícies de l'escriptori! There is a full handbook of information about the desktop available online. - Hi ha un manual ple d'informació de l'escriptori disponible en línia. + Hi ha un manual ple d'informació de l'escriptori disponible en línia. Want to change the interface? Everything is customizable in the desktop configuration! - Voleu canviar-ne la interfície? Tot és personalitzable des de la configuració de l'escriptori! + Voleu canviar-ne la interfície? Tot és personalitzable des de la configuració de l'escriptori! Lumina can easily reproduce the interface from most other desktop environments. - El Lumina pot reproduir fàcilment la interfície de la majoria d'altres entorns d'escriptori. + El Lumina pot reproduir fàcilment la interfície de la majoria d'altres entorns d'escriptori. @@ -186,7 +186,7 @@ I have never been hurt by what I have not said - Mai no m'ha fet mal el que no he dit. + Mai no m'ha fet mal el que no he dit. @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. No espereu fer forts els febles enfonsant forts. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. No es pot saber massa, però es pot dir massa. @@ -231,7 +231,7 @@ Any society that would give up a little liberty to gain a little security will deserve neither and lose both. - Qualsevol societat que deixi de banda una mica de llibertat per guanyar una mica de seguretat no en mereixerà ni una ni l'altra i les perdrà totes dues. + Qualsevol societat que deixi de banda una mica de llibertat per guanyar una mica de seguretat no en mereixerà ni una ni l'altra i les perdrà totes dues. @@ -291,7 +291,7 @@ The only way to do great work is to love what you do. - L'única manera de fer una bona feina és que us agradi el que feu. + L'única manera de fer una bona feina és que us agradi el que feu. @@ -300,8 +300,8 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. - Només hi ha dues coses infinites: l'univers i l'estupidesa humana, i no estic segur de la primera. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Només hi ha dues coses infinites: l'univers i l'estupidesa humana, i no estic segur de la primera. @@ -310,8 +310,8 @@ - Do, or do not. There is no 'try'. - Fes-ho o no. No hi ha un "intent". + Do, or do not. There is no 'try'. + Fes-ho o no. No hi ha un "intent". @@ -321,7 +321,7 @@ Good people do not need laws to tell them to act responsibly, while bad people will find a way around the laws. - La gent bona no necessita lleis que els diguin d'actuar responsablement, mentre que la mala gent trobarà una manera d'evitar les lleis. + La gent bona no necessita lleis que els diguin d'actuar responsablement, mentre que la mala gent trobarà una manera d'evitar les lleis. @@ -330,8 +330,8 @@ - It's kind of fun to do the impossible. - És bastant divertit fer l'impossible. + It's kind of fun to do the impossible. + És bastant divertit fer l'impossible. @@ -346,7 +346,7 @@ Success usually comes to those who are too busy to be looking for it. - L'èxit normalment arriba als que estan massa enfeinats per buscar-lo. + L'èxit normalment arriba als que estan massa enfeinats per buscar-lo. @@ -371,7 +371,7 @@ Sometimes it is not enough that we do our best; we must do what is required. - Algunes vegades no n'hi ha prou amb fer-ho el millor que podem, hem de fer el que cal. + Algunes vegades no n'hi ha prou amb fer-ho el millor que podem, hem de fer el que cal. @@ -396,7 +396,7 @@ Loading User Preferences … - Carregant les preferències de l'usuari… + Carregant les preferències de l'usuari… @@ -421,7 +421,7 @@ Preparing Workspace … - Preparant l'espai de treball… + Preparant l'espai de treball… @@ -431,7 +431,7 @@ Starting App: %1 - Iniciant l'aplicació: %1 + Iniciant l'aplicació: %1 @@ -482,7 +482,7 @@ Pin to Desktop - Enganxa a l'escriptori + Enganxa a l'escriptori @@ -510,7 +510,7 @@ Error parsing script output: %1 - Error analitzant la sortida de l'script: %1 + Error analitzant la sortida de l'script: %1 @@ -634,7 +634,7 @@ Use System Time - Usa l'hora del sistema + Usa l'hora del sistema @@ -642,17 +642,17 @@ Launch Item - Obre l'ítem + Obre l'ítem Start Moving Item - Inicia el trasllat de l'ítem + Inicia el trasllat de l'ítem Start Resizing Item - Inicia el canvi de mida de l'ítem + Inicia el canvi de mida de l'ítem @@ -667,7 +667,7 @@ Remove Item - Elimina l'ítem + Elimina l'ítem @@ -721,32 +721,32 @@ Llista de finestres - + Lumina Desktop Escriptori Lumina - + Workspace %1 Espai de treball %1 - + Terminal Terminal - + Lock Session Bloqueja la sessió - + Browse Files Navega pels fitxers - + Leave Surt @@ -771,8 +771,8 @@ LSession - - + + Desktop Escriptori @@ -800,7 +800,7 @@ Launch Audio Mixer - Obre el Mesclador d'àudio + Obre el Mesclador d'àudio @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Activa la finestra - + Minimize Window Minimitza la finestra - + Restore Window Restaura la finestra - + Maximize Window Maximitza la finestra - + Close Window Tanca la finestra - + Show All Windows Mostra totes les finestres - + Minimize All Windows Minimitza totes les finestres - + Close All Windows Tanca totes les finestres @@ -1103,12 +1103,12 @@ View Options - Mostra'n les opcions + Mostra'n les opcions Open Website - Obre'n el lloc web + Obre'n el lloc web @@ -1140,7 +1140,7 @@ RSS URL - URL de l'RSS + URL de l'RSS @@ -1165,7 +1165,7 @@ Some RSS feeds may request custom update intervals instead of using this setting - Alguns canals RSS poden sol·licitar intervals d'actualització personalitzats en lloc d'utilitzar aquest paràmetre. + Alguns canals RSS poden sol·licitar intervals d'actualització personalitzats en lloc d'utilitzar aquest paràmetre. @@ -1211,7 +1211,7 @@ Lumina Desktop RSS - RSS de l'escriptori Lumina + RSS de l'escriptori Lumina @@ -1236,7 +1236,7 @@ Last Build Date: %1 - Data de l'última construcció: %1 + Data de l'última construcció: %1 @@ -1274,7 +1274,7 @@ All Desktop Settings - Tots els paràmetres de l'escriptori + Tots els paràmetres de l'escriptori @@ -1332,12 +1332,12 @@ Configure Desktop - Configura l'escriptori + Configura l'escriptori Sign Out User - Sortida de l'usuari + Sortida de l'usuari @@ -1478,7 +1478,7 @@ UserWidget - Giny de l'usuari + Giny de l'usuari @@ -1526,12 +1526,12 @@ Home - Carpeta de l'usuari + Carpeta de l'usuari Home Directory - Directori de l'usuari + Directori de l'usuari @@ -1541,7 +1541,7 @@ Go back to home directory - Torna al directori de l'usuari + Torna al directori de l'usuari @@ -1556,7 +1556,7 @@ Desktop Preferences - Preferències de l'escriptori + Preferències de l'escriptori @@ -1566,7 +1566,7 @@ Desktop Appearance/Plugins - Aparença de l'escriptori / connectors + Aparença de l'escriptori / connectors @@ -1576,12 +1576,12 @@ Screensaver Settings - Paràmetres de l'estalvi de pantalla + Paràmetres de l'estalvi de pantalla About the Lumina Desktop - Quant a l'escriptori Lumina + Quant a l'escriptori Lumina diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_cs.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_cs.ts index 8d69d63d..71048df4 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_cs.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_cs.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Klepnutím nastavit - + Select Application Vybrat aplikaci - + Name: Název: @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. Neočekávej, že povzbudíš slabé, tím že dolů stáhneš silné. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. Nemůžeš vědět příliš mnoho, ale můžeš toho říct přespříliš. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. Jen dvě věci jsou nekonečné, vesmír a lidská hloupost. A nejsem si jist, jak si mám vykládat to první. @@ -310,7 +310,7 @@ - Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. Udělej to, nebo to nedělej vůbec. Nejde o to to jen zkoušet. @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. Dělat nemožné je zábava. @@ -721,32 +721,32 @@ Seznam oken - + Lumina Desktop Prostředí Lumina - + Workspace %1 Pracovní plocha %1 - + Terminal Terminál - + Lock Session Uzamknout sezení - + Browse Files Procházet soubory - + Leave Opustit @@ -771,8 +771,8 @@ LSession - - + + Desktop Plocha @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktivovat okno - + Minimize Window Minimalizovat okno - + Restore Window Obnovit okno - + Maximize Window Maximalizovat okno - + Close Window Zavřít okno - + Show All Windows Ukázat všechna okna - + Minimize All Windows Minimalizovat všechna okna - + Close All Windows Zavřít všechna okna diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_cy.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_cy.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_cy.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_cy.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts index 4683020c..bda12f2e 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_da.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Klik for at sætte - + Select Application Vælg program - + Name: Navn: @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. Forvent ikke at opbygge det svage ved at nedrive det stærke. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. Du kan ikke vide hvor meget, men du kan sige for meget. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. Kun to ting er uendelige, universet og menneskelig dumhed, og jeg er ikke sikker på det sidste. @@ -310,8 +310,8 @@ - Do, or do not. There is no 'try'. - Gør, eller gør ikke. Der er ikke noget "prøv". + Do, or do not. There is no 'try'. + Gør, eller gør ikke. Der er ikke noget "prøv". @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. Det er egentligt sjovt at gøre det umulige. @@ -721,32 +721,32 @@ Vinduesliste - + Lumina Desktop Lumina-skrivebord - + Workspace %1 Arbejdsområde %1 - + Terminal Terminal - + Lock Session Lås session - + Browse Files Gennemse filer - + Leave Ud @@ -771,8 +771,8 @@ LSession - - + + Desktop Skrivebord @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktivér vindue - + Minimize Window Minimér vindue - + Restore Window Gendan vindue - + Maximize Window Maksimér vindue - + Close Window Luk vindue - + Show All Windows Vis alle vinduer - + Minimize All Windows Minimer alle vinduer - + Close All Windows Luk alle vinduer diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_de.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_de.ts index 2935b900..b5fe3fe5 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_de.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_de.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Klicken zum Festlegen - + Select Application Anwendung auswählen - + Name: Name: @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. Sie können nicht zu viel wissen, aber Sie können zu viel sagen. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. Nur zwei Dinge sind unendlich, das Universum und die menschliche Dummheit, aber beim ersten bin ich mir nicht sicher. @@ -310,8 +310,8 @@ - Do, or do not. There is no 'try'. - Machen oder nicht machen. Es gibt kein "Versuchen". + Do, or do not. There is no 'try'. + Machen oder nicht machen. Es gibt kein "Versuchen". @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. Es macht Spaß, das Unmögliche zu tun. @@ -721,32 +721,32 @@ Fensterliste - + Lumina Desktop Lumina-Arbeitsplatz - + Workspace %1 Arbeitsfläche %1 - + Terminal Terminal - + Lock Session Sitzung sperren - + Browse Files Dateien durchsuchen - + Leave Verlassen @@ -771,8 +771,8 @@ LSession - - + + Desktop Arbeitsfläche @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Fenster aktivieren - + Minimize Window Fenster minimieren - + Restore Window Fenster wiederherstellen - + Maximize Window Fenster maximieren - + Close Window Fenster schließen - + Show All Windows Zeige alle Fenster - + Minimize All Windows Alle Fenster minimieren - + Close All Windows Alle Fenster schließen diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_el.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_el.ts index 4008ac77..cf6ff4de 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_el.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_el.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application Επιλογή εφαρμογής - + Name: Όνομα: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_en_GB.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_en_GB.ts index 08ce006f..cf2b9973 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_en_GB.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_en_GB.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Click to Set - + Select Application Anwendung auswählen - + Name: Name: @@ -721,32 +721,32 @@ Window List - + Lumina Desktop Lumina Desktop - + Workspace %1 Workspace %1 - + Terminal Terminal - + Lock Session - + Browse Files Browse Files - + Leave Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Activate Window - + Minimize Window Minimise Window - + Restore Window Restore Window - + Maximize Window Maximise Window - + Close Window Close Window - + Show All Windows Show All Windows - + Minimize All Windows Minimise All Windows - + Close All Windows Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_en_ZA.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_en_ZA.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_en_ZA.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_en_ZA.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_es.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_es.ts index 0e8fb890..fe91f7d9 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_es.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_es.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Presione para Aplicar - + Select Application Seleccionar Aplicación - + Name: Nombre: @@ -721,32 +721,32 @@ Lista de Ventanas - + Lumina Desktop Escritorio Lumina - + Workspace %1 Área de trabajo %1 - + Terminal Terminal - + Lock Session - + Browse Files Explorar Archivos - + Leave Salir @@ -771,8 +771,8 @@ LSession - - + + Desktop Escritorio @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Activar Ventana - + Minimize Window Minimizar Ventana - + Restore Window Restaurar Ventana - + Maximize Window Maximizar Ventana - + Close Window Cerrar Ventana - + Show All Windows Mostrar Todas Las Ventanas - + Minimize All Windows Minimizar Todas las Ventanas - + Close All Windows Cerrar Todas las Ventanas diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_et.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_et.ts index 9b8a4f3e..484940c5 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_et.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_et.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Klõpsa määramiseks - + Select Application Vali rakendus - + Name: Nimi: @@ -721,32 +721,32 @@ Akende loend - + Lumina Desktop Lumina töölaud - + Workspace %1 Tööruum %1 - + Terminal Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop Töölaud @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktiveeri aken - + Minimize Window Minimeeri aken - + Restore Window Taasta aken - + Maximize Window Maksimeeri aken - + Close Window Sulge aken - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_eu.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_eu.ts index 0db7391f..be501afe 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_eu.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_eu.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application Aplikazioa hautatu - + Name: Izena: @@ -721,32 +721,32 @@ Leihoen zerrenda - + Lumina Desktop Lumina Mahaigaina - + Workspace %1 %1 laneko area - + Terminal Terminala - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Lehioa aktibatu - + Minimize Window Leihoa minimizatu - + Restore Window Leihoa leheneratu - + Maximize Window Leihoa maximizatu - + Close Window Leihoa itxi - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fa.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fa.ts index 0ce732ff..1879eeed 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fa.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fa.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application کاربست برگزین - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fi.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fi.ts index 1c3ba8fc..175111c4 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fi.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fi.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Aseta napsauttamalla - + Select Application Valitse sovellus - + Name: Nimi: @@ -721,32 +721,32 @@ Ikkunaluettelo - + Lumina Desktop Lumina-työpöytä - + Workspace %1 Työtila %1 - + Terminal Pääte - + Lock Session - + Browse Files Selaa tiedostoja - + Leave Poistu @@ -771,8 +771,8 @@ LSession - - + + Desktop Työpöytä @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktivoi ikkuna - + Minimize Window Pienennä ikkuna - + Restore Window Palauta ikkuna - + Maximize Window Suurenna ikkuna - + Close Window Sulje ikkuna - + Show All Windows Näytä kaikki ikkunat - + Minimize All Windows Pienennä kaikki ikkunat - + Close All Windows Sulje kaikki ikkunat diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fr.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fr.ts index 5f929032..9a47a6f5 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fr.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fr.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Cliquer pour Définir - + Select Application Sélectionner un Programme - + Name: Nom : @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. @@ -310,7 +310,7 @@ - Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. @@ -396,7 +396,7 @@ Loading User Preferences … - Chargement des Préférences d'Utilisateur … + Chargement des Préférences d'Utilisateur … @@ -421,7 +421,7 @@ Preparing Workspace … - Préparation de l'Espace de Travail … + Préparation de l'Espace de Travail … @@ -510,7 +510,7 @@ Error parsing script output: %1 - Erreur dans l'analyse de la sortie du script : %1 + Erreur dans l'analyse de la sortie du script : %1 @@ -634,7 +634,7 @@ Use System Time - Utiliser l'Heure du Système + Utiliser l'Heure du Système @@ -647,12 +647,12 @@ Start Moving Item - Commencer à Déplacer l'Élément + Commencer à Déplacer l'Élément Start Resizing Item - Commencer à Redimensionner l'Élément + Commencer à Redimensionner l'Élément @@ -667,7 +667,7 @@ Remove Item - Supprimer l'Élément + Supprimer l'Élément @@ -721,32 +721,32 @@ Liste des Fenêtres - + Lumina Desktop Bureau Lumina - + Workspace %1 Espace de Travail %1 - + Terminal Terminal - + Lock Session - + Browse Files Explorer les Fichiers - + Leave Quitter @@ -771,8 +771,8 @@ LSession - - + + Desktop Bureau @@ -805,7 +805,7 @@ Screen Brightness - Luminosité de l'Écran + Luminosité de l'Écran @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Activer la Fenêtre - + Minimize Window Réduire la Fenêtre - + Restore Window Restaurer la Fenêtre - + Maximize Window Maximiser la Fenêtre - + Close Window Fermer la Fenêtre - + Show All Windows Afficher Toutes les Fenêtres - + Minimize All Windows Minimiser Toutes les Fenêtres - + Close All Windows Fermer Toutes les Fenêtres @@ -1165,7 +1165,7 @@ Some RSS feeds may request custom update intervals instead of using this setting - Certains flux RSS peuvent demander des intervalles différents au lieu d'utiliser ce réglage + Certains flux RSS peuvent demander des intervalles différents au lieu d'utiliser ce réglage @@ -1254,7 +1254,7 @@ Screensaver - Économiseur d'Écran + Économiseur d'Écran @@ -1337,7 +1337,7 @@ Sign Out User - Déconnecter l'Utilisateur + Déconnecter l'Utilisateur diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fr_CA.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fr_CA.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fr_CA.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_fr_CA.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_gl.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_gl.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_gl.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_gl.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_he.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_he.ts index ad8fd8b7..1c36a6c0 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_he.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_he.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop שולחן עבודה @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window מזער חלון - + Restore Window שחזר חלון - + Maximize Window הגדל חלון - + Close Window סגור חלון - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hi.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hi.ts index a1882858..04feaae4 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hi.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hi.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set निश्चित करने के लिए क्लिक करे - + Select Application एप्लीकेशन चुनें - + Name: नाम @@ -721,32 +721,32 @@ विंडो सूचि - + Lumina Desktop लुमिना का डेस्कटॉप - + Workspace %1 कार्यस्थल %1 - + Terminal टर्मिनल - + Lock Session - + Browse Files फाइल खोजें - + Leave छोड़ें @@ -771,8 +771,8 @@ LSession - - + + Desktop डेस्कटॉप @@ -843,42 +843,42 @@ LTaskButton - + Activate Window विंडो सक्रिय - + Minimize Window विंडो न्यून करें - + Restore Window विंडो पुनर्स्थापन - + Maximize Window विंडो बड़ी करें' - + Close Window विंडो बंद करें - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hr.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hr.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hr.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hr.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hu.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hu.ts index fb052799..59521f78 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hu.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_hu.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Kattintás a beállításhoz - + Select Application Alkalmazás kiválasztása - + Name: Név: @@ -721,32 +721,32 @@ Ablaklista - + Lumina Desktop Lumina Desktop - + Workspace %1 %1 munkaterület - + Terminal Terminál - + Lock Session - + Browse Files Fájlok tallózása - + Leave Kilépés @@ -771,8 +771,8 @@ LSession - - + + Desktop Asztal @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Ablak aktiválása - + Minimize Window Ablak minimalizálása - + Restore Window Ablak visszaállítása - + Maximize Window Ablak maximalizálása - + Close Window Ablak bezárása - + Show All Windows Ablakok megjelenítése - + Minimize All Windows Ablakok minimalizálása - + Close All Windows Ablakok bezárása diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_id.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_id.ts index a7a0a676..32eda22f 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_id.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_id.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set klik untuk mengatur - + Select Application Pilih Aplikasi - + Name: Nama: @@ -721,32 +721,32 @@ Daftar Jendela - + Lumina Desktop Lumina Desktop - + Workspace %1 Ruang kerja %1 - + Terminal Terminal - + Lock Session - + Browse Files Rambah Berkas - + Leave Tinggalkan @@ -771,8 +771,8 @@ LSession - - + + Desktop Layar Kerja Utama @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktifkan jendela - + Minimize Window Minimalkan Window - + Restore Window Kembalikan Ukuran jendela - + Maximize Window Maksimalkan Ukuran Jendela - + Close Window Tutup Jendela - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_is.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_is.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_is.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_is.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts index 8dac2274..9063b61b 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_it.ts @@ -6,7 +6,7 @@ Click to assign an application - Clicca per assegnare un'applicazione + Clicca per assegnare un'applicazione @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Clicca per Impostare - + Select Application Seleziona Applicazione - + Name: Nome: @@ -166,17 +166,17 @@ There is a full handbook of information about the desktop available online. - C'è un manuale ricco di informazioni su Lunina desktop disponibile in rete. + C'è un manuale ricco di informazioni su Lunina desktop disponibile in rete. Want to change the interface? Everything is customizable in the desktop configuration! - Vuoi cambiare l'interfaccia? Tutto è personalizzabile nella configurazione del desktop! + Vuoi cambiare l'interfaccia? Tutto è personalizzabile nella configurazione del desktop! Lumina can easily reproduce the interface from most other desktop environments. - Lumina può facilmente riprodurre l'interfaccia dalla maggior parte degli altri ambienti desktop. + Lumina può facilmente riprodurre l'interfaccia dalla maggior parte degli altri ambienti desktop. @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. Non puoi sapere troppo, ma puoi dire troppo. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. @@ -310,7 +310,7 @@ - Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. @@ -510,7 +510,7 @@ Error parsing script output: %1 - Errore nell'analisi dell'output dello script: %1 + Errore nell'analisi dell'output dello script: %1 @@ -721,32 +721,32 @@ Lista delle Finestre - + Lumina Desktop Desktop Lumina - + Workspace %1 Spazio Lavoro %1 - + Terminal Terminale - + Lock Session - + Browse Files Sfoglia File - + Leave Esci @@ -771,8 +771,8 @@ LSession - - + + Desktop Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Attiva Finestra - + Minimize Window Minimizza Finestra - + Restore Window Ripristina Finestra - + Maximize Window Massimizza Finestra - + Close Window Chiudi la Finestra - + Show All Windows Mostra tutte le finestre - + Minimize All Windows Minimizza tutte le finestre - + Close All Windows Chiudi tutte le finestre @@ -1165,7 +1165,7 @@ Some RSS feeds may request custom update intervals instead of using this setting - Alcuni feed RSS potrebbero richiedere intervalli di aggiornamento personalizzati invece dell'uso di questa impostazione + Alcuni feed RSS potrebbero richiedere intervalli di aggiornamento personalizzati invece dell'uso di questa impostazione @@ -1357,7 +1357,7 @@ (System Performing Updates) - (Sistema Sta' Aggiornando) + (Sistema Sta' Aggiornando) diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ja.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ja.ts index be1bb754..05964925 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ja.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ja.ts @@ -34,19 +34,19 @@ AppLauncherPlugin - - + + Click to Set テキスト表示欄のツールチップ。アプリケーション名が設定されると置き換えられる。 クリックして設定してください - + Select Application アプリケーションを選択してください - + Name: 名前: @@ -218,12 +218,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. @@ -303,7 +303,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. @@ -313,7 +313,7 @@ - Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. @@ -333,7 +333,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. @@ -651,7 +651,7 @@ Start Moving Item - "transform-move" アイコンを使用する操作 + "transform-move" アイコンを使用する操作 アイテムの移動を開始 @@ -726,32 +726,32 @@ ウィンドウの一覧 - + Lumina Desktop Lumina デスクトップ - + Workspace %1 ワークスペース %1 - + Terminal 端末 - + Lock Session 画面セッションをロック - + Browse Files ファイルを探索 - + Leave 終了 @@ -776,8 +776,8 @@ LSession - - + + Desktop これ、ファイルパスなので、「デスクトップ」と訳したらまずい Desktop @@ -850,42 +850,42 @@ LTaskButton - + Activate Window ウィンドウをアクティブ化します - + Minimize Window ウィンドウを最小化します - + Restore Window ウィンドウを元のサイズに戻す - + Maximize Window ウィンドウを最大化します - + Close Window ウィンドウを閉じます - + Show All Windows すべてのウインドウを開く - + Minimize All Windows すべてのウインドウを最小化 - + Close All Windows すべてのウィンドウを閉じる @@ -1563,13 +1563,13 @@ Go back to home directory - なぜ"back"? + なぜ"back"? ホームディレクトリーに移動する Open Directory - "Browse"ボタンのツールチップ + "Browse"ボタンのツールチップ ディレクトリーを開く diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ka.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ka.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ka.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ka.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ko.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ko.ts index d33185ff..80a947c4 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ko.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ko.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set 설정하기 위해 누름 - + Select Application 프로그램 선택 - + Name: 이름: @@ -721,32 +721,32 @@ 창 목록 - + Lumina Desktop 루미나 데스크탑 - + Workspace %1 작업 공간 %1 - + Terminal 터미널 - + Lock Session - + Browse Files 파일 둘러보기 - + Leave 떠나기 @@ -771,8 +771,8 @@ LSession - - + + Desktop 바탕 화면 @@ -843,42 +843,42 @@ LTaskButton - + Activate Window 창 활성화 - + Minimize Window 창 최소화 - + Restore Window 창 복귀 - + Maximize Window 창 최대화 - + Close Window 창 닫기 - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts index 6e97229f..b12ef820 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lt.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Spustelėkite, norėdami nustatyti - + Select Application Pasirinkti programą - + Name: Pavadinimas: @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. Negali per daug žinoti, tačiau gali per daug pasakyti. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. Tik du dalykai yra beribiai: visata ir žmogaus kvailumas; tačiau dėl visatos aš nesu tikras. @@ -310,7 +310,7 @@ - Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. Smagu yra daryti tai, kas neįmanoma. @@ -721,32 +721,32 @@ Langų sąrašas - + Lumina Desktop Lumina darbalaukis - + Workspace %1 Darbo sritis %1 - + Terminal Terminalas - + Lock Session Užrakinti seansą - + Browse Files Naršyti failus - + Leave Išeiti @@ -771,8 +771,8 @@ LSession - - + + Desktop Darbalaukis @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktyvuoti langą - + Minimize Window Suskleisti langą - + Restore Window Atkurti langą - + Maximize Window Išskleisti langą - + Close Window Užverti langą - + Show All Windows Rodyti visus langus - + Minimize All Windows Suskleisti visus langus - + Close All Windows Užverti visus langus diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lv.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lv.ts index b2ed9a01..83ac8b9b 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lv.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_lv.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Klikšķiniet, lai iestatītu - + Select Application Izvēlieties lietotni - + Name: Nosaukums: @@ -721,32 +721,32 @@ Logu saraksts - + Lumina Desktop Lumina darbvirsma - + Workspace %1 Darbvieta %1 - + Terminal Terminālis - + Lock Session - + Browse Files Pārlūkot failus - + Leave Atstāt @@ -771,8 +771,8 @@ LSession - - + + Desktop Darbvirsma @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktivizēt logu - + Minimize Window Minimizēt logu - + Restore Window Atjaunot logu - + Maximize Window Maksimizēt logu - + Close Window Aizvērt logu - + Show All Windows Rādīt visus logus - + Minimize All Windows Minimizēt visus logus - + Close All Windows Aizvērt visus logus diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mk.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mk.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mk.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mk.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mn.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mn.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mn.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mn.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ms.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ms.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ms.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ms.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mt.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mt.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mt.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_mt.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_nb.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_nb.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_nb.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_nb.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_nl.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_nl.ts index cedd8ffa..64aab123 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_nl.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_nl.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Klik om in te stellen - + Select Application Applicatie selecteren - + Name: Naam: @@ -721,32 +721,32 @@ Vensterlijst - + Lumina Desktop Lumina-bureaublad - + Workspace %1 Werkruimte %1 - + Terminal Terminalvenster - + Lock Session - + Browse Files Door bestanden bladeren - + Leave Verlaten @@ -771,8 +771,8 @@ LSession - - + + Desktop Bureaublad @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Venster activeren - + Minimize Window Venster minimaliseren - + Restore Window Venster herstellen - + Maximize Window Venster maximaliseren - + Close Window Venster sluiten - + Show All Windows Alle vensters weergeven - + Minimize All Windows Alle vensters minimaliseren - + Close All Windows Alle vensters sluiten diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pa.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pa.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pa.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pa.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts index 806b46f3..c68edc29 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pl.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Kliknij by ustawić - + Select Application Wybierz aplikację - + Name: Nazwa: @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. Nie oczekuje wzmacniania słabych osłabianiem silnych. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. Nie możesz wiedzieć za dużo, ale możesz powiedzieć za dużo. @@ -300,8 +300,8 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. @@ -310,8 +310,8 @@ - Do, or do not. There is no 'try'. - Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. @@ -330,8 +330,8 @@ - It's kind of fun to do the impossible. - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. + It's kind of fun to do the impossible. @@ -721,32 +721,32 @@ Lista Okien - + Lumina Desktop Pulpit Lumina - + Workspace %1 Przestrzeń robocza %1 - + Terminal Terminal - + Lock Session Zablokuj sesję - + Browse Files Przeglądaj pliki - + Leave Wyjdź @@ -771,8 +771,8 @@ LSession - - + + Desktop Pulpit @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktywuj okno - + Minimize Window Minimalizuj okno - + Restore Window Przywróć okno - + Maximize Window Maksymalizuj okno - + Close Window Zamknij Okno - + Show All Windows Pokaż wszystkie okna - + Minimize All Windows Minimalizuj wszystkie okna - + Close All Windows Zamknij wszystkie okna diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pt.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pt.ts index e3798385..717a89ca 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pt.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pt.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Clique para Definir - + Select Application Selecionar Aplicativo - + Name: Nome: @@ -721,32 +721,32 @@ Lista de Janelas - + Lumina Desktop Área de Trabalho Lumina - + Workspace %1 Espaço de trabalho %1 - + Terminal Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop Área de Trabalho @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Ativar a Janela - + Minimize Window Minimizar Janela - + Restore Window Restaurar a Janela - + Maximize Window Maximizar Janela - + Close Window Fechar Janela - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pt_BR.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pt_BR.ts index d8b42592..9a22a925 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pt_BR.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_pt_BR.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Clique para definir - + Select Application Selecionar aplicativo - + Name: Nome: @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. Não espere fortalecer o fraco puxando para baixo o forte. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. Você não pode saber muito, mas pode dizer demais. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. Só duas coisas são infinitas, o universo e a estupidez humana, e eu não tenho certeza sobre o primeiro. @@ -310,8 +310,8 @@ - Do, or do not. There is no 'try'. - Faça, ou não. Não há 'tentativa'. + Do, or do not. There is no 'try'. + Faça, ou não. Não há 'tentativa'. @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. É meio divertido fazer o impossível. @@ -721,32 +721,32 @@ Lista de janelas - + Lumina Desktop Lumina Desktop - + Workspace %1 Espaço de trabalho %1 - + Terminal Terminal - + Lock Session Travar sessão - + Browse Files Navegar por arquivos - + Leave Deixar @@ -771,8 +771,8 @@ LSession - - + + Desktop Área de trabalho @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Ativar janela - + Minimize Window Minimizar janela - + Restore Window Restaurar janela - + Maximize Window Maximizar janela - + Close Window Fechar janela - + Show All Windows Exibir todas janelas - + Minimize All Windows Minimizar todas janelas - + Close All Windows Fechar todas as janelas diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ro.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ro.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ro.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ro.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ru.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ru.ts index 335e9d76..e09dde12 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ru.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ru.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Нажмите что бы выбрать - + Select Application Выбрать Приложение - + Name: Название: @@ -215,12 +215,12 @@ - Don't expect to build up the weak by pulling down the strong. + Don't expect to build up the weak by pulling down the strong. Не ждите, чтобы создать слабое, потянув вниз сильное. - You can't know too much, but you can say too much. + You can't know too much, but you can say too much. Вы не можете знать слишком много, но вы можете сказать слишком много. @@ -300,7 +300,7 @@ - Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. + Only two things are infinite, the universe and human stupidity, and I'm not sure about the former. Только две вещи бесконечны, вселенная и человеческая глупость. @@ -310,7 +310,7 @@ - Do, or do not. There is no 'try'. + Do, or do not. There is no 'try'. Делай, или не делай. Не пробуй. @@ -330,7 +330,7 @@ - It's kind of fun to do the impossible. + It's kind of fun to do the impossible. Это своего рода забава - сделать невозможное. @@ -721,32 +721,32 @@ Список Окон - + Lumina Desktop Рабочий стол Lumina - + Workspace %1 Рабочая Область %1 - + Terminal Терминал - + Lock Session Блокировка сессии - + Browse Files Просмотр файлов - + Leave Оставить @@ -771,8 +771,8 @@ LSession - - + + Desktop Рабочий стол @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Активировать Окно - + Minimize Window Свернуть Окно - + Restore Window Восстановить Окно - + Maximize Window Развернуть Окно - + Close Window Закрыть окно - + Show All Windows Показать все окна - + Minimize All Windows Свернуть все окна - + Close All Windows Закрыть все окна diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sk.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sk.ts index 677f1fbd..9dafa749 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sk.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sk.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Kliknutím nastaviť - + Select Application Výber aplikácie - + Name: Meno: @@ -721,32 +721,32 @@ Zoznam okien - + Lumina Desktop Prostredie Lumina - + Workspace %1 Pracovná plocha %1 - + Terminal Terminál - + Lock Session - + Browse Files Prehliadať súbory - + Leave Ponechať @@ -771,8 +771,8 @@ LSession - - + + Desktop Pracovná plocha @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktívne okno - + Minimize Window Minimalizovať okno - + Restore Window Obnoviť okno - + Maximize Window Maximalizovať okno - + Close Window Zatvoriť okno - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sl.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sl.ts index 1dee4397..9b471c07 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sl.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sl.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application Izberi program - + Name: Ime: @@ -721,32 +721,32 @@ Seznam oken - + Lumina Desktop - + Workspace %1 - + Terminal Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window Zapri okno - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sr.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sr.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sr.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sr.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sv.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sv.ts index 89e30d15..013507f3 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sv.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sv.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Klicka för att tilldela - + Select Application Välj program - + Name: Namn: @@ -721,32 +721,32 @@ Fönsterlista - + Lumina Desktop Lumina Skrivbordet - + Workspace %1 Arbetsyta %1 - + Terminal Terminal - + Lock Session - + Browse Files Bläddra bland filer - + Leave Lämna @@ -771,8 +771,8 @@ LSession - - + + Desktop Skrivbord @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Aktivera fönster - + Minimize Window Minimera fönster - + Restore Window Återställ fönster - + Maximize Window Maximera fönster - + Close Window Stäng fönster - + Show All Windows Visa alla fönster - + Minimize All Windows Minimera alla fönster - + Close All Windows Stäng alla fönster diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sw.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sw.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sw.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_sw.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ta.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ta.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ta.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_ta.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_tg.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_tg.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_tg.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_tg.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_th.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_th.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_th.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_th.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_tr.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_tr.ts index c32f19cc..cad1990a 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_tr.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_tr.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Ayarlamak için Tıkla - + Select Application Uygulama Seç - + Name: Ad: @@ -721,32 +721,32 @@ Pencere Listesi - + Lumina Desktop Lumina Masaüstü - + Workspace %1 Çalışma alanı %1 - + Terminal Uçbirim - + Lock Session - + Browse Files Dosyalara Gözat - + Leave Çık @@ -771,8 +771,8 @@ LSession - - + + Desktop Masaüstü @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Pencereyi Etkinleştir - + Minimize Window Pencereyi Küçült - + Restore Window Pencereyi Geri Yükle - + Maximize Window Pencereyi Büyüt - + Close Window Pencereyi Kapat - + Show All Windows Tüm Pencereleri Göster - + Minimize All Windows Tüm Pencereleri Küçült - + Close All Windows Tüm Pencereleri Kapat diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_uk.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_uk.ts index 7d0d2e66..5180b6dd 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_uk.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_uk.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set Натисніть щоб встановити - + Select Application Оберіть додаток - + Name: Ім'я: @@ -53,7 +53,7 @@ Desktop - + Робочий стіл @@ -721,32 +721,32 @@ Список вікон - + Lumina Desktop Lumina Desktop - + Workspace %1 Робочий простір %1 - + Terminal Термінал - + Lock Session - + Browse Files Перегляд файлів - + Leave Лишити @@ -771,8 +771,8 @@ LSession - - + + Desktop Робочий стіл @@ -843,42 +843,42 @@ LTaskButton - + Activate Window Активне Вікно - + Minimize Window Згорнути вікно - + Restore Window Відновити вікно - + Maximize Window Розгорнути вікно - + Close Window Закрити вікно - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_uz.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_uz.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_uz.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_uz.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_vi.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_vi.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_vi.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_vi.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_CN.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_CN.ts index 3cc58ffb..1d7ebaec 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_CN.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_CN.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set 单击以设定 - + Select Application 选择程序 - + Name: 名称: @@ -721,32 +721,32 @@ 窗口列表 - + Lumina Desktop Lumina桌面 - + Workspace %1 工作空间 %1 - + Terminal 终端 - + Lock Session - + Browse Files 浏览文件 - + Leave 离开 @@ -771,8 +771,8 @@ LSession - - + + Desktop 桌面 @@ -843,42 +843,42 @@ LTaskButton - + Activate Window 激活窗口 - + Minimize Window 最小化窗口 - + Restore Window 恢复窗口 - + Maximize Window 最大化窗口 - + Close Window 关闭窗口 - + Show All Windows 显示所有窗口 - + Minimize All Windows 最小化所有窗口 - + Close All Windows 关闭所有窗口 diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_HK.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_HK.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_HK.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_HK.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_TW.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_TW.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_TW.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zh_TW.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zu.ts b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zu.ts index fce61809..c291da48 100644 --- a/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zu.ts +++ b/src-qt5/core/lumina-desktop/i18n/lumina-desktop_zu.ts @@ -32,18 +32,18 @@ AppLauncherPlugin - - + + Click to Set - + Select Application - + Name: @@ -721,32 +721,32 @@ - + Lumina Desktop - + Workspace %1 - + Terminal - + Lock Session - + Browse Files - + Leave @@ -771,8 +771,8 @@ LSession - - + + Desktop @@ -843,42 +843,42 @@ LTaskButton - + Activate Window - + Minimize Window - + Restore Window - + Maximize Window - + Close Window - + Show All Windows - + Minimize All Windows - + Close All Windows diff --git a/src-qt5/core/lumina-info/i18n/lumina-info_da.ts b/src-qt5/core/lumina-info/i18n/lumina-info_da.ts index 894a0dc0..8eca107f 100644 --- a/src-qt5/core/lumina-info/i18n/lumina-info_da.ts +++ b/src-qt5/core/lumina-info/i18n/lumina-info_da.ts @@ -70,8 +70,8 @@ - <a href="https://github.com/beanpole135">Ken Moore</a> - <a href="https://github.com/beanpole135">Ken Moore</a> + <a href="https://github.com/beanpole135">Ken Moore</a> + <a href="https://github.com/beanpole135">Ken Moore</a> @@ -85,8 +85,8 @@ - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Åbn i en webbrowser<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Åbn i en webbrowser<a> diff --git a/src-qt5/core/lumina-info/i18n/lumina-info_pl.ts b/src-qt5/core/lumina-info/i18n/lumina-info_pl.ts index 0bc77338..03133ac7 100644 --- a/src-qt5/core/lumina-info/i18n/lumina-info_pl.ts +++ b/src-qt5/core/lumina-info/i18n/lumina-info_pl.ts @@ -70,8 +70,8 @@ - <a href="https://github.com/beanpole135">Ken Moore</a> - <a href="https://github.com/beanpole135">Ken Moore</a> + <a href="https://github.com/beanpole135">Ken Moore</a> + <a href="https://github.com/beanpole135">Ken Moore</a> @@ -85,8 +85,8 @@ - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> - <a href="https://github.com/pcbsd/lumina/graphs/contributors">Otwórz w przeglądarce internetowej<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Open in web browser<a> + <a href="https://github.com/pcbsd/lumina/graphs/contributors">Otwórz w przeglądarce internetowej<a> diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_af.ts b/src-qt5/core/lumina-open/i18n/lumina-open_af.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_af.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_af.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ar.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ar.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ar.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ar.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_az.ts b/src-qt5/core/lumina-open/i18n/lumina-open_az.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_az.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_az.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_bg.ts b/src-qt5/core/lumina-open/i18n/lumina-open_bg.ts index 28c8a08d..0e811388 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_bg.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_bg.ts @@ -129,7 +129,12 @@ Други - + + [default] + + + + Find Application Binary Намиране на изпълнимия файл на програма @@ -169,37 +174,37 @@ Информацията за стартиране липсва от прекия път (повреден пряк път): %1 - + URL shortcut is missing the URL: %1 Адресът липсва от прекия път към отдалечен адрес: %1 - + Directory shortcut is missing the path to the directory: %1 Пътят към директорията липсва от прекия път към директорията: %1 - + Unknown type of shortcut : %1 Непознат тип пряк път : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Грешка в програмата - + The following application experienced an error and needed to close: Възникна грешка в програмата и трябваше да бъде затворена: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_bn.ts b/src-qt5/core/lumina-open/i18n/lumina-open_bn.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_bn.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_bn.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_bs.ts b/src-qt5/core/lumina-open/i18n/lumina-open_bs.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_bs.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_bs.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ca.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ca.ts index 28b0014d..9dedbfd9 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ca.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ca.ts @@ -36,12 +36,12 @@ Set this application as the default - Fes que aquesta sigui l'aplicació predeterminada + Fes que aquesta sigui l'aplicació predeterminada OK - D'acord + D'acord @@ -56,7 +56,7 @@ (Internet URL - %1) - (URL d'Internet - %1) + (URL d'Internet - %1) @@ -129,9 +129,14 @@ Altres - + + [default] + + + + Find Application Binary - Troba el binari de l'aplicació + Troba el binari de l'aplicació @@ -145,7 +150,7 @@ Audio Volume %1% - Volum de l'àudio: %1% + Volum de l'àudio: %1% @@ -161,47 +166,47 @@ Application entry is invalid: %1 - L'entrada de l'aplicació no és vàlida: %1 + L'entrada de l'aplicació no és vàlida: %1 Application shortcut is missing the launching information (malformed shortcut): %1 - La drecera de l'aplicació no té la informació de llançament (drecera malformada): %1 + La drecera de l'aplicació no té la informació de llançament (drecera malformada): %1 - + URL shortcut is missing the URL: %1 - La drecera de l'URL no té l'URL: %1 + La drecera de l'URL no té l'URL: %1 - + Directory shortcut is missing the path to the directory: %1 La drecera del directori no té el camí cap al directori: %1 - + Unknown type of shortcut : %1 Tipus de drecera desconegut: %1 - + Binary Missing Falta un binari - - Could not find "%1". Please ensure it is installed first. - No s'ha pogut trobar "%1". Si us plau, assegureu-vos que estigui instal·lat. + + Could not find "%1". Please ensure it is installed first. + No s'ha pogut trobar "%1". Si us plau, assegureu-vos que estigui instal·lat. - + Application Error - Error de l'aplicació + Error de l'aplicació - + The following application experienced an error and needed to close: - L'aplicació següent ha tingut un error i s'ha hagut de tancar: + L'aplicació següent ha tingut un error i s'ha hagut de tancar: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_cs.ts b/src-qt5/core/lumina-open/i18n/lumina-open_cs.ts index 99816ed5..3cd1d0a4 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_cs.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_cs.ts @@ -129,7 +129,12 @@ Ostatní - + + [default] + + + + Find Application Binary Najít soubor aplikace @@ -169,37 +174,37 @@ Zástupci aplikace chybí informace o zahájení (chybné zkratky):% 1 - + URL shortcut is missing the URL: %1 URL zástupci chybí URL: %1 - + Directory shortcut is missing the path to the directory: %1 Zástupci složky chybí cesta do adresáře: %1 - + Unknown type of shortcut : %1 Neznámý typ zkratky: %1 - + Binary Missing Chybí spustitelný soubor - - Could not find "%1". Please ensure it is installed first. - Nepodařilo se najít "%1". Nejprve, prosím, zajistěte, aby byl nainstalován. + + Could not find "%1". Please ensure it is installed first. + Nepodařilo se najít "%1". Nejprve, prosím, zajistěte, aby byl nainstalován. - + Application Error Chyba aplikace - + The following application experienced an error and needed to close: Následující aplikace ohlašují chybu a musí být ukončeny: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_cy.ts b/src-qt5/core/lumina-open/i18n/lumina-open_cy.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_cy.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_cy.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts index 672db6fc..d4e6e91b 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts @@ -129,7 +129,12 @@ Andre - + + [default] + + + + Find Application Binary Find binær program fil @@ -169,37 +174,37 @@ Program genvej mangler korrekt information (misdannet genvej): %1 - + URL shortcut is missing the URL: %1 - URL genvej mangler URL'en: %1 + URL genvej mangler URL'en: %1 - + Directory shortcut is missing the path to the directory: %1 Folder genvej mangler stien til folderen: %1 - + Unknown type of shortcut : %1 Ukendt type genvej : %1 - + Binary Missing Binær mangler - - Could not find "%1". Please ensure it is installed first. - Kunne ikke finde "%1". Sørg for at programmet er installeret først. + + Could not find "%1". Please ensure it is installed first. + Kunne ikke finde "%1". Sørg for at programmet er installeret først. - + Application Error Programfejl - + The following application experienced an error and needed to close: Det følgende program oplevede en fejl og blev nødt til at afslutte: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_de.ts b/src-qt5/core/lumina-open/i18n/lumina-open_de.ts index 08e0bb7e..d7612d31 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_de.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_de.ts @@ -129,7 +129,12 @@ Andere - + + [default] + + + + Find Application Binary Ausführbare Anwendung finden @@ -169,37 +174,37 @@ Fehlende Startup-Informationen für Programm-Verknüpfung (deformierte Verknüpfung): %1 - + URL shortcut is missing the URL: %1 URL-Verknüpfung fehlt die URL: %1 - + Directory shortcut is missing the path to the directory: %1 Verzeichnisverknüpfung fehlt der Pfad zum Verzeichnis: %1 - + Unknown type of shortcut : %1 Unbekannter Typ für Vernüpfung: %1 - + Binary Missing Binärdatei fehlt - - Could not find "%1". Please ensure it is installed first. - Konnte "%1" nicht finden. Bitte stellen Sie zuerst sicher, dass es installiert ist. + + Could not find "%1". Please ensure it is installed first. + Konnte "%1" nicht finden. Bitte stellen Sie zuerst sicher, dass es installiert ist. - + Application Error Anwendungsfehler - + The following application experienced an error and needed to close: Bei folgender Anwendung ist ein Fehler aufgetreten und sie wurde beendet: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_el.ts b/src-qt5/core/lumina-open/i18n/lumina-open_el.ts index 22c134c6..32e295ce 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_el.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_el.ts @@ -129,7 +129,12 @@ Άλλο - + + [default] + + + + Find Application Binary Βρείτε Εκτελέσιμη Εφαρμογή @@ -169,37 +174,37 @@ Οι πληροφορίες εκτέλεσης λείπουν απο την συντόμευση της εφαρμογής (Δυσλειτουργία συντόμευσης): %1 - + URL shortcut is missing the URL: %1 Απο την URL συντόμευση λείπει το URL: %1 - + Directory shortcut is missing the path to the directory: %1 Απο την συντόμευση του καταλόγου λείπει η διαδρομή προς τον κατάλογο: %1 - + Unknown type of shortcut : %1 Άγνωστος τύπος συντόμευσης: %1 - + Binary Missing Το Εκτελέσιμο λείπει - + Could not find "%1". Please ensure it is installed first. Αδυναμία έυρεσης "%1". Παρακαλώ βεβαιωθείτε ότι έχει ήδη εγκατασταθεί. - + Application Error Πρόβλημα Εφαρμογής - + The following application experienced an error and needed to close: Η παρακάτω εφαρμογή αντιμετώπισε ένα σφάλμα και πρέπει να τερματιστεί: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_en_GB.ts b/src-qt5/core/lumina-open/i18n/lumina-open_en_GB.ts index 799ba448..4ab5a78e 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_en_GB.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_en_GB.ts @@ -129,7 +129,12 @@ Other - + + [default] + + + + Find Application Binary Find Application Binary @@ -169,37 +174,37 @@ Application shortcut is missing the launch information (malformed shortcut): %1 - + URL shortcut is missing the URL: %1 URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 Unknown type of shortcut: %1 - + Binary Missing Binary Missing - + Could not find "%1". Please ensure it is installed first. Could not find "%1". Please ensure it is installed first. - + Application Error Application Error - + The following application experienced an error and needed to close: The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_en_ZA.ts b/src-qt5/core/lumina-open/i18n/lumina-open_en_ZA.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_en_ZA.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_en_ZA.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_es.ts b/src-qt5/core/lumina-open/i18n/lumina-open_es.ts index f0169335..1bea61e2 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_es.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_es.ts @@ -129,7 +129,12 @@ Otros - + + [default] + + + + Find Application Binary Buscar Binario de la Aplicación @@ -169,37 +174,37 @@ El acceso directo a la aplicación no contiene la información para la ejecución (acceso directo defectuoso): %1 - + URL shortcut is missing the URL: %1 El acceso directo a la URL no contiene la URL: %1 - + Directory shortcut is missing the path to the directory: %1 El acceso directo al directorio no contiene la dirección al directorio: %1 - + Unknown type of shortcut : %1 Tipo de acceso directo desconocido: %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Error en la Aplicación - + The following application experienced an error and needed to close: La siguiente aplicación presentó un error y necesita cerrarse: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_et.ts b/src-qt5/core/lumina-open/i18n/lumina-open_et.ts index 39856778..bfc67e75 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_et.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_et.ts @@ -129,7 +129,12 @@ Muu - + + [default] + + + + Find Application Binary Leia programm @@ -169,37 +174,37 @@ Rakenduse otseteel puudub käivitamise info (vigane otsetee): %1 - + URL shortcut is missing the URL: %1 Aadressi otseteel puudub aadress: %1 - + Directory shortcut is missing the path to the directory: %1 Kausta otseteel puudub kausta rada: %1 - + Unknown type of shortcut : %1 Teadmata tüüpi otsetee: %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Programmi viga - + The following application experienced an error and needed to close: See rakendus sulgus, kuna esines viga: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_eu.ts b/src-qt5/core/lumina-open/i18n/lumina-open_eu.ts index b85ba293..abf7375a 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_eu.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_eu.ts @@ -129,7 +129,12 @@ Beste bat - + + [default] + + + + Find Application Binary Azplikazioko binarioa bilatu @@ -169,37 +174,37 @@ Aplikazioko lasterbideak ez dauka abiarazteko informazioa (lasterbide okerra): %1 - + URL shortcut is missing the URL: %1 URLko lasterbideak ez dauka URLa: %1 - + Directory shortcut is missing the path to the directory: %1 Direktorioko lasterbideak ez dauka direktorioroko bide izena: %1 - + Unknown type of shortcut : %1 Lasterbide mota ezezaguna: %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Aplikazioko akatsa - + The following application experienced an error and needed to close: Hurrengo aplikazioak akats bat izan du eta itxi behar da: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_fa.ts b/src-qt5/core/lumina-open/i18n/lumina-open_fa.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_fa.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_fa.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_fi.ts b/src-qt5/core/lumina-open/i18n/lumina-open_fi.ts index ea610796..6c845b86 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_fi.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_fi.ts @@ -129,7 +129,12 @@ Muuta - + + [default] + + + + Find Application Binary Etsi ohjelmatiedosto @@ -169,37 +174,37 @@ Sovelluksen pikakuvakkeesta puuttuvat käynnistystiedot (virheellinen pikakuvake): %1 - + URL shortcut is missing the URL: %1 Verkko-osoitteen pikakuvakkeesta puuttuu verkko-osoite: %1 - + Directory shortcut is missing the path to the directory: %1 Kansion pikakuvakkeesta puuttuu kansion sijainti: %1 - + Unknown type of shortcut : %1 Tuntematon pikakuvaketyyppi: %1 - + Binary Missing Ohjelmatiedosto puuttuu - + Could not find "%1". Please ensure it is installed first. - + Application Error Sovellusvirhe - + The following application experienced an error and needed to close: Seuraavat sovellukset kohtasivat virheen ja ne täytyy sulkea: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_fr.ts b/src-qt5/core/lumina-open/i18n/lumina-open_fr.ts index 23c49fd3..cd4a619c 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_fr.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_fr.ts @@ -26,7 +26,7 @@ Binary Location - Emplacement de l'Exécutable + Emplacement de l'Exécutable @@ -129,7 +129,12 @@ Autre - + + [default] + + + + Find Application Binary Rechercher le Programme Exécutable @@ -151,7 +156,7 @@ Screen Brightness %1% - Luminosité de l'Écran %1% + Luminosité de l'Écran %1% @@ -169,37 +174,37 @@ Informations de lancement manquantes dans le raccourci du programme (raccourci invalide) : %1 - + URL shortcut is missing the URL: %1 - L'adresse est introuvable dans le raccourci URL : %1 + L'adresse est introuvable dans le raccourci URL : %1 - + Directory shortcut is missing the path to the directory: %1 Le chemin du dossier est vide dans le raccourci du dossier : %1 - + Unknown type of shortcut : %1 Type du raccourci inconnu : %1 - + Binary Missing Exécutable Manquant - - Could not find "%1". Please ensure it is installed first. - "%1" non trouvé. Vérifiez qu'il soit bien installé. + + Could not find "%1". Please ensure it is installed first. + "%1" non trouvé. Vérifiez qu'il soit bien installé. - + Application Error Erreur du Programme - + The following application experienced an error and needed to close: Le programme suivant a provoqué une erreur et a dû être fermé : diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_fr_CA.ts b/src-qt5/core/lumina-open/i18n/lumina-open_fr_CA.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_fr_CA.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_fr_CA.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_gl.ts b/src-qt5/core/lumina-open/i18n/lumina-open_gl.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_gl.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_gl.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_he.ts b/src-qt5/core/lumina-open/i18n/lumina-open_he.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_he.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_he.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_hi.ts b/src-qt5/core/lumina-open/i18n/lumina-open_hi.ts index 1a1c6966..9f92ce53 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_hi.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_hi.ts @@ -129,7 +129,12 @@ अन्य - + + [default] + + + + Find Application Binary एप्लीकेशन बाइनरी खोज @@ -169,37 +174,37 @@ एप्लीकेशन शॉर्टकट में चालू करने सम्बन्धी जानकारी नहीं है( अपूर्ण शॉर्टकट):%1 - + URL shortcut is missing the URL: %1 यूआरएल के शॉर्टकट में यूआरएल नहीं है:%1 - + Directory shortcut is missing the path to the directory: %1 डायरेक्टरी के शॉर्टकट में डायरेक्टरी का पथ नहीं है:%1 - + Unknown type of shortcut : %1 अनजान प्रकार का शॉर्टकट:%1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error एप्लीकेशन त्रुटि - + The following application experienced an error and needed to close: इस एप्लीकेशन में त्रुटि है और इसे बंद करने की आवश्यकता है: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_hr.ts b/src-qt5/core/lumina-open/i18n/lumina-open_hr.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_hr.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_hr.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_hu.ts b/src-qt5/core/lumina-open/i18n/lumina-open_hu.ts index 0ceafe1d..a8eb9966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_hu.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_hu.ts @@ -129,7 +129,12 @@ Egyéb - + + [default] + + + + Find Application Binary Futtatható alkalmazás keresése @@ -169,37 +174,37 @@ a program hivatkozásában hiányosak az indítási adatok : %1 - + URL shortcut is missing the URL: %1 URL hivatkozás hiányos ebben: %1 - + Directory shortcut is missing the path to the directory: %1 Könyvtár hivatkozás hiányos ebben az útvonalban: %1 - + Unknown type of shortcut : %1 Ismeretlen hivatkozás: %1 - + Binary Missing Hiányos binary - + Could not find "%1". Please ensure it is installed first. Nem találom: "%1". Először győződj meg hogy telepítve van. - + Application Error Alkalmazás hiba - + The following application experienced an error and needed to close: Az alkalmazás hibát észlelt, és bezárandó: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_id.ts b/src-qt5/core/lumina-open/i18n/lumina-open_id.ts index 6dcd4b5f..ae1c2338 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_id.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_id.ts @@ -129,7 +129,12 @@ Yang Lainnya - + + [default] + + + + Find Application Binary Cari Aplikasi Binari @@ -169,37 +174,37 @@ Aplikasi shortcut yang hilang informasi meluncurkan (jelek cacat): %1 - + URL shortcut is missing the URL: %1 URL shortcut hilang URL: %1 - + Directory shortcut is missing the path to the directory: %1 Direktori shortcut yang hilang path ke direktori: %1 - + Unknown type of shortcut : %1 Jenis diketahui shortcut: %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error aplikasi error - + The following application experienced an error and needed to close: Aplikasi berikut mengalami kesalahan dan diperlukan untuk menutup: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_is.ts b/src-qt5/core/lumina-open/i18n/lumina-open_is.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_is.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_is.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_it.ts b/src-qt5/core/lumina-open/i18n/lumina-open_it.ts index 415476ca..4b9ecedb 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_it.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_it.ts @@ -129,7 +129,12 @@ Altro - + + [default] + + + + Find Application Binary Trova Binario Applicazione @@ -166,40 +171,40 @@ Application shortcut is missing the launching information (malformed shortcut): %1 - Collegamento all'applicazione senzai informazioni di lancio (scorciatoia malformata):: %1 + Collegamento all'applicazione senzai informazioni di lancio (scorciatoia malformata):: %1 - + URL shortcut is missing the URL: %1 - Collegamento URL senza l'URL: %1 + Collegamento URL senza l'URL: %1 - + Directory shortcut is missing the path to the directory: %1 Collegamento Directory senza il percorso della directory: %1 - + Unknown type of shortcut : %1 Tipo di abbreviazione sconosciuto : %1 - + Binary Missing Manca codice Binario - - Could not find "%1". Please ensure it is installed first. - Impossibile trovare "% 1". Assicurarsi che sia installato per primo. + + Could not find "%1". Please ensure it is installed first. + Impossibile trovare "% 1". Assicurarsi che sia installato per primo. - + Application Error Errore Applicazione - + The following application experienced an error and needed to close: La seguente applicazione ha avuto un errore e deve chiudere: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ja.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ja.ts index f136b8fe..dd2d50e6 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ja.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ja.ts @@ -129,9 +129,14 @@ その他 - + + [default] + + + + Find Application Binary - "Find"とあるが、ファイル指定ダイアログのタイトル + "Find"とあるが、ファイル指定ダイアログのタイトル アプリケーションのバイナリーを指定 @@ -170,37 +175,37 @@ アプリケーションショートカットの起動情報が失われています(無効なショートカット): %1 - + URL shortcut is missing the URL: %1 URL ショートカットの URL が失われています: %1 - + Directory shortcut is missing the path to the directory: %1 ディレクトリーショートカットのパス情報が失われています: %1 - + Unknown type of shortcut : %1 種類が不明なショートカットです: %1 - + Binary Missing バイナリーがありません - - Could not find "%1". Please ensure it is installed first. - "%1" が見つかりませんでした。まずそれがインストールされている事を確認してください。 + + Could not find "%1". Please ensure it is installed first. + "%1" が見つかりませんでした。まずそれがインストールされている事を確認してください。 - + Application Error アプリケーションエラー - + The following application experienced an error and needed to close: このアプリケーションでエラーが発生したため、閉じる必要があります: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ka.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ka.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ka.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ka.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ko.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ko.ts index cb7c1c7b..9a63d098 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ko.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ko.ts @@ -129,7 +129,12 @@ 기타 - + + [default] + + + + Find Application Binary 프로그램 실행 파일 찾기 @@ -169,37 +174,37 @@ 프로그램 바로 가기에 실행 정보가 없습니다 (잘못된 바로 가기): %1 - + URL shortcut is missing the URL: %1 URL 바로 가기에 URL이 없습니다: %1 - + Directory shortcut is missing the path to the directory: %1 디렉터리 바로 가기에 디렉터리 경로가 없습니다: %1 - + Unknown type of shortcut : %1 알 수 없는 종류의 바로 가기: %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error 프로그램 오류 - + The following application experienced an error and needed to close: 다음의 프로그램에 오류가 발생하여 종료하였습니다: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_lt.ts b/src-qt5/core/lumina-open/i18n/lumina-open_lt.ts index fce7de40..d177a0b9 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_lt.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_lt.ts @@ -129,7 +129,12 @@ Kita - + + [default] + + + + Find Application Binary Rasti programos dvejetainę @@ -169,37 +174,37 @@ Programos šaukinyje trūksta paleidimo informacijos (netaisyklingas šaukinys): %1 - + URL shortcut is missing the URL: %1 URL šaukinyje trūksta URL: %1 - + Directory shortcut is missing the path to the directory: %1 Katalogo šaukinyje trūksta kelio į katalogą: %1 - + Unknown type of shortcut : %1 Nežinomas šaukinio tipas : %1 - + Binary Missing Trūksta dvejetainės - - Could not find "%1". Please ensure it is installed first. - Nepavyko rasti "%1". Iš pradžių, įsitikinkite ar ji įdiegta. + + Could not find "%1". Please ensure it is installed first. + Nepavyko rasti "%1". Iš pradžių, įsitikinkite ar ji įdiegta. - + Application Error Programos klaida - + The following application experienced an error and needed to close: Ši programa susidūrė su klaida ir turėjo būti užverta: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_lv.ts b/src-qt5/core/lumina-open/i18n/lumina-open_lv.ts index 321f9b8c..c6e264d9 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_lv.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_lv.ts @@ -129,7 +129,12 @@ Cits - + + [default] + + + + Find Application Binary Atrast lietotnes bināro failu @@ -169,37 +174,37 @@ Lietotnes saīsnei trūkst palaišanas informācijas (nepareizi veidota saīsne): %1 - + URL shortcut is missing the URL: %1 URL saīsnei trūkst URL: %1 - + Directory shortcut is missing the path to the directory: %1 Kataloga saīsnei trūkst ceļš uz katalogu: %1 - + Unknown type of shortcut : %1 Nezināma tipa saīsne : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Lietotnes kļūda - + The following application experienced an error and needed to close: Šai lietotnei radās kļūda un bija nepieciešams to aizvērt: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_mk.ts b/src-qt5/core/lumina-open/i18n/lumina-open_mk.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_mk.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_mk.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_mn.ts b/src-qt5/core/lumina-open/i18n/lumina-open_mn.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_mn.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_mn.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ms.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ms.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ms.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ms.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_mt.ts b/src-qt5/core/lumina-open/i18n/lumina-open_mt.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_mt.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_mt.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_nb.ts b/src-qt5/core/lumina-open/i18n/lumina-open_nb.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_nb.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_nb.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_nl.ts b/src-qt5/core/lumina-open/i18n/lumina-open_nl.ts index be87bfbf..ae5f93db 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_nl.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_nl.ts @@ -129,7 +129,12 @@ Overig - + + [default] + + + + Find Application Binary Uitvoerbaar applicatiebestand zoeken @@ -169,37 +174,37 @@ De opstartinformatie van de applicatie-snelkoppeling ontbreekt (ongeldige snelkoppeling): %1 - + URL shortcut is missing the URL: %1 De URL in de URL-snelkoppeling ontbreekt: %1 - + Directory shortcut is missing the path to the directory: %1 Het mappad in de mapsnelkoppeling ontbreekt: %1 - + Unknown type of shortcut : %1 Onbekend soort snelkoppeling: %1 - + Binary Missing Het uitvoerbare bestand ontbreekt - + Could not find "%1". Please ensure it is installed first. "%1" kan niet worden gevonden. Zorg ervoor dat het geïnstalleerd is. - + Application Error Applicatiefout - + The following application experienced an error and needed to close: Er is een fout opgetreden in de volgende applicatie en moet daarom worden gesloten: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_pa.ts b/src-qt5/core/lumina-open/i18n/lumina-open_pa.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_pa.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_pa.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_pl.ts b/src-qt5/core/lumina-open/i18n/lumina-open_pl.ts index ab23731d..7afdbf5d 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_pl.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_pl.ts @@ -129,7 +129,12 @@ Inne - + + [default] + + + + Find Application Binary Znajdź plik binarny aplikacji @@ -169,37 +174,37 @@ Skrót do aplikacji nie posiada odpowiednich informacji do uruchomienia (niewłaściwy skrót): %1 - + URL shortcut is missing the URL: %1 W skrócie URL brak adresu URL: %1 - + Directory shortcut is missing the path to the directory: %1 W skrócie do folderu brak ścieżki do folderu: %1 - + Unknown type of shortcut : %1 Nieznany błąd skrótu: %1 - + Binary Missing Brak pliku binarnego - - Could not find "%1". Please ensure it is installed first. - Nie można znaleźć "%1". Upewnij się, że jest zainstalowany. + + Could not find "%1". Please ensure it is installed first. + Nie można znaleźć "%1". Upewnij się, że jest zainstalowany. - + Application Error Błąd aplikacji - + The following application experienced an error and needed to close: Aplikacja napotkała błąd i musi zostać zamknięta: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_pt.ts b/src-qt5/core/lumina-open/i18n/lumina-open_pt.ts index 861f882a..aae83c05 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_pt.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_pt.ts @@ -129,7 +129,12 @@ Outros - + + [default] + + + + Find Application Binary Encontrar binário da aplicação @@ -169,37 +174,37 @@ Está faltando a informação do lançamento do atalho do aplicativo (atalho mal informado): 1% - + URL shortcut is missing the URL: %1 Está faltando a URL do atalhos da URL: %1 - + Directory shortcut is missing the path to the directory: %1 Está faltando o caminho para o diretório do atalho do diretório" %1 - + Unknown type of shortcut : %1 Tipo de atalho desconhecido: %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Erro no Aplicativo - + The following application experienced an error and needed to close: O seguinte aplicativo encontrou um erro e teve que ser fechado: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_pt_BR.ts b/src-qt5/core/lumina-open/i18n/lumina-open_pt_BR.ts index dad239e6..21c38238 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_pt_BR.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_pt_BR.ts @@ -129,7 +129,12 @@ Outros - + + [default] + + + + Find Application Binary Encontrar binário do aplicativo @@ -169,37 +174,37 @@ O atalho do aplicativo não tem a informação de lançamento (atalho malformado): %1 - + URL shortcut is missing the URL: %1 Está faltando o URL no atalho: %1 - + Directory shortcut is missing the path to the directory: %1 Está faltando o caminho para o diretório no atalho: %1 - + Unknown type of shortcut : %1 Tipo de atalho desconhecido: %1 - + Binary Missing Binário Faltando - - Could not find "%1". Please ensure it is installed first. - "%1" não pode ser localizado. Por favor, verifique se está instalado. + + Could not find "%1". Please ensure it is installed first. + "%1" não pode ser localizado. Por favor, verifique se está instalado. - + Application Error Erro do aplicativo - + The following application experienced an error and needed to close: O seguinte aplicativo encontrou um erro e precisa ser fechado: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ro.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ro.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ro.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ro.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ru.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ru.ts index 0588758e..d7b1d3e1 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ru.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ru.ts @@ -129,7 +129,12 @@ Разное - + + [default] + + + + Find Application Binary Найти Бинарное Приложение @@ -169,37 +174,37 @@ В ярлыке приложения отсутствует информация для запуска (неверный формат ярлыка): %1 - + URL shortcut is missing the URL: %1 В ярлыке отсутствует URL-адрес: %1 - + Directory shortcut is missing the path to the directory: %1 В ярлыке отсутствует путь к папке: %1 - + Unknown type of shortcut : %1 Неизвестный тип ярлыка: %1 - + Binary Missing Приложение отсутствует - - Could not find "%1". Please ensure it is installed first. - Не найден "%1". Пожалуйста, убедитесь, что он установлен в первую очередь. + + Could not find "%1". Please ensure it is installed first. + Не найден "%1". Пожалуйста, убедитесь, что он установлен в первую очередь. - + Application Error Ошибка Приложения - + The following application experienced an error and needed to close: Следующее приложение вызвало ошибку и должно быть закрыто: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_sk.ts b/src-qt5/core/lumina-open/i18n/lumina-open_sk.ts index 07b23aea..83de88f7 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_sk.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_sk.ts @@ -129,7 +129,12 @@ Ostatné - + + [default] + + + + Find Application Binary Nájsť binárne aplikácie @@ -169,37 +174,37 @@ Zástupca aplikácie - chýbajúce informácie: %1 - + URL shortcut is missing the URL: %1 chýba URL:%1 - + Directory shortcut is missing the path to the directory: %1 chýba cesta adresára: %1 - + Unknown type of shortcut : %1 Neznámy typ skratky: %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Chyba aplikácie - + The following application experienced an error and needed to close: Nasledujúca aplikácia hlási chybu a musí byť ukončená: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_sl.ts b/src-qt5/core/lumina-open/i18n/lumina-open_sl.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_sl.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_sl.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_sr.ts b/src-qt5/core/lumina-open/i18n/lumina-open_sr.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_sr.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_sr.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_sv.ts b/src-qt5/core/lumina-open/i18n/lumina-open_sv.ts index 33fa847e..cc3b5614 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_sv.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_sv.ts @@ -129,7 +129,12 @@ Annat - + + [default] + + + + Find Application Binary Hitta Programmets Binär @@ -169,37 +174,37 @@ Program genväg saknar startinformation (missbildad genväg): %1 - + URL shortcut is missing the URL: %1 URL genväg saknas URL: %1 - + Directory shortcut is missing the path to the directory: %1 Genvägen till katalogen saknar sökvägen till katalogen :%1 - + Unknown type of shortcut : %1 Okänd typ av genväg: %1 - + Binary Missing Binär saknas - + Could not find "%1". Please ensure it is installed first. Kunde inte hitta "%1". Se till att du har detta programmet installerat först. - + Application Error Program fel - + The following application experienced an error and needed to close: Följande program upplevde ett fel och behövde stängas: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_sw.ts b/src-qt5/core/lumina-open/i18n/lumina-open_sw.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_sw.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_sw.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_ta.ts b/src-qt5/core/lumina-open/i18n/lumina-open_ta.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_ta.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_ta.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_tg.ts b/src-qt5/core/lumina-open/i18n/lumina-open_tg.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_tg.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_tg.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_th.ts b/src-qt5/core/lumina-open/i18n/lumina-open_th.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_th.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_th.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_tr.ts b/src-qt5/core/lumina-open/i18n/lumina-open_tr.ts index bae0a64c..f6200eea 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_tr.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_tr.ts @@ -129,7 +129,12 @@ Diğer - + + [default] + + + + Find Application Binary Uygulama İkilisi Bul @@ -169,37 +174,37 @@ Uygulama kısayolunda başlatma bilgisi eksik (hatalı kısayol): %1 - + URL shortcut is missing the URL: %1 URL kısayolunda URL eksik: %1 - + Directory shortcut is missing the path to the directory: %1 Dizin kısayolunda dizin yolu eksik: %1 - + Unknown type of shortcut : %1 Bilinmeyen kısayol türü: %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Uygulama Hatası - + The following application experienced an error and needed to close: İzleyen uygulama bir hatayla karşılaştı ve kapatılması gerekti: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_uk.ts b/src-qt5/core/lumina-open/i18n/lumina-open_uk.ts index 98da14a1..76e93d71 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_uk.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_uk.ts @@ -129,7 +129,12 @@ Різне - + + [default] + + + + Find Application Binary Знайти бінарну програму @@ -169,37 +174,37 @@ В ярлику програми відсутня інформація для запуску (невірний формат ярлика): %1 - + URL shortcut is missing the URL: %1 В ярлику URL-адреса відсутня: %1 - + Directory shortcut is missing the path to the directory: %1 В ярлику відсутній шлях до папки: %1 - + Unknown type of shortcut : %1 Невідомий тип ярлику : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error Помилка програми - + The following application experienced an error and needed to close: Наступна програма викликало помилку и має бути закрита: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_uz.ts b/src-qt5/core/lumina-open/i18n/lumina-open_uz.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_uz.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_uz.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_vi.ts b/src-qt5/core/lumina-open/i18n/lumina-open_vi.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_vi.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_vi.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_zh_CN.ts b/src-qt5/core/lumina-open/i18n/lumina-open_zh_CN.ts index b8be5694..fcb7d509 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_zh_CN.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_zh_CN.ts @@ -129,7 +129,12 @@ 其他 - + + [default] + + + + Find Application Binary 寻找二进制应用程序 @@ -169,37 +174,37 @@ 应用程序快捷方式缺少启动信息(错误的快捷方式):%1 - + URL shortcut is missing the URL: %1 网址快捷方式缺少网址 : %1 - + Directory shortcut is missing the path to the directory: %1 目录的快捷方式是丢失目录的路径 : %1 - + Unknown type of shortcut : %1 未知类型的快捷方式:%1 - + Binary Missing 二进制文件丢失 - + Could not find "%1". Please ensure it is installed first. 无法找到 “%1”。请确认它已被安装。 - + Application Error 应用程序出错 - + The following application experienced an error and needed to close: 下面的应用程序遇到错误,需要关闭 diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_zh_HK.ts b/src-qt5/core/lumina-open/i18n/lumina-open_zh_HK.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_zh_HK.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_zh_HK.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_zh_TW.ts b/src-qt5/core/lumina-open/i18n/lumina-open_zh_TW.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_zh_TW.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_zh_TW.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_zu.ts b/src-qt5/core/lumina-open/i18n/lumina-open_zu.ts index b3a7fdf2..91b4a966 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_zu.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_zu.ts @@ -129,7 +129,12 @@ - + + [default] + + + + Find Application Binary @@ -169,37 +174,37 @@ - + URL shortcut is missing the URL: %1 - + Directory shortcut is missing the path to the directory: %1 - + Unknown type of shortcut : %1 - + Binary Missing - + Could not find "%1". Please ensure it is installed first. - + Application Error - + The following application experienced an error and needed to close: diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_af.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_af.ts index bdcaf1b7..3f22612a 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_af.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_af.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ar.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ar.ts index 124cd4e6..017f2091 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ar.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ar.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_az.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_az.ts index fd48222f..f6afb810 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_az.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_az.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bg.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bg.ts index ca2b9d9b..e88ea167 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bg.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bg.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bn.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bn.ts index 570aa721..25b4591d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bn.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bn.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bs.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bs.ts index de904883..6230a233 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bs.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_bs.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts index e72883f0..e63997d5 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ca.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts index 46498ada..d0d73d69 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cs.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cy.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cy.ts index 440dd5dd..530b5db0 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cy.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_cy.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts index 0f3deb4d..3e551dda 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_da.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_de.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_de.ts index d2bd246f..1002228d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_de.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_de.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_el.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_el.ts index f1733e05..faa74b63 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_el.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_el.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_GB.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_GB.ts index 5cfd55e3..541a39a7 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_GB.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_ZA.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_ZA.ts index 919d34ea..a0f14252 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_en_ZA.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts index 4d487266..8205db5a 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_es.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_et.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_et.ts index 3166aaa0..2e081204 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_et.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_et.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_eu.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_eu.ts index fac4935d..1aba1b89 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_eu.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_eu.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fa.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fa.ts index 75490d77..980f3769 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fa.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fa.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts index b652a42e..7b207227 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fi.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr.ts index 68ca0d0c..129a1a1b 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr_CA.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr_CA.ts index 35e5f8e5..2184c45c 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_fr_CA.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_gl.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_gl.ts index ac05ac01..d33d57c1 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_gl.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_gl.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_he.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_he.ts index 4089a7f8..96c11d33 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_he.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_he.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hi.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hi.ts index 7f682a0a..43ecf785 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hi.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hi.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hr.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hr.ts index a210bc01..9a0bab90 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hr.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hr.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts index df7bb9a7..a8c892dc 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_hu.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_id.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_id.ts index 9a1d98be..72f79151 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_id.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_id.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_is.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_is.ts index a6e8df64..ff82cc2b 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_is.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_is.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_it.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_it.ts index cbe230bd..4635f51d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_it.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_it.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ja.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ja.ts index 2f77bd2f..cd536225 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ja.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ja.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ka.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ka.ts index fb028b48..77bef39e 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ka.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ka.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ko.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ko.ts index 4f584624..198743ab 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ko.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ko.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts index 1c70d4fb..60284655 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lt.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lv.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lv.ts index a81d8b8c..04e52af9 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lv.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_lv.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mk.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mk.ts index a2e92756..71e51f89 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mk.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mk.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mn.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mn.ts index 85d7e247..4a49f235 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mn.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mn.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ms.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ms.ts index 5811bd15..fd185ad3 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ms.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ms.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mt.ts index a23afc42..db25ce0d 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_mt.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nb.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nb.ts index 877f5215..aaa5d4d9 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nb.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nb.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nl.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nl.ts index b8606a46..1670fd44 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nl.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_nl.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pa.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pa.ts index e1bd4182..34872c47 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pa.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pa.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pl.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pl.ts index 6ea05f51..63ee1d2f 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pl.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pl.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt.ts index 79fba4a1..bd2f3adb 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt_BR.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt_BR.ts index 79fba4a1..bd2f3adb 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_pt_BR.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ro.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ro.ts index 859ba5bd..32d3af76 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ro.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ro.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts index 6c27578d..930b5b74 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ru.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sk.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sk.ts index 3d49957a..a304be99 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sk.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sk.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sl.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sl.ts index d8e28726..e8e07622 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sl.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sl.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sr.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sr.ts index 489b50f4..57f82364 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sr.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sr.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sv.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sv.ts index 272cf67d..20815b9b 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sv.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sv.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sw.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sw.ts index a6927cde..4c09d142 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sw.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_sw.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ta.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ta.ts index bd8d4ee3..84803dbd 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ta.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_ta.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tg.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tg.ts index 81587529..5f84f5ab 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tg.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tg.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_th.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_th.ts index 90fe1b3c..2118d2e4 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_th.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_th.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tr.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tr.ts index 62e4bbe8..1de5ac72 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tr.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_tr.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uk.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uk.ts index c8a311c9..e3151e96 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uk.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uk.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uz.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uz.ts index 2a9af431..e130b683 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uz.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_uz.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_vi.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_vi.ts index 5dbac33f..82ae27ed 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_vi.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_vi.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_CN.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_CN.ts index 7030c5ce..1d9bfc10 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_CN.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_HK.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_HK.ts index f6a5f878..8d8b2278 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_HK.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_TW.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_TW.ts index 97de0590..50446c9f 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zh_TW.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zu.ts b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zu.ts index 329f99c7..659e50f0 100644 --- a/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zu.ts +++ b/src-qt5/desktop-utils/lumina-archiver/i18n/l-archiver_zu.ts @@ -4,12 +4,22 @@ Backend - + + Could not read archive + + + + + Archive Loaded + + + + Extraction Finished - + Modification Finished @@ -22,109 +32,114 @@ - + Archive: - - - + + + File - + Edit - + Burn to Disk - + toolBar - + &Open Archive - + Open archive - + &New Archive - + New archive - + &Quit - + Add File(s) - + Add files to archive - + Remove File(s) - + Remove selection from archive - + Extract All - + Extract archive into a directory - + Add Directory - + Add directory to archive - + Extract Selection - + + Extract Selected Items + + + + USB Image - + Copy an IMG to a USB device (may require admin permission) @@ -139,193 +154,202 @@ - + CTRL+N - + CTRL+O - + CTRL+Q - + CTRL+E - - + + MimeType - - + + Size - - + + Opening Archive... - - + All Types %1 - - + + Uncompressed Archive (*.tar) - - + + GZip Compressed Archive (*.tar.gz *.tgz) - - + + BZip Compressed Archive (*.tar.bz *.tbz) - - + + BZip2 Compressed Archive (*.tar.bz2 *.tbz2) - - + + LMZA Compressed Archive (*.tar.lzma *.tlz) - - + + XZ Compressed Archive (*.tar.xz *.txz) - - + + CPIO Archive (*.cpio) - - + + PAX Archive (*.pax) - - + + AR Archive (*.ar) - - + + SHAR Archive (*.shar) - - + + Zip Archive (*.zip) - - + + 7-Zip Archive (*.7z) - + + All Known Types %1 + + + + READ-ONLY: ISO image (*.iso *.img) - + READ-ONLY: XAR archive (*.xar) - + READ-ONLY: Java archive (*.jar) - + READ-ONLY: RedHat Package (*.rpm) + Show All Files (*) + + + + Create Archive - + Error - + Could not overwrite file: - + Open Archive - - + + Add to Archive - - + + Adding Items... - + Removing Items... - - + + Extract Into Directory - - - + + + Extracting... - + Link To: %1 diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr.ts index 7059caae..037c4474 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_fr.ts @@ -104,7 +104,7 @@ No Icon - Pas d'Icône + Pas d'Icône @@ -189,7 +189,7 @@ Invalid selection: Not a valid executable - Sélection invalide : Ce n'est pas un exécutable valide + Sélection invalide : Ce n'est pas un exécutable valide diff --git a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_it.ts b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_it.ts index f5fbed08..fb021d89 100644 --- a/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_it.ts +++ b/src-qt5/desktop-utils/lumina-fileinfo/i18n/l-fileinfo_it.ts @@ -169,7 +169,7 @@ Save Application File - Salva il file dell'Applicazione + Salva il file dell'Applicazione @@ -199,7 +199,7 @@ Select an icon - Seleziona un'icona + Seleziona un'icona 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 9a559044..4e8a9dce 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Ограничен достъп) - - + + New Document Нов документ - - - + + + Name: Име: - + Error Creating Document Грешка при създаване на документа - + The document could not be created. Please ensure that you have the proper permissions. Документа не може да бъде създаден. Моля, уверете се, че разполагате с необходимите права. - + New Directory Нова директория - - - + + + Invalid Name Неправилно име - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл или директория с това име вече съществува! Моля, изберете друго име. - + Error Creating Directory Грешка при създаване на директория - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Директорията не може да бъде създадена. Моля, уверете се, че разполагате с необходимите права да променяте текущата директория. - + Current Текуща - + Create... - + File Файл - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 Отваряне - + Open With... Отваряне с... - + Rename... Преименуване... - + Cut Selection Изрязване на избраното - + Copy Selection Копиране на избраното - + Paste Поставяне - + Delete Selection Изтриване на избраното 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 641a7bd6..b2776753 100644 --- a/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts +++ b/src-qt5/desktop-utils/lumina-fm/i18n/lumina-fm_ca.ts @@ -165,7 +165,7 @@ Select Action - Seleccioneu l'acció + Seleccioneu l'acció @@ -175,7 +175,7 @@ Single column view - Vista d'una columna + Vista d'una columna @@ -188,184 +188,184 @@ Vista de dues columnes - + (Limited Access) (Accés limitat) - - + + New Document Document nou - - - + + + Name: Nom: - + Error Creating Document Error en crear el document - + The document could not be created. Please ensure that you have the proper permissions. - No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. + No s'ha pogut crear el document. Si us plau, assegureu-vos que teniu els permisos adients. - + New Directory Directori nou - - - + + + Invalid Name El nom no és vàlid - + File Operations Operacions de fitxers - + Directory Operations Operacions de directoris - + Loading... Carregant... - - - + + + A file or directory with that name already exists! Please pick a different name. Ja existeix un fitxer o un directori amb este mateix nom, utilitzeu-ne un altre. - + Error Creating Directory Error en crear el directori - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. + No s'ha pogut crear el directori. Si us plau, assegureu-vos que teniu els permisos corresponents per modificar el directori actual. - + Current Actual - + Create... Crea... - + File Fitxer - + Directory Directori - + Application Launcher - Llançador d'aplicacions + Llançador d'aplicacions - + Launch... Obre... - + Terminal Terminal - + SlideShow Presentació - + Multimedia Player Reproductor multimèdia - + View Files... Mostra els fitxers... - + Checksums Sumes de verificació - + Properties Propietats - + File Checksums: Sumes de verificació del fitxer: - + Missing Utility Utilitat no present - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + No s'ha pogut trobar la utilitat "lumina-fileinfo" al sistema. Si us plau, instal·leu-la primer. - + Open Obre - + Open With... Obre amb... - + Rename... Reanomena... - + Cut Selection Talla la selecció - + Copy Selection Copia la selecció - + Paste Enganxa - + Delete Selection Suprimeix la selecció @@ -405,7 +405,7 @@ Note: It will just add a number to the filename otherwise. - Nota: si no, només s'afegirà un número al nom del fitxer. + Nota: si no, només s'afegirà un número al nom del fitxer. @@ -430,22 +430,22 @@ Could not remove these files: - No s'han pogut suprimir aquests fitxers: + No s'han pogut suprimir aquests fitxers: Could not copy these files: - No s'han pogut copiar aquests fitxers: + No s'han pogut copiar aquests fitxers: Could not restore these files: - No s'han pogut restaurar aquests fitxers: + No s'han pogut restaurar aquests fitxers: Could not move these files: - No s'han pogut moure aquests fitxers: + No s'han pogut moure aquests fitxers: @@ -466,7 +466,7 @@ Old Location: %1 New Location: %2 - No és possible moure un directori a dins de si mateix. Si us plau, en comptes d'això, feu-ne una còpia. + No és possible moure un directori a dins de si mateix. Si us plau, en comptes d'això, feu-ne una còpia. Localització antiga: %1 Localització nova: %2 @@ -487,7 +487,7 @@ Localització nova: %2 This wizard will guide you through the process of downloading a GIT repository from the internet. - Aquest assistent us guiarà a través del procés de baixada d'un repositori GIT des d'Internet. + Aquest assistent us guiarà a través del procés de baixada d'un repositori GIT des d'Internet. @@ -512,7 +512,7 @@ Localització nova: %2 Type of Access - Tipus d'accés + Tipus d'accés @@ -527,7 +527,7 @@ Localització nova: %2 Username - Nom d'usuari + Nom d'usuari @@ -566,8 +566,8 @@ Localització nova: %2 - Click "Next" to start downloading the repository - Cliqueu a "Següent" per començar a baixar el repositori + Click "Next" to start downloading the repository + Cliqueu a "Següent" per començar a baixar el repositori @@ -615,7 +615,7 @@ Localització nova: %2 Bookmarks - Adreces d'interès + Adreces d'interès @@ -685,7 +685,7 @@ Localització nova: %2 Add Bookmark - Afegeix una adreça d'interès + Afegeix una adreça d'interès @@ -755,12 +755,12 @@ Localització nova: %2 Manage Bookmarks - Gestiona les adreces d'interès / marcadors + Gestiona les adreces d'interès / marcadors Show Action Buttons - Mostra els botons d'acció + Mostra els botons d'acció @@ -840,7 +840,7 @@ Localització nova: %2 The following directories are invalid and could not be opened: - Els directoris següents no són vàlids i no s'han pogut obrir: + Els directoris següents no són vàlids i no s'han pogut obrir: @@ -870,7 +870,7 @@ Localització nova: %2 New Bookmark - Adreça d'interès nova + Adreça d'interès nova @@ -885,7 +885,7 @@ Localització nova: %2 This bookmark name already exists. Please choose another. - Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. + Aquest nom d'adreça d'interès ja existeix. Trieu-ne un altre. @@ -1037,7 +1037,7 @@ Localització nova: %2 File Operation Errors - Errors d'operacions de fitxers + Errors d'operacions de fitxers @@ -1060,17 +1060,17 @@ Localització nova: %2 Delete this image file - Suprimeix aquest fitxer d'imatge + Suprimeix aquest fitxer d'imatge Rotate this image file counter-clockwise - Gira aquest fitxer d'imatge cap a l'esquerra + Gira aquest fitxer d'imatge cap a l'esquerra Rotate this image file clockwise - Gira aquest fitxer d'imatge cap a la dreta + Gira aquest fitxer d'imatge cap a la dreta @@ -1163,7 +1163,7 @@ Localització nova: %2 Errors during operation. Click to view details - Hi ha hagut errors durant l'operació. Cliqueu aquí per veure'n els detalls. + Hi ha hagut errors durant l'operació. Cliqueu aquí per veure'n els detalls. 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 48fba600..9e656076 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 @@ -188,184 +188,184 @@ 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. Ujistěte se, prosím, že máte náležitá oprávnění. - + New Directory Nová složka - - - + + + Invalid Name Neplatný název - + File Operations Operace se soubory - + Directory Operations Operace s adresáři - + Loading... Nahrává se... - - - + + + A file or directory with that name already exists! Please pick a different name. Soubor nebo složka se stejným jménem již existuje! Použijte prosím jiné jméno. - + 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. Dokument se nepodařilo vytvořit. Ujistěte se, prosím, že máte náležitá oprávnění ke změně nynějšího adresáře. - + Current Nynější - + Create... Vytvořit... - + File Soubor - + Directory Adresář - + Application Launcher Spouštěč programů - + Launch... Spustit... - + Terminal Terminál - + SlideShow Promítání - + Multimedia Player Přehrávač - + View Files... Zobrazit soubory... - + Checksums Kontrolní součty - + Properties Vlastnosti - + File Checksums: Kontrolní součty souborů: - + Missing Utility Chybějící nástroj - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Nástroj "lumina-fileinfo" nebyl nalezen.Prosím nainstalujte ho první. - + Open Otevřít - + Open With... Otevřít s… - + 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 @@ -566,7 +566,7 @@ Nové umístění: %2 - Click "Next" to start downloading the repository + Click "Next" to start downloading the repository Klepněte na Další pro započetí se stahováním úložiště 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 30f65ecc..78c367e3 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 @@ -188,184 +188,184 @@ Dobbeltkolonnevisning - + (Limited Access) (begrænset adgang) - - + + New Document Nyt dokument - - - + + + Name: Navn: - + Error Creating Document Kunne ikke oprette dokument - + The document could not be created. Please ensure that you have the proper permissions. Dokumentet kunne ikke oprettes. Sørg venligst for at du har de korrekte tilladelser. - + New Directory Ny mappe - - - + + + Invalid Name Ugyldigt navn - + File Operations Filhandlinger - + Directory Operations Mappehandlinger - + Loading... Indlæser ... - - - + + + A file or directory with that name already exists! Please pick a different name. En fil eller mappe med det samme navn eksisterer allerede. Vælg venligst et andet navn. - + Error Creating Directory Fejl ved oprettelse af mappe - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Mappen kunne ikke oprettes. Sørg venligst for at du har de fornødne tilladelser til at ændre den aktuelle mappe. - + Current Aktuelle - + Create... Opret ... - + File Fil - + Directory Mappe - + Application Launcher Programstarter - + Launch... Start ... - + Terminal Terminal - + SlideShow Diasshow - + Multimedia Player Multimedieafspiller - + View Files... Vis filer ... - + Checksums Tjeksumme - + Properties Egenskaber - + File Checksums: Fil-tjeksumme: - + Missing Utility Manglende redskaber - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Kunne ikke finde "lumina-fileinfo"-redskabet på systemet. Installér det venligst først. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Kunne ikke finde "lumina-fileinfo"-redskabet på systemet. Installér det venligst først. - + Open Åbn - + Open With... Åbn med ... - + Rename... Omdøb ... - + Cut Selection Klip valgte - + Copy Selection Kopiér valgte - + Paste Indsæt - + Delete Selection Slet valgte @@ -566,8 +566,8 @@ Ny placering: %2 - Click "Next" to start downloading the repository - Klik på "Næste" for at starte download af arkivet + Click "Next" to start downloading the repository + Klik på "Næste" for at starte download af arkivet 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 26942d93..16bc130c 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 @@ -189,184 +189,184 @@ Doppelspaltenansicht - + (Limited Access) (Beschränkter Zugriff) - - + + New Document Neues Dokument - - - + + + Name: Name: - + Error Creating Document Fehler beim Erstellen des Dokuments - + The document could not be created. Please ensure that you have the proper permissions. Das Dokument konnte nicht erstellt werden. Bitte stelle sicher, dass du die korrekten Dateirechte hast. - + New Directory Neues Verzeichnis - - - + + + Invalid Name Ungültiger Name - + File Operations Dateioperationen - + Directory Operations Verzeichnisoperationen - + Loading... Ladevorgang... - - - + + + A file or directory with that name already exists! Please pick a different name. Eine Datei oder ein Ordner mit diesem Namen existiert bereits! Bitte einen neuen Namen auswählen. - + Error Creating Directory Fehler beim Erstellen des Verzeichnisses - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Das Verzeichnis konnte nicht erstellt werden. Bitte sicherstellen, dass du die nötigen Rechte zum modifizieren des Verzeichnisses hast. - + Current Aktuell - + Create... Erstellen... - + File Datei - + Directory Verzeichnis - + Application Launcher Anwendungsstarter - + Launch... Starten... - + Terminal Terminal - + SlideShow - + Multimedia Player Multimedia-Abspieler - + 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. + + 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 - + Open With... Öffnen mit... - + Rename... Umbenennen … - + Cut Selection Auswahl ausschneiden - + Copy Selection Auswahl kopieren - + Paste Einfügen - + Delete Selection Auswahl löschen @@ -553,7 +553,7 @@ Neue Position: %2 Custom Depth - Benutzerdefinierter Wert für "depth" + Benutzerdefinierter Wert für "depth" @@ -567,8 +567,8 @@ Neue Position: %2 - Click "Next" to start downloading the repository - Auf "Weiter" klicken, um das Repository herunterzuladen + Click "Next" to start downloading the repository + Auf "Weiter" klicken, um das Repository herunterzuladen 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 c6ed6398..9b7f1e2d 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: Όνομα: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Μη έγκυρο όνομα - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d13e2aae..28ec683b 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Limited Access) - - + + New Document New Document - - - + + + Name: Name: - + Error Creating Document Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. The document could not be created. Please ensure that you have the proper permissions. - + New Directory New Directory - - - + + + Invalid Name Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Current - + Create... - + File File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Open With... - + Rename... Rename... - + Cut Selection Cut Selection - + Copy Selection Copy Selection - + Paste Paste - + Delete Selection Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 20ab63b6..f58aeee7 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Acceso Limitado) - - + + New Document Nuevo Documento - - - + + + Name: Nombre: - + Error Creating Document Error Al Crear El Documento - + The document could not be created. Please ensure that you have the proper permissions. El documento no pudo ser creado. Por favor, asegúrese de tener los permisos requeridos. - + New Directory Nuevo Directorio - - - + + + Invalid Name Nombre No Válido - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Un archivo o directorio con ese nombre ya existe! Por favor use un nombre diferente. - + Error Creating Directory Error al Crear el Directorio - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. EL directorio no pudo ser creado. Por favor asegúrese de tener los permisos requeridos para modificar el directorio actual. - + Current Actual - + Create... - + File Archivo - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + 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 - + Open With... Abrir Con… - + Rename... Renombrar... - + Cut Selection Cortar Selección - + Copy Selection Copiar Selección - + Paste Pegar - + Delete Selection Eliminar Selección 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 36d91125..f265654c 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Piiratud ligipääs) - - + + New Document Uus dokument - - - + + + Name: Nimi: - + Error Creating Document Viga dokumendi loomisel - + The document could not be created. Please ensure that you have the proper permissions. Dokumenti ei õnnestunud luua. Veendu, et selleks on olemas vastavad load. - + New Directory Uus kaust - - - + + + Invalid Name Vigane nimi - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Sama nimega fail või kaust on juba olemas. Palun kasuta mõnda teist nime. - + Error Creating Directory Viga kausta loomisel - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Kausta ei õnnestunud luua. Veendu, et selleks on olemas vastavad load. - + Current Praegune - + Create... - + File Fail - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Ava rakendusega... - + Rename... Nimeta ümber... - + Cut Selection Lõika valik - + Copy Selection Kopeeri valik - + Paste Aseta - + Delete Selection Kustuta valik 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 e7fe3032..af76395b 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: Izena: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Izen baliogabea - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 8c075597..fb8bfffd 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Rajallinen käyttöoikeus) - - + + New Document Uusi asiakirja - - - + + + Name: Nimi: - + Error Creating Document Virhe luotaessa asiakirjaa - + The document could not be created. Please ensure that you have the proper permissions. Asiakirjaa ei voitu luoda. Varmista, että oikeutesi ovat riittävät. - + New Directory Uusi kansio - - - + + + Invalid Name Virheellinen nimi - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Saman niminen tiedosto tai kansio on jo olemassa! Valitse toinen nimi. - + Error Creating Directory Virhe luotaessa kansiota - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Kansiota ei voitu luoda. Varmista, että sinulla on tarvittavat käyttöoikeudet nykyisen kansion muokkaamiseksi. - + Current Nykyinen - + Create... - + File Tiedosto - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Avaa sovellukseen… - + Rename... Muuta nimeä… - + Cut Selection Leikkaa valinta - + Copy Selection Kopioi valinta - + Paste Liitä - + Delete Selection Poista valinta 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 d6ffe72e..df7e9d90 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Accès limité) - - + + New Document Nouveau document - - - + + + Name: Nom: - + Error Creating Document Erreur à la création du document - + The document could not be created. Please ensure that you have the proper permissions. Le document ne peut pas être créé. Assurez vous d'avoir les permissions adéquates. - + New Directory Nouveau répertoire - - - + + + Invalid Name Nom invalide - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Un fichier ou répertoire du même nom existe déjà. Veuillez utiliser un autre nom. - + Error Creating Directory Erreur à la création du répertoire - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Le répertoire ne peut pas être créé. Veuillez vous assurer d'avoir les permissions adéquates pour modifier le répertoire actuel. - + Current Actuel - + Create... - + File Fichier - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Ouvir avec... - + Rename... Renommer... - + Cut Selection Couper la sélection - + Copy Selection Copier la sélection - + Paste Coller - + Delete Selection Supprimer la sélection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 f49aa20a..0d96544e 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 @@ -189,184 +189,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: שם: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory ספרייה חדשה - - - + + + Invalid Name שם לא חוקי - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File קובץ - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: סכומי ביקורת קובץ: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open פתח - + Open With... פתח בעזרת... - + Rename... שנה שם... - + Cut Selection גזור בחירה - + Copy Selection העתק בחירה - + Paste הדבק - + Delete Selection מחק בחירה 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 a6efdb9a..f575f31a 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 @@ -188,184 +188,184 @@ - + (Limited Access) (सीमित पहुँच) - - + + New Document न्य डॉक्यूमेंट - - - + + + Name: नाम: - + Error Creating Document डॉक्यूमेंट बनाने में त्रुटि - + The document could not be created. Please ensure that you have the proper permissions. डॉक्यूमेंट नहीं बनाया जा सकता - + New Directory नई डायरेक्टरी - - - + + + Invalid Name अवैध नाम - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. इस नाम की फाइल या डायरेक्टरी हले से ही मौजूद है|कृपया अलग नाम चुनें| - + Error Creating Directory डायरेक्टरी निर्माण में त्रुटि - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. ये डायरेक्टरी नहीं बनाई जा सकती | कृपया पहले सुनिश्चित कर लीजिये कि आपको तत्कालीन डायरेक्टरी में बदलाव की अनुमति है या नहीं| - + Current तत्कालीन - + Create... - + File फाइल - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: फाइल अवरोध: - + Missing Utility सुविधा उपलब्ध नहीं है - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. "लुमिना-फाइलइन्फो" नमक सुविधा उपकरण में नहीं है|कृपया पहले इनस्टॉल करें| - + Open खोलें - + Open With... में खोलें - + Rename... नाम दोबारा तय... - + Cut Selection चुने हुए भाग को कट करें - + Copy Selection चुने हुए भाग को कॉपी करें - + Paste चिपकाएँ - + Delete Selection चुने हुए भाग हो डिलीट करे 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 2a8db0d7..3a05fa17 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document Új dokumentum - - - + + + Name: Név: - + Error Creating Document Hiba a dokumentum létrehozásakor - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory Új könyvtár - - - + + + Invalid Name Érvénytelen név - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Egy ugyanilyen nevű fájl vagy könyvtár már létezik. Használjon más nevet. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current Jelenlegi - + Create... - + File Fájl - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Megnyitás ezzel… - + 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 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 b3e14d5e..634fe610 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Akses terbatas) - - + + New Document Dokumen Baru - - - + + + Name: Nama: - + Error Creating Document Galat saat membuat dokument - + The document could not be created. Please ensure that you have the proper permissions. Dokumen tidak dapat dibuat. Pastikan bahwa Anda memiliki izin yang tepat. - + New Directory Direktori Baru - - - + + + Invalid Name Nama Tak Valid - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Sebuah berkas / direktori dengan nama yang sama sudah ada. Coba gunakan nama yang lain. - + Error Creating Directory Galat sewaktu membuat direktori - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Direktori tidak dapat dibuat. Pastikan bahwa Anda memiliki izin yang tepat untuk memodifikasi direktori saat ini. - + Current Saat Ini - + Create... - + File Berkas - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Buka Dengan... - + Rename... Ganti Nama… - + Cut Selection Potong data terpilih - + Copy Selection Salin pilihan - + Paste Pasta - + Delete Selection Hapus Seleksi 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 678dbf36..4f16080f 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 @@ -188,184 +188,184 @@ Vista colonna doppia - + (Limited Access) (Accesso Limitato) - - + + New Document Nuovo Documento - - - + + + Name: Nome: - + Error Creating Document Errore Creazione Documento - + The document could not be created. Please ensure that you have the proper permissions. Impossibile creare il documento. Verifica di avere i permessi giusti. - + New Directory Nuova Directory - - - + + + Invalid Name Nome non valido - + File Operations Operazioni su file - + Directory Operations Operazioni su Cartella - + Loading... Caricamento... - - - + + + A file or directory with that name already exists! Please pick a different name. Un file o una directory con questo nome esiste già! Per favore scegli un altro nome. - + Error Creating Directory Errore Creazione Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. La directory non può essere creata. Verifica di avere le autorizzazioni appropriate per modificare la directory corrente. - + Current Attuale - + Create... Creando... - + File File - + Directory Cartella - + Application Launcher Applicazione di Avvio - + Launch... Avviando... - + Terminal Terminale - + SlideShow Presentazione - + Multimedia Player Riproduttore multimediale - + 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. + + 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 - + Open With... Apri con... - + Rename... Rinomina... - + Cut Selection Taglia Selezione - + Copy Selection Copia Selezione - + Paste Incolla - + Delete Selection Elimina selezione @@ -405,7 +405,7 @@ Note: It will just add a number to the filename otherwise. - Nota: altrimenti aggiungero' solo un numero al nome del file. + Nota: altrimenti aggiungero' solo un numero al nome del file. @@ -566,8 +566,8 @@ Nuova posizione: %2 - Click "Next" to start downloading the repository - Fai clic su "Avanti" per scaricare il repository + Click "Next" to start downloading the repository + Fai clic su "Avanti" per scaricare il repository @@ -760,7 +760,7 @@ Nuova posizione: %2 Show Action Buttons - Mostra Pulsanti d'Azione + Mostra Pulsanti d'Azione @@ -935,7 +935,7 @@ Nuova posizione: %2 WARNING: This will permanently delete the file(s) from the system! - ATTENZIONE: Questo modo eliminara' definitivamente il/i file dal sistema! + ATTENZIONE: Questo modo eliminara' definitivamente il/i file dal sistema! @@ -1060,7 +1060,7 @@ Nuova posizione: %2 Delete this image file - Elimina questo file 'immagine + Elimina questo file 'immagine @@ -1087,7 +1087,7 @@ Nuova posizione: %2 Go to Beginning - Salta all'Inizio + Salta all'Inizio @@ -1145,7 +1145,7 @@ Nuova posizione: %2 WARNING: This will permanently delete the file from the system! - ATTENZIONE: Questo eliminera' definitivamente il file dal sistema! + ATTENZIONE: Questo eliminera' definitivamente il file dal sistema! 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 0c69d13f..a2210f35 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 @@ -21,13 +21,13 @@ Remove Bookmark - "Remove"ボタンのツールチップ + "Remove"ボタンのツールチップ ブックマークを削除します Rename BookMark - "Rename"ボタンのツールチップ + "Rename"ボタンのツールチップ ブックマークの名前を変更します @@ -191,185 +191,185 @@ 二列で表示 - + (Limited Access) (アクセス制限あり) - - + + New Document 新しいドキュメント - - - + + + Name: 名前: - + Error Creating Document ドキュメントの作成中にエラーが発生しました - + The document could not be created. Please ensure that you have the proper permissions. ドキュメントを作成できません。パーミッション設定を確認してください。 - + New Directory 新しいディレクトリー - - - + + + Invalid Name 名前が無効です - + File Operations ファイル操作 - + Directory Operations ディレクトリー操作 - + Loading... ロードしています... - - - + + + A file or directory with that name already exists! Please pick a different name. 同名のファイルまたはディレクトリーが存在します。別の名前にしてください。 - + Error Creating Directory ディレクトリーの作成時にエラーが発生しました - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. ディレクトリーを作成できません。現在作業中のディレクトリーの書き込みパーミッション設定を確認してください。 - + Current スナップショットが存在する場合にはスナップショット名が入る 現行版 - + Create... 作成... - + File ファイル - + Directory ディレクトリー - + Application Launcher アプリケーションの起動 - + Launch... 起動... - + Terminal 端末 - + SlideShow スライドショー - + Multimedia Player マルチメディアプレイヤー - + 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" ユーティリティーはシステムに存在しません。先にインストールしてください。 + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + "lumina-fileinfo" ユーティリティーはシステムに存在しません。先にインストールしてください。 - + Open 開く - + Open With... アプリケーションで開く... - + Rename... 名前の変更... - + Cut Selection 選択したアイテムを切り取る - + Copy Selection 選択したアイテムをコピー - + Paste 貼り付け - + Delete Selection 選択したアイテムを削除 @@ -572,7 +572,7 @@ New Location: %2 - Click "Next" to start downloading the repository + Click "Next" to start downloading the repository 「次へ」をクリックするとリポジトリーのダウンロードを開始します @@ -1072,13 +1072,13 @@ New Location: %2 Delete this image file - "..."ボタンのツールチップ + "..."ボタンのツールチップ この画像ファイルを削除します Rotate this image file counter-clockwise - "..."ボタンのツールチップ + "..."ボタンのツールチップ 反時計回りに画像ファイルを回転させます 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 c0d9e55e..a1393ea8 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 @@ -188,184 +188,184 @@ - + (Limited Access) (제한된 접근) - - + + New Document 새 문서 - - - + + + Name: 이름: - + Error Creating Document 문서 만드는 중 오류 - + The document could not be created. Please ensure that you have the proper permissions. 문서를 만들 수 없습니다. 필요한 권한이 있는지 확인하십시오. - + New Directory 새 디렉터리 - - - + + + Invalid Name 잘못된 이름 - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. 같은 이름의 파일이나 디렉터리가 이미 있습니다! 다른 이름을 선택하십시오. - + Error Creating Directory 디렉터리 만드는 중 오류 - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. 디렉터리를 만들 수 없습니다. 현재 디렉터리를 변경할 권한이 있는지 확인하십시오. - + Current 현재 - + Create... - + File 파일 - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 열기 - + Open With... 다른 프로그램으로 열기... - + Rename... - + Cut Selection 선택 항목 삭제 - + Copy Selection 선택 항목 복사 - + Paste 붙여 넣기 - + Delete Selection 선택 항목 삭제 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 328f8c36..bdb8dedc 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 @@ -188,184 +188,184 @@ Dvigubo stulpelio rodinys - + (Limited Access) (Prieiga apribota) - - + + New Document Naujas dokumentas - - - + + + Name: Pavadinimas: - + Error Creating Document Klaida, kuriant dokumentą - + The document could not be created. Please ensure that you have the proper permissions. Dokumento sukurti nepavyko. Įsitikinkite, kad turite tinkamus leidimus. - + New Directory Naujas katalogas - - - + + + Invalid Name Netinkamas pavadinimas - + File Operations Failų operacijos - + Directory Operations Katalogų operacijos - + Loading... Įkeliama... - - - + + + A file or directory with that name already exists! Please pick a different name. Failas ar katalogas tokiu pavadinimu jau yra! Prašome pasirinkti kitą pavadinimą. - + Error Creating Directory Klaida, kuriant katalogą - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Katalogo sukurti nepavyko. Įsitikinkite, kad turite tinkamus leidimus tam, kad keistumėte esamą katalogą. - + Current Esamas - + Create... Sukurti... - + File Failą - + Directory Katalogą - + Application Launcher Programos leistuką - + Launch... Paleisti... - + Terminal Terminalą - + SlideShow Skaidrių rodymą - + Multimedia Player Multimedijos grotuvą - + View Files... Rodyti failų... - + Checksums Kontrolinės sumos - + Properties Savybės - + File Checksums: Failų kontrolinės sumos: - + Missing Utility Trūksta paslaugų programos - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - Sistemoje nepavyko rasti "lumina-fileinfo" paslaugų programos. Prašome, iš pradžių, ją įdiegti. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Sistemoje nepavyko rasti "lumina-fileinfo" paslaugų programos. Prašome, iš pradžių, ją įdiegti. - + Open Atverti - + Open With... Atverti naudojant... - + Rename... Pervadinti... - + Cut Selection Iškirpti žymėjimą - + Copy Selection Kopijuoti žymėjimą - + Paste Įdėti - + Delete Selection Ištrinti žymėjimą @@ -566,8 +566,8 @@ Nauja vieta: %2 - Click "Next" to start downloading the repository - Spustelėkite "Kitas", kad pradėtumėte saugyklos atsisiuntimą + Click "Next" to start downloading the repository + Spustelėkite "Kitas", kad pradėtumėte saugyklos atsisiuntimą 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 5b397052..d3296733 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Ierobežota piekļuve) - - + + New Document Jauns dokuments - - - + + + Name: Vārds: - + Error Creating Document Kļūda, veidojot dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokumentu nevar izveidot. Lūdzu, pārliecinieties, ka ir pietiekamas tiesības. - + New Directory Jauns katalogs - - - + + + Invalid Name Nederīgs nosaukums - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Fails vai katalogs ar šādu nosaukumu jau eksistē! Lūdzu, izvēlieties citu. - + Error Creating Directory Kļūda, veidojot katalogu - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Katalogu nevar izveidot. Lūdzu, pārliecinieties, ka ir pietiekamas tiesības modificēt pašreizējo katalogu. - + Current Pašreizējais - + Create... - + File Fails - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Atvērt ar... - + Rename... Pārsaukt... - + Cut Selection Izgriezt atlasi - + Copy Selection Kopēt atlasi - + Paste Ielīmēt - + Delete Selection Dzēst atlasi 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 cc513fac..7996d676 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Beperkte toegang) - - + + New Document Nieuw document - - - + + + Name: Naam: - + Error Creating Document Fout bij creëren van document - + The document could not be created. Please ensure that you have the proper permissions. Het document kan niet worden gecreëerd. Zorg ervoor dat u beschikt over de juiste rechten. - + New Directory Nieuwe map - - - + + + Invalid Name Ongeldige naam - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Er bestaat al een bestand of map met dezelfde naam. Kies een andere naam. - + Error Creating Directory Fout bij creëren van map - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. De map kan niet worden gecreëerd. Zorg ervoor dat u beschikt over de juiste rechten om de huidige map te mogen bewerken. - + Current Huidig - + Create... - + File Bestand - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Openen met... - + Rename... Naam wijzigen... - + Cut Selection Selectie knippen - + Copy Selection Selectie kopiëren - + Paste Plakken - + Delete Selection Selectie verwijderen 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 26bda6c5..31a203b2 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 @@ -188,184 +188,184 @@ Widok kolumny podwójnej - + (Limited Access) (Ograniczony dostęp) - - + + New Document Nowy dokument - - - + + + Name: Nazwa: - + Error Creating Document Błąd podczas tworzenia dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Nie udało się utworzyć dokumentu. Upewnij się czy masz właściwe uprawnienia. - + New Directory Nowy katalog - - - + + + Invalid Name Nieprawidłowa nazwa - + File Operations Operacje na plikach - + Directory Operations Operacje na katalogach - + Loading... Wczytywanie... - - - + + + A file or directory with that name already exists! Please pick a different name. Plik lub katalog o podanej nazwie już istnieje! Proszę wybrać inną nazwę. - + Error Creating Directory Błąd podczas tworzenia katalogu - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Nie udało się stworzyć katalogu. Proszę upewnij się czy masz właściwe uprawnienia by móc modyfikować ten katalog. - + Current Bieżący - + Create... Utwórz... - + File Plik - + Directory Katalog - + Application Launcher Aplikację - + Launch... Uruchom... - + Terminal Terminal - + SlideShow Pokaz slajdów - + Multimedia Player Odtwarzacz multimedialny - + 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ć. + + 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 - + Open With... Otwórz za pomocą... - + Rename... Zmień nazwę... - + Cut Selection Wytnij - + Copy Selection Kopiuj - + Paste Wklej - + Delete Selection Usuń @@ -566,8 +566,8 @@ Nowa lokalizacja: %2 - Click "Next" to start downloading the repository - Aby rozpocząć pobieranie repozytorium, kliknij "Dalej" + Click "Next" to start downloading the repository + Aby rozpocząć pobieranie repozytorium, kliknij "Dalej" 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 e44174d0..71a2dc51 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: Nome: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name Nome Inválido - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File Arquivo - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Abrir Com... - + Rename... - + Cut Selection Cortar a seleção - + Copy Selection Copiar a selecção - + Paste Colar - + Delete Selection Remover a Selecção 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 51c385b5..58b05233 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 @@ -188,184 +188,184 @@ Vista de coluna dupla - + (Limited Access) (Acesso limitado) - - + + New Document Novo Documento - - - + + + Name: Nome: - + Error Creating Document Erro ao Criar Documento - + The document could not be created. Please ensure that you have the proper permissions. O documento não pode ser criado. Por favor, certifique-se que possuí permissão necessária. - + New Directory Novo Diretório - - - + + + Invalid Name Nome Inválido - + File Operations Operações de Arquivo - + Directory Operations Operações de diretório - + Loading... Carregando... - - - + + + A file or directory with that name already exists! Please pick a different name. Já existe um arquivo ou pasta com este nome. Por favor, use um nome diferente. - + Error Creating Directory Erro ao Criar Pasta - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. A pasta não pode ser criada. Por favor, verifique suas permissões. - + Current Atual - + Create... Criar... - + File Arquivo - + Directory Diretório - + Application Launcher Iniciador de Aplicativos - + Launch... Lançamento... - + Terminal Terminal - + SlideShow ApresentaçãodeSlides - + Multimedia Player Leitor Multimidia - + View Files... Ver arquivos... - + Checksums Verificação de somas - + Properties Propriedades - + File Checksums: Arquivo checksum: - + Missing Utility Utilitário faltando - - The "lumina-fileinfo" utility could not be found on the system. Please install it first. - O "lumina-fileinfo" não pode ser encontrado no sistema. Por favor, instale-o... + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + O "lumina-fileinfo" não pode ser encontrado no sistema. Por favor, instale-o... - + Open Abrir - + Open With... Abrir com... - + Rename... Renomear... - + Cut Selection Cortar seleção - + Copy Selection Copiar seleção - + Paste Colar - + Delete Selection Excluir seleção @@ -566,8 +566,8 @@ Nova Localização: %2 - Click "Next" to start downloading the repository - Clique em "Avançar" para iniciar o download do repositório + Click "Next" to start downloading the repository + Clique em "Avançar" para iniciar o download do repositório 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 94167018..cb070bda 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 @@ -188,184 +188,184 @@ Вид в две колонки - + (Limited Access) (Ограниченный доступ) - - + + New Document Новый документ - - - + + + Name: Имя: - + Error Creating Document Ошибка создания документа - + The document could not be created. Please ensure that you have the proper permissions. Документ не может быть создан. Пожалуйста, убедитесь, что у вас есть соответствующие права. - + New Directory Новый каталог - - - + + + Invalid Name Недопустимое имя - + File Operations Операции с файлами - + Directory Operations Операции с директориями - + Loading... Загрузка... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл или каталог с таким именем уже существует! Пожалуйста, выберите другое имя. - + Error Creating Directory Ошибка создания каталога - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Каталог не может быть создан. Пожалуйста, убедитесь, что у вас есть соответствующие права, чтобы изменить текущий каталог. - + Current Текущий - + Create... Созание... - + File Файл - + Directory Директория - + Application Launcher Загрузчик приложений - + Launch... Загрузка... - + Terminal Терминал - + SlideShow Слайд шоу - + Multimedia Player Мультимедийный плеер - + 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" не может быть найдена в системе. Пожалуйста, установите ее в первую очередь. + + The "lumina-fileinfo" utility could not be found on the system. Please install it first. + Утилита "Lumina-FileInfo" не может быть найдена в системе. Пожалуйста, установите ее в первую очередь. - + Open Открыть - + Open With... Открыть в ... - + Rename... Переименовать... - + Cut Selection Вырезать выделенное - + Copy Selection Копировать выделенное - + Paste Вставить - + Delete Selection Удалить выделенное @@ -565,8 +565,8 @@ New Location: %2 - Click "Next" to start downloading the repository - Нажмите "Далее", чтобы начать загрузку хранилища + Click "Next" to start downloading the repository + Нажмите "Далее", чтобы начать загрузку хранилища 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 61d63f84..d70ba93e 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Limitovaný prístup) - - + + New Document Nový dokument - - - + + + Name: Meno: - + Error Creating Document Chyba pri vytvorení dokumentu - + The document could not be created. Please ensure that you have the proper permissions. Dokument nie je možné vytvoriť. Uistite sa, či máté dostatočné práva. - + New Directory Nový priečinok - - - + + + Invalid Name Neplatné meno - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Súbor alebo adresár s takým istým názvom už existuje. Prosím, použite iný názov. - + Error Creating Directory Chyba pri vytváraní adresára - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Priečinok nemôže byť vytvorený. Prosím uistite sa, či máte dostatočné práva na úpravu aktuálneho adresára. - + Current Aktuálny - + Create... - + File Súbor - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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ť - + Open With... Otvoriť s... - + Rename... - + Cut Selection Vystrihnúť výber - + Copy Selection Kopírovať označené - + Paste Vložiť - + Delete Selection Zmazať výber 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 24bb3b4d..f7ede876 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Begränsad tillgång) - - + + New Document Nytt dokument - - - + + + Name: Namn: - + Error Creating Document Fel när dokument skulle skapas - + The document could not be created. Please ensure that you have the proper permissions. Detta dokument kunde inte skapas. Se till att du har rätt behörigheter. - + New Directory Ny katalog - - - + + + Invalid Name Ogiltigt namn - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. En fil med samma namn finns redan. Använd ett annat namn. - + Error Creating Directory Fel vid skapande av katalog - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Denna katalogen kunde inte skapas. Se till att du har rätt behörigheter att modifera den aktuella katalogen. - + Current Aktuell - + Create... - + File Fil - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + 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 - + Open With... Öppna med... - + Rename... Byt namn... - + Cut Selection Klipp markering - + Copy Selection Kopiera markering - + Paste Klistra in - + Delete Selection Ta bort markering 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 1790cd04..c137d404 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Sınırlı Erişim) - - + + New Document Yeni Belge - - - + + + Name: Ad: - + Error Creating Document Belge Oluşturmada Hata - + The document could not be created. Please ensure that you have the proper permissions. Belge oluşturulamadı. Lütfen uygun izinlere sahip olduğunuza emin olun. - + New Directory Yeni Dizin - - - + + + Invalid Name Geçersiz Ad - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Aynı adda bir dosya ya da dizin zaten mevcut! Lütfen farklı bir ad seçin. - + Error Creating Directory Dizin Oluşturmada Hata - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Dizin oluşturulamadı. Lütfen geçerli dizinde değişiklik yapmak için uygun izinlere sahip olduğunuza emin olun. - + Current Geçerli - + Create... - + File Dosya - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 - + Open With... Birlikte Aç... - + Rename... Yeniden adlandır... - + Cut Selection Seçimi Kes - + Copy Selection Seçimi Kopyala - + Paste Yapıştır - + Delete Selection Seçimi Sil 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 0137d59d..2c7cfbcf 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 @@ -188,184 +188,184 @@ - + (Limited Access) (Обмежений доступ) - - + + New Document Новий документ - - - + + + Name: Ім'я: - + Error Creating Document Помилка створення документа - + The document could not be created. Please ensure that you have the proper permissions. Цей документ не може бути створений. Будь ласка, впевніться, що у вас є відповідні права. - + New Directory Новий каталог - - - + + + Invalid Name Некоректна назва - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. Файл або каталог з таким іменем вже існує! Будь ласка, виберіть інше ім'я. - + Error Creating Directory Помилка створення каталогу - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. Каталог не може бути створений. Будь ласка, впевніться, що у вас є відповідні права, щоб змінити поточний каталог. - + Current Поточний - + Create... - + File Файл - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 Відкрити - + Open With... Відкрити за допомогою… - + Rename... Перейменувати... - + Cut Selection Вирізати обране - + Copy Selection Копіювати виділене - + Paste Вставити - + Delete Selection Видалити виділене 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 76207650..23a4da49 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 @@ -190,184 +190,184 @@ - + (Limited Access) (有限访问) - - + + New Document 新文档 - - - + + + Name: 名称: - + Error Creating Document 建立文档出错 - + The document could not be created. Please ensure that you have the proper permissions. 无法建立文档。请确定您有适当的权限。 - + New Directory 新目录 - - - + + + Invalid Name 无效的名称 - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. 已有相同名字的文件或目录存在!请选择一个不同的名字。 - + Error Creating Directory 创建目录错误 - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. 目录无法被建立。请检查您有更改当前目录的适当权限。 - + Current 当前 - + Create... - + File 文件 - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + 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 打开 - + Open With... 打开方式... - + Rename... 重命名... - + Cut Selection 剪切选中部分 - + Copy Selection 复制选中部分 - + Paste 粘贴 - + Delete Selection 删除选中部分 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection 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 d6b4f571..61f95564 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 @@ -188,184 +188,184 @@ - + (Limited Access) - - + + New Document - - - + + + Name: - + Error Creating Document - + The document could not be created. Please ensure that you have the proper permissions. - + New Directory - - - + + + Invalid Name - + File Operations - + Directory Operations - + Loading... - - - + + + A file or directory with that name already exists! Please pick a different name. - + Error Creating Directory - + The directory could not be created. Please ensure that you have the proper permissions to modify the current directory. - + Current - + Create... - + File - + Directory - + Application Launcher - + Launch... - + Terminal - + SlideShow - + Multimedia Player - + View Files... - + Checksums - + Properties - + File Checksums: - + Missing Utility - + The "lumina-fileinfo" utility could not be found on the system. Please install it first. - + Open - + Open With... - + Rename... - + Cut Selection - + Copy Selection - + Paste - + Delete Selection diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_af.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ar.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_az.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts index f16ac8f7..50ba8aa4 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bg.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Снимка на екрана - + Include Borders Включително рамката - - + Save As Запис като - - Crop - Изрязване - - - + Resize Оразмеряване @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Файл + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+Н - + Close Затваряне - + + Close Application + + + + Esc Esc - + Entire Session Цялата сесия - + Single Window Единичен прозорец - + Single Screen Единичен екран - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Запазване на снимка на екрана - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Бърз запис - + PNG Files (*.png);;AllFiles (*) PNG файлове (*.png);;Всички файлове (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bn.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_bs.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts index 695be8c4..a5092000 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts @@ -17,30 +17,24 @@ MainUI - + Take Screenshot Fes una captura de pantalla - + Include Borders Inclou les vores - - + Save As Desa com a... - - Crop - Escapça - - - + Resize - Canvia'n la mida + Canvia'n la mida @@ -48,82 +42,157 @@ Captura de pantalla del Lumina - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay Retard en segons - - Capture - Captura + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Edita + + toolBar + - - File - Fitxer + + Capture + Captura - + Ctrl+N Ctrl+N - + Close Tanca - + + Close Application + + + + Esc Esc - + Entire Session Tota la sessió - + Single Window Una sola finestra - + Single Screen Una sola pantalla - + + View + + + + + Settings + + + + Could not save screenshot - No s'ha pogut desar la captura. + No s'ha pogut desar la captura. - + The screenshot could not be saved. Please check directory permissions or pick a different directory - No s'ha pogut desar la captura. Si us plau, comproveu els permisos del directori o trieu-ne un altre. + No s'ha pogut desar la captura. Si us plau, comproveu els permisos del directori o trieu-ne un altre. - + Save Screenshot Desa la captura de pantalla - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Desament ràpid - + PNG Files (*.png);;AllFiles (*) Fitxers PNG (*.png);; Tots els fitxers (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts index b7bb32d3..e43df759 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cs.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Zachytit snímek obrazovky - + Include Borders Zahrnout rámečky - - + Save As Uložit jako - - Crop - Oříznout - - - + Resize Změnit velikost @@ -48,82 +42,157 @@ Snímek obrazovky - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay Zpoždění v sekundách - - Capture - Zachytit + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Upravit + + toolBar + - - File - Soubor + + Capture + Zachytit - + Ctrl+N Ctrl+N - + Close Zavřít - + + Close Application + + + + Esc Esc - + Entire Session Celé sezení - + Single Window Jedno okno - + Single Screen Jedna obrazovka - + + View + + + + + Settings + + + + Could not save screenshot Nepodařilo se uložit snímek obrazovky - + The screenshot could not be saved. Please check directory permissions or pick a different directory Nepodařilo se uložit snímek obrazovky. Prověřte, prosím, oprávnění k adresáři nebo zvolte jiný adresář - + Save Screenshot Uložit snímek obrazovky - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Rychle uložit - + PNG Files (*.png);;AllFiles (*) PNG Soubory (*.png);;Všechny soubory (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_cy.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts index ec870f78..8610ebc8 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Tag skærmbillede - + Include Borders Inkludér rammer - - + Save As Gem som - - Crop - Beskær - - - + Resize Tilpas størrelse @@ -48,82 +42,157 @@ Lumina-skærmbillede - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay Sek. forsinkelse - - Capture - Fang + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Rediger + + toolBar + - - File - Fil + + Capture + Fang - + Ctrl+N Ctrl+N - + Close Luk - + + Close Application + + + + Esc Esc - + Entire Session Hele sessionen - + Single Window Et enkelt vindue - + Single Screen En enkel skærm - + + View + + + + + Settings + + + + Could not save screenshot Kunne ikke gemme skærmbillede - + The screenshot could not be saved. Please check directory permissions or pick a different directory Skærmbilledet kunne ikke gemmes. Tjek venligst mappetilladelserne eller vælg en anden mappe - + Save Screenshot Gem skærmbillede - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Kvik gem - + PNG Files (*.png);;AllFiles (*) PNG-filer (*.png);;Alle filer (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts index 5888f671..c0265f4f 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_de.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Bildschirmfoto erstellen - + Include Borders Rahmen inkludieren - - + Save As Speichern unter - - Crop - Zuschneiden - - - + Resize Größe ändern @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay Sek. Verzögerung - - Capture - Aufnehmen + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Bearbeiten + + toolBar + - - File - Datei + + Capture + Aufnehmen - + Ctrl+N Strg+N - + Close Schließen - + + Close Application + + + + Esc Esc - + Entire Session Vollständige Sitzung - + Single Window Einzelnes Fenster - + Single Screen Einzelner Bildschirm - + + View + + + + + Settings + + + + Could not save screenshot Bildschirmfoto konnte nicht gespeichert werden - + The screenshot could not be saved. Please check directory permissions or pick a different directory Das Bildschirmfoto konnte nicht gespeichert werden. Bitte überprüfen Sie die Verzeichnisberechtigungen oder wählen Sie ein anderes Verzeichnis aus - + Save Screenshot Bildschirmfoto speichern - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Strg+S - + Quick Save Schnellspeichern - + PNG Files (*.png);;AllFiles (*) PNG-Dateien (*.png);;Alle Dateien (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts index d2f73ed1..c5294a8d 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_el.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Πάρτε στιγμιότυπο οθόνης - + Include Borders Συμπερίληψη περιθωρίων - - + Save As Αποθήκευση Ως - - Crop - Περικοπή - - - + Resize Αλλαγή μεγέθους @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Αρχείο + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Κλείσιμο - + + Close Application + + + + Esc Esc - + Entire Session Ολόκληρη την Συνεδρία - + Single Window Μόνο αυτό το παράθυρο - + Single Screen Μόνο αυτή την οθόνη - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Αποθήκευση Στιγμιοτύπου Οθόνης - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Γρήγορη Αποθήκευση - + PNG Files (*.png);;AllFiles (*) Αρχεία PNG (*.png);;ΌλαΤαΑρχεία (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts index a1802820..7cc1aefd 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_GB.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Take Screenshot - + Include Borders Include Borders - - + Save As Save As - - Crop - Crop - - - + Resize Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - File + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Close - + + Close Application + + + + Esc Esc - + Entire Session Entire Session - + Single Window Single Window - + Single Screen Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Quick Save - + PNG Files (*.png);;AllFiles (*) PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_en_ZA.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts index 21b7e1c3..46b58820 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_es.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Capturar pantalla - + Include Borders Incluir Bordes - - + Save As Guardar Como - - Crop - Recortar - - - + Resize Redimensionar @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Archivo + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Cerrar - + + Close Application + + + + Esc Esc - + Entire Session Sesión Completa - + Single Window Ventana Unica - + Single Screen Pantalla Unica - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Guardar la Captura de Pantalla - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Guardado Rápido - + PNG Files (*.png);;AllFiles (*) Archivos PNG (*.png);;Todos Los Archivos (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts index 0030b718..2faf6578 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_et.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Ekraanipildi tegemine - + Include Borders Koos äärtega - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window Üks aken - + Single Screen Üks ekraan - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Salvesta ekraanipilt - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) PNG-failid (*.png);;Kõik failid (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts index 2aa0aae1..349a29cf 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_eu.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Pantaila-argazkia egin - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Pantaila-argazkia gorde - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ktrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) PNG fitxategiak (*.png);;Fitxategi guztiak (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fa.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts index b1d4f1aa..e7ef8134 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fi.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Ota kuvakaappaus - + Include Borders Sisällytä reunat - - + Save As Tallenna nimellä - - Crop - Rajaa - - - + Resize Muuta kokoa @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Tiedosto + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Sulje - + + Close Application + + + + Esc Esc - + Entire Session Koko istunto - + Single Window Yksittäinen ikkuna - + Single Screen Yksittäinen näyttö - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Tallenna kuvakaappaus - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Pikatallennus - + PNG Files (*.png);;AllFiles (*) PNG-tiedostot (*.png);;Kaikki tiedostot (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts index a2f576e3..45e9a2fe 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Capture d'écran - + Include Borders Inclure les bordures - - + Save As Enregistrer sous - - Crop - Rogner - - - + Resize Redimensionner @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Fichier + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Fermer - + + Close Application + + + + Esc Echap - + Entire Session Toute la session - + Single Window Fenêtre unique - + Single Screen Ecran unique - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Enregistrer la capture d'écran - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Enregistrement Rapide - + PNG Files (*.png);;AllFiles (*) Fichiers PNG (*.png);;Tous les fichiers (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_fr_CA.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_gl.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts index 69700584..846f8f0b 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_he.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot תפוס צילום מסך - + Include Borders כלול מסגרת - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session סשן שלם - + Single Window חלון בודד - + Single Screen מסך בודד - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot שמור צילום מסך - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts index 17e02bd6..8ee84b28 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hi.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot स्क्रीनशॉट लें - + Include Borders बॉर्डर्स समेत - - + Save As इस प्रारूप में संचित करें - - Crop - एक हिस्सा काटें - - - + Resize आकार परिवर्तन @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - फाइल + + toolBar + - + + Capture + + + + Ctrl+N कंट्रोल+N - + Close बंद - + + Close Application + + + + Esc एस्केप - + Entire Session पूर्ण काल - + Single Window एकल विंडो - + Single Screen एकल स्क्रीन - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot स्क्रीन शॉट संचित करें - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S कंट्रोल+S - + Quick Save तीव्र संचय - + PNG Files (*.png);;AllFiles (*) पीएनजी फाइलें (*.png);;सभी फाइलें (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hr.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts index 00a65355..824a7c72 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_hu.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Képernyőkép készítése - + Include Borders Keretekkel együtt - - + Save As Mentés másként - - Crop - Vágás - - - + Resize Átméretezés @@ -48,82 +42,157 @@ Lumina képernyőkép készítő - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay mp késleltetés - - Capture - Felvétel + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Szerkesztés + + toolBar + - - File - Fájl + + Capture + Felvétel - + Ctrl+N Ctrl+N - + Close Bezárás - + + Close Application + + + + Esc Esc - + Entire Session Teljes munkamenet - + Single Window Egy ablak - + Single Screen Egy képernyő - + + View + + + + + Settings + + + + Could not save screenshot A képernyőkép nem menthető - + The screenshot could not be saved. Please check directory permissions or pick a different directory A képernyőkép nem menthető. Ellenőrizd a könytár jogait, vagy válassz másikat - + Save Screenshot Képernyőkép mentése - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Gyors mentés - + PNG Files (*.png);;AllFiles (*) PNG fájlok (*.png);;Minden fájl (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts index ebb15804..f173eda9 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_id.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Ambil Cuplikan - + Include Borders Sertakan Bingkai - - + Save As Simpan Sebagai - - Crop - Potong - - - + Resize Ubah Ukuran @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Berkas + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Tutup - + + Close Application + + + + Esc Esc - + Entire Session Seluruh Sesi - + Single Window Tunggal Window - + Single Screen Tunggal Pameran - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Simpan Gambar Layar - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Cepat Simpan - + PNG Files (*.png);;AllFiles (*) PNG berkas (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_is.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts index c5c8d577..d6ac39e0 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_it.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Cattura schermata - + Include Borders Includi il bordo - - + Save As Salva Come - - Crop - Ritaglia - - - + Resize Ridimensiona @@ -48,82 +42,157 @@ Cattura schermo di Lumina - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay Secondi di ritardo - - Capture - Cattura + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Modifica + + toolBar + - - File - File + + Capture + Cattura - + Ctrl+N Ctrl+N - + Close Chiudi - + + Close Application + + + + Esc ESC - + Entire Session Sessione Intera - + Single Window Finestra Singola - + Single Screen Singola Finestra - + + View + + + + + Settings + + + + Could not save screenshot Impossibile cattuare lo schermo - + The screenshot could not be saved. Please check directory permissions or pick a different directory - L'immagine dello schermo non può essere salvata. Si prega di verificare i permessi della cartella o scegliere una cartella differente + L'immagine dello schermo non può essere salvata. Si prega di verificare i permessi della cartella o scegliere una cartella differente - + Save Screenshot Salva schermata - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Salvataggio Rapido - + PNG Files (*.png);;AllFiles (*) File PNG (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts index f72800ae..f423d278 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ja.ts @@ -17,30 +17,24 @@ MainUI - + Take Screenshot アプリケーションの名前 スクリーンショットの撮影 - + Include Borders ウィンドウの境界線を含める - - + Save As ボタンのキャプション 名前を付けて保存 - - Crop - 切り抜き - - - + Resize サイズ変更 @@ -50,85 +44,160 @@ Lumina スクリーンショット - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay 秒後 - - Capture - キャプチャー + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - 編集 + + toolBar + - - File - ファイル + + Capture + キャプチャー - + Ctrl+N Ctrl+N - + Close 閉じる - + + Close Application + + + + Esc Esc - + Entire Session X session のことではないか? > 「画面全体」 セッション全体 - + Single Window ひとつのウィンドウ - + Single Screen ひとつの画面 - + + View + + + + + Settings + + + + Could not save screenshot スクリーンショットを保存できません - + The screenshot could not be saved. Please check directory permissions or pick a different directory このスクリーンショットを保存できません。ディレクトリーのパーミッションを確認するか、他のディレクトリーを選択してください。 - + Save Screenshot - "Save"ボタンのツールチップ + "Save"ボタンのツールチップ スクリーンショットの保存 - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save - 「快速保存」(zh)も捨てがたいが、"Save As"との対比なら「保存」であるべきだろう。 + 「快速保存」(zh)も捨てがたいが、"Save As"との対比なら「保存」であるべきだろう。 保存 - + PNG Files (*.png);;AllFiles (*) PNG ファイル (*.png);;すべて (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ka.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts index c14bc053..4742d0e5 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ko.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot 스크린샷 찍기 - + Include Borders 테두리 포함 - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session 전체 세션 - + Single Window 단일 창 - + Single Screen 단일 화면 - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot 스크린샷 저장 - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) PNG 파일 (*.png);;모든 파일 (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts index fd93d1c0..c2ba5dd6 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lt.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Padaryti ekrano kopiją - + Include Borders Įtraukti rėmelį - - + Save As Įrašyti kaip - - Crop - Apkirpti - - - + Resize Keisti dydį @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Failas + + toolBar + - + + Capture + + + + Ctrl+N Ctrl(Vald)+N - + Close Užverti - + + Close Application + + + + Esc Esc(Gr) - + Entire Session Visas seansas - + Single Window Vienas langas - + Single Screen Vienas ekranas - + + View + + + + + Settings + + + + Could not save screenshot Nepavyko įrašyti ekrano kopijos - + The screenshot could not be saved. Please check directory permissions or pick a different directory Nepavyko įrašyti ekrano kopiją. Prašome patikrinti katalogo leidimus arba pasirinkti kitą katalogą - + Save Screenshot Įrašyti ekrano kopiją - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl(Vald)+S - + Quick Save Greitasis įrašymas - + PNG Files (*.png);;AllFiles (*) PNG failai (*.png);;Visi failai (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts index a37d0913..c049e37f 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_lv.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Iegūt ekrānuzņēmumu - + Include Borders Iekļaut apmales - - + Save As Saglabāt Kā - - Crop - Apgriezt - - - + Resize Mainīt izmēru @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Fails + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Aizvērt - + + Close Application + + + + Esc Esc - + Entire Session Visu sesiju - + Single Window Vienu logu - + Single Screen Vienu ekrānu - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Saglabāt ekrānuzņēmumu - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Ātrā saglabāšana - + PNG Files (*.png);;AllFiles (*) PNG faili (*.png);;Visi faili (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mk.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mn.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ms.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_mt.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nb.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts index 0d8538a1..95ab6e51 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_nl.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Schermafdruk maken - + Include Borders Inclusief vensterranden - - + Save As Opslaan als - - Crop - Bijsnijden - - - + Resize Herschalen @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Bestand + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Sluiten - + + Close Application + + + + Esc Esc - + Entire Session Volledige sessie - + Single Window Los venster - + Single Screen Los scherm - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Schermafdruk opslaan - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Snel opslaan - + PNG Files (*.png);;AllFiles (*) PNG-bestanden(*.png);;Alle bestanden(*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pa.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts index c2dafeda..fe8f4aff 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pl.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Zrób zrzut ekranu - + Include Borders Uwzględnij granice okna - - + Save As Zapisz jako - - Crop - Przycinanie - - - + Resize Zmiana rozmiaru @@ -48,82 +42,157 @@ Zrzut ekranu Lumina - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay sekund(y) opoźnienia - - Capture - Wykonaj zrzut ekranu + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Edycja + + toolBar + - - File - Plik + + Capture + Wykonaj zrzut ekranu - + Ctrl+N Ctrl+N - + Close Zamknij - + + Close Application + + + + Esc Esc - + Entire Session Cała sesja - + Single Window Pojedyncze okno - + Single Screen Pojedynczy ekran - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Zapisz zrzut ekranu - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Szybki zapis - + PNG Files (*.png);;AllFiles (*) Pliki PNG (*.png);;Wszystkie pliki (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts index d8e16047..78df98fa 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Capturar Imagem do Ecrã - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Guardar Captura de Ecã - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) Ficheiros PNG (*.png);;Todos os Ficheiros (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts index 98e943d4..bd5bb27e 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_pt_BR.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Capturar imagem da tela - + Include Borders Incluir bordas - - + Save As Salvar como - - Crop - Recortar - - - + Resize Redimensionar @@ -48,82 +42,157 @@ Captura de tela do Lumina - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay Segs Atraso - - Capture - Capturar + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Editar + + toolBar + - - File - Arquivo + + Capture + Capturar - + Ctrl+N Ctrl+N - + Close Fechar - + + Close Application + + + + Esc Esc - + Entire Session Sessão inteira - + Single Window Somente janela - + Single Screen Tela Única - + + View + + + + + Settings + + + + Could not save screenshot Não foi possível salvar a captura de tela - + The screenshot could not be saved. Please check directory permissions or pick a different directory A captura de tela não pôde ser salva. Verifique as permissões do diretório ou escolha um diretório diferente - + Save Screenshot Salvar captura de tela - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Salvamento rápido - + PNG Files (*.png);;AllFiles (*) Arquivos PNG (*.png);;Todos os arquivos (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ro.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts index c771d112..3b8febbb 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ru.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Сделать снимок экрана - + Include Borders Включить границы - - + Save As Сохранить как - - Crop - Обрезать - - - + Resize Изменить размер @@ -48,82 +42,157 @@ Lumina снимок экрана - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay Задержка (сек) - - Capture - Захват + + General Settings + + + + + Show popup warnings about unsaved screenshots + - - Edit - Редактировать + + toolBar + - - File - Файл + + Capture + Захват - + Ctrl+N Ctrl+N - + Close Закрыть - + + Close Application + + + + Esc Esc - + Entire Session Вся сессия - + Single Window Одно окно - + Single Screen Один экран - + + View + + + + + Settings + + + + Could not save screenshot Не удалось сохранить снимок экрана - + The screenshot could not be saved. Please check directory permissions or pick a different directory Снимок экрана не может быть сохранен. Пожалуйста, проверьте права доступа для каталога или выберите другой каталог - + Save Screenshot Сохранить Снимок - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Быстрое сохранение - + PNG Files (*.png);;AllFiles (*) PNG Файлы (*.png);;Все Файлы (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts index 9d313cbb..0a99674e 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sk.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Urobiť snímku obrazovky - + Include Borders Vrátane okraja - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session Celé sedenie - + Single Window _Jedno okno - + Single Screen Jedna obrazovka - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Uložiť snímku obrazovky - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sl.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sr.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts index 6dbe2461..444d1df9 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sv.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Ta skärmdump - + Include Borders Inkludera ramar - - + Save As Spara som - - Crop - Beskär - - - + Resize Ändra storlek @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Fil + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Stäng - + + Close Application + + + + Esc Esc - + Entire Session Hel Session - + Single Window Enstaka fönster - + Single Screen Enstaka skärm - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Spara skärmbild - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Snabb spara - + PNG Files (*.png);;AllFiles (*) PNG Filer (*.png);; Alla Filer (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_sw.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ta.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tg.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_th.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts index 657a55b0..7f8ab040 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_tr.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Ekran Görüntüsü Al - + Include Borders Kenarlıkları Dahil Et - - + Save As Farklı Kaydet - - Crop - Kırp - - - + Resize Yeniden boyutlandır @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Dosya + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Kapat - + + Close Application + + + + Esc Esc - + Entire Session Tüm Oturum - + Single Window Tek Pencere - + Single Screen Tek Ekran - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Ekran Görüntüsünü Kaydet - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Hızlı Kaydet - + PNG Files (*.png);;AllFiles (*) PNG Dosyaları (*.png);;TümDosyalar (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts index 156e1086..a8fa6d2a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uk.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot Знімок екрану - + Include Borders Увімкнути рамку - - + Save As Зберегти як - - Crop - Обрізати - - - + Resize Змінити розмір @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - Файл + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close Закрити - + + Close Application + + + + Esc Esc - + Entire Session Вся сесія - + Single Window Єдине вікно - + Single Screen Єдиний екран - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot Зберегти знімок екрану - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save Швидке збереження - + PNG Files (*.png);;AllFiles (*) PNG Файли (*.png);;Всi Файли (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_uz.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_vi.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts index 4cc7cbe9..81c5a921 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_CN.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot 截图 - + Include Borders 包含边框 - - + Save As 保存为 - - Crop - 剪裁 - - - + Resize 调整大小 @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File - 文件 + + toolBar + - + + Capture + + + + Ctrl+N Ctrl+N - + Close 关闭 - + + Close Application + + + + Esc Esc - + Entire Session 所有桌面 - + Single Window 单一窗口 - + Single Screen 单一桌面 - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot 保存截图 - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S Ctrl+S - + Quick Save 快速保存 - + PNG Files (*.png);;AllFiles (*) PNG 文件(*.png);;所有文件 (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_HK.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zh_TW.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts index 95821d37..67e8ce9a 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_zu.ts @@ -17,28 +17,22 @@ MainUI - + Take Screenshot - + Include Borders - - + Save As - - Crop - - - - + Resize @@ -48,82 +42,157 @@ - + + Open screenshot with an application + + + + + Open + + + + + Copy screenshot to clipboard + + + + + Copy + + + + + Ctrl+C + + + + + Resize screenshot to selection + + + + + Crop screenshot to selection + + + + + &Crop + + + + + Screen Capture Settings + + + + Sec Delay - - Capture + + General Settings - - Edit + + Show popup warnings about unsaved screenshots - - File + + toolBar - + + Capture + + + + Ctrl+N - + Close - + + Close Application + + + + Esc - + Entire Session - + Single Window - + Single Screen - + + View + + + + + Settings + + + + Could not save screenshot - + The screenshot could not be saved. Please check directory permissions or pick a different directory - + Save Screenshot - + + Unsaved Screenshot + + + + + The current screenshot has not been saved yet. Do you want to save or discard your changes? + + + + Ctrl+S - + Quick Save - + PNG Files (*.png);;AllFiles (*) diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_af.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_af.ts index 38a6c356..3b15b029 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_af.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_af.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ar.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ar.ts index 5aefa12e..1ecc3145 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ar.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ar.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_az.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_az.ts index ee7c2791..ab5b56bc 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_az.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_az.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bg.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bg.ts index 401c5d92..cde31900 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bg.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bg.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bn.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bn.ts index bcb12c1f..9097c03d 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bn.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bn.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bs.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bs.ts index 8bef02a9..af47e3ba 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bs.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_bs.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ca.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ca.ts index ed1c6d03..c99bbf27 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ca.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ca.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Copia la selecció - + Paste Enganxa diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_cs.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_cs.ts index 39e7099a..2ad36a83 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_cs.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_cs.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Kopírovat výběr - + Paste Vložit diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_cy.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_cy.ts index 1ccdb38e..a06a1461 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_cy.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_cy.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts index f046a686..de277cfa 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_da.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Kopiér valgte - + Paste Indsæt diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_de.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_de.ts index 606091e8..041be5a7 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_de.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_de.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Auswahl kopieren - + Paste Einfügen diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_el.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_el.ts index 4490bea4..2efd8fe8 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_el.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_el.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Αντιγραφή Επιλογής - + Paste Επικόλληση diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_en_GB.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_en_GB.ts index 67b986cc..99b84253 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_en_GB.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_en_ZA.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_en_ZA.ts index 6a82c053..4b623bf9 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_en_ZA.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_es.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_es.ts index 0f1db012..aa46327c 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_es.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_es.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_et.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_et.ts index 3966b3ef..b728da20 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_et.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_et.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_eu.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_eu.ts index 0308370c..8ce0109f 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_eu.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_eu.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fa.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fa.ts index 11505a2f..9699380f 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fa.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fa.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fi.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fi.ts index 5864a568..e2267e94 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fi.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fi.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fr.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fr.ts index 0323f2eb..5e2fab13 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fr.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fr.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fr_CA.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fr_CA.ts index c780a7a6..5854840a 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_fr_CA.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_gl.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_gl.ts index bbe5fee0..559b5579 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_gl.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_gl.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_he.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_he.ts index 5ee7a91c..0ffdc091 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_he.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_he.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hi.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hi.ts index 042be15c..2a702315 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hi.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hi.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hr.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hr.ts index 44f1db0f..4ce13144 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hr.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hr.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hu.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hu.ts index c37becec..5fba3d17 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hu.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_hu.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Kijelöltés másolása - + Paste Beillesztés diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_id.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_id.ts index d9c9e1e1..4eb7642d 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_id.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_id.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_is.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_is.ts index 32d5203f..6fe84485 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_is.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_is.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_it.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_it.ts index f2c39d7c..2c88a58c 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_it.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_it.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Copia selezione - + Paste Incolla diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ja.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ja.ts index 3d8775a6..81b6ca9e 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ja.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ja.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection 選択された範囲をコピー - + Paste 貼り付け diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ka.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ka.ts index f46e0ed9..55fb9b6c 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ka.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ka.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ko.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ko.ts index 994354e1..0c6e3f07 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ko.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ko.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_lt.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_lt.ts index cd4d8347..c0acd806 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_lt.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_lt.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Kopijuoti žymėjimą - + Paste Įdėti diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_lv.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_lv.ts index 4f038124..539cc1ad 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_lv.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_lv.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mk.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mk.ts index c7288596..47e0efd6 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mk.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mk.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mn.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mn.ts index 3b032ecf..d31a4617 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mn.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mn.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ms.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ms.ts index e8b62eec..06408c44 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ms.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ms.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mt.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mt.ts index 22415fcd..b18f7eb5 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mt.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_mt.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_nb.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_nb.ts index 38950c57..300214c3 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_nb.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_nb.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_nl.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_nl.ts index 1620f094..5e9c63dd 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_nl.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_nl.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pa.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pa.ts index c80cc61f..2f478abb 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pa.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pa.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pl.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pl.ts index daac57ed..52453174 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pl.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pl.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Kopiuj - + Paste Wklej diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pt.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pt.ts index af1d88a9..26e200d4 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pt.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pt.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pt_BR.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pt_BR.ts index b369a5da..1f3f6996 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_pt_BR.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Copiar seleção - + Paste Colar diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ro.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ro.ts index d639b820..9f6811a6 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ro.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ro.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ru.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ru.ts index 382ad646..8e298489 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ru.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ru.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Копировать выбранное - + Paste Вставить diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sk.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sk.ts index 4f771d32..bd12e022 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sk.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sk.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sl.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sl.ts index d9eb1742..c7b29746 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sl.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sl.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sr.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sr.ts index 18e9626f..db230f12 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sr.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sr.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sv.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sv.ts index b8be94e9..5f6ea3bd 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sv.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sv.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection Kopiera markering - + Paste Klistra in diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sw.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sw.ts index 6d6a1f6f..7aa406a3 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sw.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_sw.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ta.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ta.ts index 9c859b82..e6da4e4a 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ta.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_ta.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_tg.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_tg.ts index c549df29..16976b60 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_tg.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_tg.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_th.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_th.ts index e8cbd4d0..35b1b00b 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_th.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_th.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_tr.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_tr.ts index 1137fdd0..8311f8a0 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_tr.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_tr.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_uk.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_uk.ts index e35361f4..e4bf575d 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_uk.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_uk.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_uz.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_uz.ts index dc8894c4..ed0d17de 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_uz.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_uz.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_vi.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_vi.ts index a5f4eebd..2f5d2d9c 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_vi.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_vi.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_CN.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_CN.ts index dca523cb..c899062c 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_CN.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_HK.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_HK.ts index 0c18d25a..a809bad6 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_HK.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_TW.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_TW.ts index a58ae087..7d136d08 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zh_TW.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zu.ts b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zu.ts index 50db719a..1e330c7d 100644 --- a/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zu.ts +++ b/src-qt5/desktop-utils/lumina-terminal/i18n/l-terminal_zu.ts @@ -4,12 +4,12 @@ TerminalWidget - + Copy Selection - + Paste diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_af.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ar.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_az.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts index 8c5f0013..325e8e8d 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bg.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Основен прозорец - + Tab 1 Подпрозорец 1 - + Find the previous match Намиране на предишно съвпадение - - - - - + + + + + ... ... - + Find: Търсене: - + Find the next match Намиране на следващо съвпадение - + Replace: Замяна: - + Match case Зачитане на главни/малки - + Replace next match Замяна на следващото съвпадение - + Replace all matches (to end of document) Замяна на всички съвпадения (до края на документа) - + Hide the find/replace options - + File Файл - + View Изглед - + Syntax Highlighting Открояване на синтаксиса - + Edit Редактиране - + toolBar лента с инструменти - + Show Line Numbers Показване номерата на редовете - + None Няма - - + + New File Нов файл - + Ctrl+N Ctrl+Н - + Open File Отваряне на файл - + Ctrl+O Ctrl+О - + Save File Запис на файла - + Ctrl+S Ctrl+З - + Save File As Запис на файла като - + Close Затваряне - + Ctrl+Q Ctrl+Т - + Close File Затваряне на файл - + Ctrl+W Ctrl+Щ - + Customize Colors Настройка на цветовете - + Wrap Lines Пренасяне на редовете - + Find Търсене - + Ctrl+F Ctrl+Т - + Replace Замяна - + Ctrl+R Ctrl+К + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Текстов редактор - + Open File(s) Отваряне на файл - + Text Files (*) Текстови файлове (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bn.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_bs.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts index bad21f3c..9e195f77 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ca.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Finestra principal - + Tab 1 Pestanya 1 - + Find the previous match Cerca la coincidència anterior - - - - - + + + + + ... ... - + Find: Cerca: - + Find the next match Cerca la coincidència següent - + Replace: Reemplaça: - + Match case Coincidència de majúscules i minúscules - + Replace next match Reemplaça la coincidència següent - + Replace all matches (to end of document) Reemplaça totes les coincidències (fins al final del document) - + Hide the find/replace options Amaga les opcions de cerca / reemplaça - + File Fitxer - + View Vista - + Syntax Highlighting Realçament de la sintaxi - + Edit Edita - + toolBar Barra d'eines - + Show Line Numbers Mostra els números de les línies - + None Cap - - + + New File Fitxer nou - + Ctrl+N Ctrl+N - + Open File Obre el fitxer - + Ctrl+O Ctrl+O - + Save File Desa el fitxer - + Ctrl+S Ctrl+S - + Save File As Desa el fitxer com a... - + Close Tanca - + Ctrl+Q Ctrl+Q - + Close File Tanca el fitxer - + Ctrl+W Ctrl+W - + Customize Colors Personalització dels colors - + Wrap Lines Ajusta les línies - + Find Cerca - + Ctrl+F Ctrl+F - + Replace Reemplaça - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Editor de text - + Open File(s) Obre fitxers - + Text Files (*) Fitxers de text (*) - - + + Lose Unsaved Changes? Es perden els canvis no desats? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ El voleu tancar tanmateix? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts index 2a0bce89..54be7207 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cs.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Hlavní okno - + Tab 1 Karta 1 - + Find the previous match Najít předchozí shodu - - - - - + + + + + ... ... - + Find: Najít: - + Find the next match Najít další shodu - + Replace: Nahradit: - + Match case Rozlišovat velikost písmen - + Replace next match Nahradit další výskyt - + Replace all matches (to end of document) Nahradit všechny shody (až nakonec dokumentu) - + Hide the find/replace options Skrýt volby pro najít/nahradit - + File Soubor - + View Zobrazit - + Syntax Highlighting Zvýraznění syntaxe - + Edit Upravit - + toolBar nástrojová lišta - + Show Line Numbers Zobrazit čísla řádků - + None Nic - - + + New File Nový soubor - + Ctrl+N Ctrl+N - + Open File Otevřít soubor - + Ctrl+O Ctrl+O - + Save File Uložit soubor - + Ctrl+S Ctrl+S - + Save File As Uložit soubor jako - + Close Zavřít - + Ctrl+Q Ctrl+Q - + Close File Zavřít soubor - + Ctrl+W Ctrl+W - + Customize Colors Přizpůsobit barvy - + Wrap Lines Zalamovat řádky - + Find Najít - + Ctrl+F Ctrl+F - + Replace Nahradit - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Textový editor - + Open File(s) Otevřít soubor(y) - + Text Files (*) Textové soubory (*) - - + + Lose Unsaved Changes? Ztratit neuložené změny? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Přesto jej chcete zavřít? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_cy.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index 034fab65..e2e05281 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Hovedvindue - + Tab 1 Faneblad 1 - + Find the previous match Find det forrige match - - - - - + + + + + ... ... - + Find: Find: - + Find the next match Find det næste match - + Replace: Erstat: - + Match case Forskel på store og små bogstaver - + Replace next match Erstat næste match - + Replace all matches (to end of document) Erstat alle match (til slutningen af dokumentet) - + Hide the find/replace options Skjul valgmulighederne find/erstat - + File Fil - + View Vis - + Syntax Highlighting Syntaksfremhævning - + Edit Rediger - + toolBar værktøjsbjælke - + Show Line Numbers Vis linjenumre - + None Ingen - - + + New File Ny fil - + Ctrl+N Ctrl+N - + Open File Åbn fil - + Ctrl+O Ctrl+O - + Save File Gem fil - + Ctrl+S Ctrl+S - + Save File As Gem fil som - + Close Luk - + Ctrl+Q Ctrl+Q - + Close File Luk fil - + Ctrl+W Ctrl+W - + Customize Colors Tilpas farver - + Wrap Lines Ombryd linjer - + Find Find - + Ctrl+F Ctrl+F - + Replace Erstat - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Tekstredigering - + Open File(s) Åbn fil(er) - + Text Files (*) Tekstfiler (*) - - + + Lose Unsaved Changes? Mist ugemte ændringer? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Vil du lukke den alligevel? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts index 9d7c344b..c1088ad6 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_de.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Hauptfenster - + Tab 1 Tab 1 - + Find the previous match Vorherige Übereinstimmung suchen - - - - - + + + + + ... ... - + Find: Suchen: - + Find the next match Nächste Übereinstimmung suchen - + Replace: Ersetzen: - + Match case Groß-/Kleinschreibung beachten - + Replace next match Nächste Übereinstimmung ersetzen - + Replace all matches (to end of document) Alle Übereinstimmungen ersetzen (zum Ende des Dokuments) - + Hide the find/replace options Optionen Suchen/Ersetzen ausblenden - + File Datei - + View Ansicht - + Syntax Highlighting Syntaxhervorhebung - + Edit Bearbeiten - + toolBar Werkzeugleiste - + Show Line Numbers Zeilennummern anzeigen - + None Keine - - + + New File Neue Datei - + Ctrl+N Strg+N - + Open File Datei öffnen - + Ctrl+O Strg+O - + Save File Datei speichern - + Ctrl+S Strg+S - + Save File As Datei speichern unter - + Close Schließen - + Ctrl+Q Strg+Q - + Close File Datei schließen - + Ctrl+W Strg+W - + Customize Colors Farben anpassen - + Wrap Lines Zeilen umbrechen - + Find Suchen - + Ctrl+F Strg+F - + Replace Ersetzen - + Ctrl+R Strg+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Texteditor - + Open File(s) Datei(en) öffnen - + Text Files (*) Textdateien (*) - - + + Lose Unsaved Changes? Nicht gespeicherte Änderungen verlieren? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Möchten Sie sie trotzdem schließen? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts index 156e6b5f..c869c7c9 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_el.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow ΚύριοΠαράθυρο - + Tab 1 Καρτέλα 1 - + Find the previous match Βρείτε την προηγούμενη τάυτιση - - - - - + + + + + ... ... - + Find: Βρείτε: - + Find the next match Βρείτε την επόμενη τάυτιση - + Replace: Αντικαταστήστε: - + Match case Περίπτωση τάυτισης - + Replace next match Αντικατάσταση επόμενης τάυτισης - + Replace all matches (to end of document) Αντικαταστήστε όλες τις ταυτίσεις (στο τέλος του εγγράφου) - + Hide the find/replace options Αποκρύψτε τις επιλογές έυρεσης/αντικατάστασης - + File Αρχείο - + View Προβολή - + Syntax Highlighting Επισήμανση Σύνταξης - + Edit Επεξεργασία - + toolBar Μπάρα Εργαλείων - + Show Line Numbers Εμφανίστε Αριθμούς Γραμμών - + None Κανένας - - + + New File Νέο Αρχείο - + Ctrl+N Ctrl+N - + Open File Άνοιγμα Αρχείου - + Ctrl+O Ctrl+O - + Save File Αποθήκευση Αρχείου - + Ctrl+S Ctrl+S - + Save File As Αποθήκευση Αρχείου Ως - + Close Κλείσιμο - + Ctrl+Q Ctrl+Q - + Close File Κλείσιμο Αρχείου - + Ctrl+W Ctrl+W - + Customize Colors Προσαρμογή Χρωμάτων - + Wrap Lines - + Find Βρείτε - + Ctrl+F Ctrl+F - + Replace Αντικατάσταση - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Επεξεργαστής Κειμένου - + Open File(s) Άνοιγμα Αρχείου(ων) - + Text Files (*) Αρχεία Κειμένου (*) - - + + Lose Unsaved Changes? Επιθυμείτε να χάσετε τις μη αποθηκευμένες αλλαγές; - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Do you want to close it anyway? % 1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts index f09bbab4..1f89206f 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_GB.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow MainWindow - + Tab 1 Tab 1 - + Find the previous match Find the previous match - - - - - + + + + + ... ... - + Find: Find: - + Find the next match Find the next match - + Replace: Replace: - + Match case Match case - + Replace next match Replace next match - + Replace all matches (to end of document) Replace all matches (to end of document) - + Hide the find/replace options - + File File - + View View - + Syntax Highlighting Syntax Highlighting - + Edit Edit - + toolBar toolBar - + Show Line Numbers Show Line Numbers - + None None - - + + New File New File - + Ctrl+N Ctrl+N - + Open File Open File - + Ctrl+O Ctrl+O - + Save File Save File - + Ctrl+S Ctrl+S - + Save File As Save File As - + Close Close - + Ctrl+Q Ctrl+Q - + Close File Close File - + Ctrl+W Ctrl+W - + Customize Colors Customise Colours - + Wrap Lines Wrap Lines - + Find Find - + Ctrl+F Ctrl+F - + Replace Replace - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Text Editor - + Open File(s) Open File(s) - + Text Files (*) Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_en_ZA.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts index 3fcc5a1d..f3915949 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_es.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow VentanaPrincipal - + Tab 1 Pestaña 1 - + Find the previous match Buscar coincidencia anterior - - - - - + + + + + ... ... - + Find: Buscar: - + Find the next match Buscar siguiente coincidencia - + Replace: Reemplazar: - + Match case Hacer coincidir mayúsculas y minúsculas - + Replace next match Reemplazar la siguiente coincidencia - + Replace all matches (to end of document) Reemplazar todas las coincidencias (hasta el final del documento) - + Hide the find/replace options - + File Archivo - + View Vista - + Syntax Highlighting Resaltado de Sintaxis - + Edit Editar - + toolBar Barra de Herramientas - + Show Line Numbers Mostrar Números de Línea - + None Ninguno - - + + New File Nuevo Archivo - + Ctrl+N Ctrl+N - + Open File Abrir Archivo - + Ctrl+O Ctrl+O - + Save File Guardar Archivo - + Ctrl+S Ctrl+S - + Save File As Guardar Como - + Close Cerrar - + Ctrl+Q Ctrl+Q - + Close File Cerrar Archivo - + Ctrl+W Ctrl+W - + Customize Colors Colores Personalizados - + Wrap Lines Ajuste de Líneas - + Find Buscar - + Ctrl+F Ctrl+F - + Replace Reemplazar - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Editor de Texto - + Open File(s) Abrir Archivos - + Text Files (*) Archivos de Texto (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts index b431c29c..e26c2126 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_et.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match Otsi eelmine esinemine - - - - - + + + + + ... ... - + Find: Otsi: - + Find the next match Otsi järgmine esinemine - + Replace: Asenda: - + Match case Tõstutundlik - + Replace next match Asenda järgmine esinemine - + Replace all matches (to end of document) Asenda kõik esinemised (dokumendi lõpuni) - + Hide the find/replace options - + File Fail - + View Vaade - + Syntax Highlighting Süntaksi esiletõstmine - + Edit Muuda - + toolBar - + Show Line Numbers Näita reanumbreid - + None - - + + New File Uus fail - + Ctrl+N Ctrl+N - + Open File Ava fail - + Ctrl+O Ctrl+O - + Save File Salvesta fail - + Ctrl+S Ctrl+S - + Save File As Salvesta fail nimega - + Close Sulge - + Ctrl+Q Ctrl+Q - + Close File Sulge fail - + Ctrl+W Ctrl+W - + Customize Colors Värvide kohandamine - + Wrap Lines Ridade murdmine - + Find Otsi - + Ctrl+F Ctrl+F - + Replace Asenda - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Tekstiredaktor - + Open File(s) Ava fail(id) - + Text Files (*) Tekstifailid (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_eu.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fa.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts index 59579443..9b71c148 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fi.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Pääikkuna - + Tab 1 Välilehti 1 - + Find the previous match Etsi edellinen osuma - - - - - + + + + + ... - + Find: Etsi: - + Find the next match Etsi seuraava osuma - + Replace: Korvaa: - + Match case Erota pien- ja suuraakkoset - + Replace next match Korvaa seuraava osuma - + Replace all matches (to end of document) Korvaa kaikki osumat (asiakirjan loppuun) - + Hide the find/replace options - + File Tiedosto - + View Näkymä - + Syntax Highlighting Syntaksikorostus - + Edit Muokkaa - + toolBar työkalurivi - + Show Line Numbers Näytä rivinumerot - + None Ei mitään - - + + New File Uusi tiedosto - + Ctrl+N Ctrl+N - + Open File Avaa tiedosto - + Ctrl+O Ctrl+O - + Save File Tallenna tiedosto - + Ctrl+S Ctrl+S - + Save File As Tallenna tiedosto nimellä - + Close Sulje - + Ctrl+Q Ctrl+Q - + Close File Sulje tiedosto - + Ctrl+W Ctrl+W - + Customize Colors Mukauta värejä - + Wrap Lines Rivitä rivit - + Find Etsi - + Ctrl+F Ctrl+F - + Replace Korvaa - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Tekstimuokkain - + Open File(s) Avaa tiedostoja - + Text Files (*) Tekstitiedostot (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts index be718bc9..fc5c7486 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr.ts @@ -11,7 +11,7 @@ Item Type - Type d'article + Type d'article @@ -43,208 +43,219 @@ MainUI - + MainWindow Fenêtre principale - + Tab 1 Onglet 1 - + Find the previous match - Trouver l'occurrence précédente + Trouver l'occurrence précédente - - - - - + + + + + ... ... - + Find: Rechercher : - + Find the next match Recherche la prochaine occurrence - + Replace: Remplacer : - + Match case Respecter la casse - + Replace next match Remplacer la prochaine occurrence - + Replace all matches (to end of document) - Remplacer toutes les occurrences (jusqu'à la fin du document) + Remplacer toutes les occurrences (jusqu'à la fin du document) - + Hide the find/replace options Cacher les options rechercher/remplacer - + File Fichier - + View Vue - + Syntax Highlighting Coloration Syntaxique - + Edit Éditer - + toolBar - Barre d'outils + Barre d'outils - + Show Line Numbers Afficher les Numéros de Lignes - + None Aucun - - + + New File Nouveau fichier - + Ctrl+N Ctrl+N - + Open File Ouvrir le Fichier - + Ctrl+O Ctrl+O - + Save File Enregistrer le Fichier - + Ctrl+S Ctrl+S - + Save File As Enregistrer le Fichier Sous - + Close Fermer - + Ctrl+Q Ctrl+Q - + Close File Fermer le Fichier - + Ctrl+W Ctrl+W - + Customize Colors Personnaliser les Couleurs - + Wrap Lines Renvoyer à la Ligne - + Find Rechercher - + Ctrl+F Ctrl+F - + Replace Remplacer - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Éditeur de Texte - + Open File(s) Ouvrir Fichier(s) - + Text Files (*) Fichiers de Texte (*) - - + + Lose Unsaved Changes? Perdre les modifications non enregistrées ? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,13 +266,13 @@ Voulez-vous le fermer quand même ? %1 - + There are unsaved changes. Do you want to close the editor anyway? %1 Il y a des modifications non enregistrées. -Voulez-vous tout de même fermer l'éditeur ? +Voulez-vous tout de même fermer l'éditeur ? %1 diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_fr_CA.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_gl.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_he.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts index 2a648851..e75d82ff 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hi.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + Find: - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hr.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts index 1971cf68..1b5061d4 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_hu.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Főablak - + Tab 1 1. lap - + Find the previous match Előző találat keresése - - - - - + + + + + ... ... - + Find: Keresés: - + Find the next match Következő találat keresése - + Replace: Csere: - + Match case Kis- és nagybetű különbözik - + Replace next match A következő találat cseréje - + Replace all matches (to end of document) Minden egyezés cseréje (a dokumentum végéig) - + Hide the find/replace options Keresés/csere opciók elrejtése - + File Fájl - + View Nézet - + Syntax Highlighting Szintaxiskiemelés - + Edit Szerkesztés - + toolBar Eszköztár - + Show Line Numbers Sorszámozás megjelenítése - + None Nincs - - + + New File Új fájl - + Ctrl+N Ctrl+N - + Open File Fájl megnyitása - + Ctrl+O Ctrl+O - + Save File Fájl mentése - + Ctrl+S Ctrl+S - + Save File As Fájl mentése másként - + Close Bezárás - + Ctrl+Q Ctrl+Q - + Close File Fájl bezárása - + Ctrl+W Ctrl+W - + Customize Colors Színek testreszabása - + Wrap Lines Sorok tördelése - + Find Keresés - + Ctrl+F Ctrl+F - + Replace Csere - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Szövegszerkesztő - + Open File(s) Fájl(ok) megnyitása - + Text Files (*) Szövegfájlok (*) - - + + Lose Unsaved Changes? Odaveszted a mentetlen változásokat ? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Mindenképpen bezárod ? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts index cdc868b4..144428b5 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_id.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow JendelaUtama - + Tab 1 Tab 1 - + Find the previous match Cari kecocokan sebelumnya - - - - - + + + + + ... ... - + Find: Cari: - + Find the next match Cari kecocokan selanjutnya - + Replace: Ganti: - + Match case Kapitalisasi yang sama - + Replace next match Ganti pertandingan berikutnya - + Replace all matches (to end of document) Mengganti semua pertandingan (untuk akhir dokumen) - + Hide the find/replace options - + File Berkas - + View Tampilan - + Syntax Highlighting Penyorotan Sintaks - + Edit Sunting - + toolBar Bilah Alat - + Show Line Numbers Tampilkan Nomor Baris - + None Nihil - - + + New File Berkas Baru - + Ctrl+N Ctrl+N - + Open File Buka Berkas - + Ctrl+O Ctrl+O - + Save File Simpan File - + Ctrl+S Ctrl+S - + Save File As Simpan Berkas Sebagai - + Close Tutup - + Ctrl+Q Ctrl+Q - + Close File Tutup Berkas - + Ctrl+W Ctrl+W - + Customize Colors Warna Ubahan - + Wrap Lines Bungkus Garis - + Find Cari - + Ctrl+F Ctrl+F - + Replace Ganti - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Editor Teks - + Open File(s) Buka Berkas - + Text Files (*) Berkas Teks (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_is.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts index be414af0..f97b9de8 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_it.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Finestra Principale - + Tab 1 Tab 1 - + Find the previous match Trova Corrispondenza Precedente - - - - - + + + + + ... ... - + Find: Trova: - + Find the next match Trova Corrispondenza Successiva - + Replace: Sostituisci: - + Match case Maiusc-Minusc - + Replace next match Rimpiazza Prossima Corrispondenza - + Replace all matches (to end of document) Rimpiazza Tutte le Corrispondenze (fino a fine documento) - + Hide the find/replace options Nascondere le opzioni trova/sostituisci - + File File - + View Visualizza - + Syntax Highlighting Evidenziazione Sintassi - + Edit Edita - + toolBar Barra Strumenti - + Show Line Numbers Mostra Numeri Riga - + None Nessuno - - + + New File Nuovo file - + Ctrl+N Ctrl+N - + Open File Apri File - + Ctrl+O Ctrl+O - + Save File Salva File - + Ctrl+S Ctrl+S - + Save File As Salva Con Nome - + Close Chiudi - + Ctrl+Q Ctrl+Q - + Close File Chiudi File - + Ctrl+W Ctrl+W - + Customize Colors Personalizza Colori - + Wrap Lines Linee a Capo - + Find Trova - + Ctrl+F Ctrl+F - + Replace Rimpiazza - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Editor di Testo - + Open File(s) Apri File - + Text Files (*) File di Testo (*) - - + + Lose Unsaved Changes? Perdere le modifiche non salvate? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,13 +266,13 @@ Vuoi chiudere comunque? %1 - + There are unsaved changes. Do you want to close the editor anyway? %1 Ci sono modifiche non salvate. -Vuoi chiudere l'editor comunque? +Vuoi chiudere l'editor comunque? % 1 diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts index e9b0a03c..dabe631e 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ja.ts @@ -43,210 +43,221 @@ MainUI - + MainWindow メインウィンドウ - + Tab 1 タブ 1 - + Find the previous match 前を検索 - - - - - + + + + + ... ... - + Find: 検索: - + Find the next match 次を検索 - + Replace: 置換: - + Match case 大文字と小文字を区別する - + Replace next match 次に一致した文字列を置換する - + Replace all matches (to end of document) すべて置換(ドキュメントの末尾まで) - + Hide the find/replace options 検索/置換オプションを隠す - + File ファイル - + View 表示 - + Syntax Highlighting 構文強調表示 - + Edit 編集 - + toolBar ツールバー - + Show Line Numbers 行番号を表示する - + None なし - - + + New File これ、メニューだけじゃなくて、新しいファイル作ったときのタブ名にもなる。 新しいファイル - + Ctrl+N Ctrl+N - + Open File ファイルを開く - + Ctrl+O Ctrl+O - + Save File ファイルを保存 - + Ctrl+S Ctrl+S - + Save File As ダイアログが必ず開かれるため、"..."を追加。 名前を付けて保存... - + Close 閉じる - + Ctrl+Q Ctrl+Q - + Close File ファイルを閉じる - + Ctrl+W Ctrl+W - + Customize Colors 色付けの変更 - + Wrap Lines 行を折り返す - + Find 検索 - + Ctrl+F Ctrl+F - + Replace 置換 - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor テキストエディター - + Open File(s) ファイルを開く - + Text Files (*) テキストファイル (*) - - + + Lose Unsaved Changes? 保存されていない変更を削除しますか? - + This file has unsaved changes. Do you want to close it anyway? @@ -257,7 +268,7 @@ Do you want to close it anyway? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ka.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ko.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts index c27fc74e..20ba5662 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lt.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Pagrindinis langas - + Tab 1 Kortelė 1 - + Find the previous match Rasti ankstesnį atitikmenį - - - - - + + + + + ... ... - + Find: Rasti: - + Find the next match Rasti kitą atitikmenį - + Replace: Pakeisti: - + Match case Skirti raidžių dydį - + Replace next match Pakeisti kitą atitikmenį - + Replace all matches (to end of document) Pakeisti visus atitikmenis (iki dokumento pabaigos) - + Hide the find/replace options Slėpti radimo/pakeitimo parinktis - + File Failas - + View Rodinys - + Syntax Highlighting Sintaksės paryškinimas - + Edit Taisa - + toolBar įrankių juosta - + Show Line Numbers Rodyti eilučių numerius - + None Nėra - - + + New File Naujas failas - + Ctrl+N Ctrl(Vald)+N - + Open File Atverti failą - + Ctrl+O Ctrl(Vald)+O - + Save File Įrašyti failą - + Ctrl+S Ctrl(Vald)+S - + Save File As Įrašyti failą kaip - + Close Užverti - + Ctrl+Q Ctrl(Vald)+Q - + Close File Užverti failą - + Ctrl+W Ctrl(Vald)+W - + Customize Colors Tinkinti spalvas - + Wrap Lines Skaidyti eilutes - + Find Rasti - + Ctrl+F Ctrl(Vald)+F - + Replace Pakeisti - + Ctrl+R Ctrl(Vald)+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Tekstų redaktorius - + Open File(s) Atverti failą(-us) - + Text Files (*) Tekstiniai failai (*) - - + + Lose Unsaved Changes? Prarasti neįrašytus pakeitimus? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Ar vis tiek norite jį užverti? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts index 84ca8f7d..b7f6543a 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_lv.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Galvenais logs - + Tab 1 Tab 1 - + Find the previous match Meklēt iepriekšējo atbilstību - - - - - + + + + + ... ... - + Find: Meklēt: - + Find the next match Meklēt nākamo atbilstību - + Replace: Aizvietot: - + Match case Reģistru sakritība - + Replace next match Aizvietot nākamo atbilstību - + Replace all matches (to end of document) Aizvietot visas sakritības (līdz dokumenta beigām) - + Hide the find/replace options - + File Fails - + View Skatīt - + Syntax Highlighting Sintakses izcelšana - + Edit Rediģēt - + toolBar rīkJosla - + Show Line Numbers Rādīt rindu numurus - + None Nekas - - + + New File Jauns fails - + Ctrl+N Ctrl+N - + Open File Atvērt failu - + Ctrl+O Ctrl+O - + Save File Saglabāt failu - + Ctrl+S Ctrl+S - + Save File As Saglabāt failu kā - + Close Aizvērt - + Ctrl+Q Ctrl+Q - + Close File Aizvērt failu - + Ctrl+W Ctrl+W - + Customize Colors Pielāgot krāsas - + Wrap Lines Aplauzt rindiņas - + Find Meklēt - + Ctrl+F Ctrl+F - + Replace Aizvietot - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Teksta redaktors - + Open File(s) Atvērt failu(s) - + Text Files (*) Teksta faili (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mk.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mn.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ms.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_mt.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nb.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts index 50258031..9cb8019c 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_nl.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Hoofdvenster - + Tab 1 Tabblad 1 - + Find the previous match Vind vorige overeenkomst - - - - - + + + + + ... ... - + Find: Zoeken: - + Find the next match Vind de volgende overeenkomst - + Replace: Vervangen: - + Match case Hoofdlettergevoelig - + Replace next match Volgende overeenkomst vervangen - + Replace all matches (to end of document) Alle overeenkomsten vervangen (tot einde van document) - + Hide the find/replace options Zoeken/vervangen-opties verbergen - + File Bestand - + View Beeld - + Syntax Highlighting Syntaxismarkering - + Edit Bewerken - + toolBar werkBalk - + Show Line Numbers Regelnummers weergeven - + None Geen - - + + New File Nieuw bestand - + Ctrl+N Ctrl+N - + Open File Bestand openen - + Ctrl+O Ctrl+O - + Save File Bestand opslaan - + Ctrl+S Ctrl+S - + Save File As Bestand opslaan als - + Close Sluiten - + Ctrl+Q Ctrl+Q - + Close File Bestand sluiten - + Ctrl+W Ctrl+W - + Customize Colors Kleuren aanpassen - + Wrap Lines Regelomloop - + Find Zoeken - + Ctrl+F Ctrl+F - + Replace Vervangen - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Tekstbewerker - + Open File(s) Bestand(en) openen - + Text Files (*) Tekstbestanden (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pa.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts index 9d24336f..e5c76106 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pl.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow GłówneOkno - + Tab 1 Karta 1 - + Find the previous match Znajdź poprzednie dopasowanie - - - - - + + + + + ... ... - + Find: Znajdź: - + Find the next match Znajdź następne dopasowanie - + Replace: Zamień: - + Match case Uwzględniaj wielkość liter - + Replace next match Zamień następne dopasowanie - + Replace all matches (to end of document) Zamień wszystkie pasujące elementy(do końca dokumentu) - + Hide the find/replace options Ukryj opcję szukaj/zamień - + File Plik - + View Widok - + Syntax Highlighting Wyróżnianie składni - + Edit Edycja - + toolBar toolBar - + Show Line Numbers Pokaż numery linii - + None Brak - - + + New File Nowy plik - + Ctrl+N Ctrl+N - + Open File Otwórz plik - + Ctrl+O Ctrl+O - + Save File Zapisz plik - + Ctrl+S Ctrl+S - + Save File As Zapisz plik jako - + Close Zamknij - + Ctrl+Q Ctrl+Q - + Close File Zamknij plik - + Ctrl+W Ctrl+W - + Customize Colors Własne kolory - + Wrap Lines Zawijanie wierszy - + Find Znajdź - + Ctrl+F Ctrl+F - + Replace Zamień - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Edytory tekstu - + Open File(s) Otwórz plik(i) - + Text Files (*) Pliki tekstowe (*) - - + + Lose Unsaved Changes? Porzucić niezapisane zmiany? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Czy na pewno go zamknąć? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts index b8b5a690..12c88296 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_pt_BR.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Janela principal - + Tab 1 Aba 1 - + Find the previous match Localizar a coincidencia anterior - - - - - + + + + + ... ... - + Find: Localizar: - + Find the next match Localizar a próxima coincidencia - + Replace: Substituir: - + Match case Diferenciar maiúsculas e minúsculas - + Replace next match Substituir a próxima coincidencia - + Replace all matches (to end of document) Substituir todos que coincidirem (até o final do documento) - + Hide the find/replace options Ocultar as opções de localizar/substituir - + File Arquivo - + View Visualizar - + Syntax Highlighting Realce de Sintaxe - + Edit Editar - + toolBar Barra de ferramentas - + Show Line Numbers Exibir Números de Linha - + None Nenhum - - + + New File Novo Arquivo - + Ctrl+N Ctrl+N - + Open File Abrir Arquivo - + Ctrl+O Ctrl+O - + Save File Salvar arquivo - + Ctrl+S Ctrl+S - + Save File As Salvar arquivo como - + Close Fechar - + Ctrl+Q Ctrl+Q - + Close File Fechar arquivo - + Ctrl+W Ctrl+W - + Customize Colors Personalizar cores - + Wrap Lines Quebrar Linhas - + Find Procurar - + Ctrl+F Ctrl+F - + Replace Substituir - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Editor de Texto - + Open File(s) Abrir arquivo(s) - + Text Files (*) Arquivos de texto (*) - - + + Lose Unsaved Changes? Perder alterações não salvas? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Deseja fechar mesmo assim? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ro.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts index 4751183c..cf8cc420 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ru.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Главное окно - + Tab 1 Вкладка 1 - + Find the previous match Найти предыдущее совпадение - - - - - + + + + + ... ... - + Find: Найти: - + Find the next match Найти следующее совпадение - + Replace: Заменить: - + Match case Учитывать регистр - + Replace next match Заменить следующее совпадение - + Replace all matches (to end of document) Заменить все совпадения (до конца документа) - + Hide the find/replace options Скрыть опции поиска/замены - + File Файл - + View Просмотр - + Syntax Highlighting Подсветка синтаксиса - + Edit Правка - + toolBar Панель инструментов - + Show Line Numbers Показать номера строк - + None Ничего - - + + New File Новый файл - + Ctrl+N Ctrl+N - + Open File Открыть файл - + Ctrl+O Ctrl+O - + Save File Сохранить файл - + Ctrl+S Ctrl+S - + Save File As Сохранить файл как - + Close Закрыть - + Ctrl+Q Ctrl+Q - + Close File Закрыть файл - + Ctrl+W Ctrl+W - + Customize Colors Настройка цвета - + Wrap Lines Переносить строки - + Find Найти - + Ctrl+F Ctrl+F - + Replace Заменить - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Текстовый редактор - + Open File(s) Открыть файл(ы) - + Text Files (*) Текстовые файлы (*) - - + + Lose Unsaved Changes? Потерять несохраненные изменения? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Do you want to close it anyway? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sk.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sl.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sr.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts index f926292b..62241d00 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sv.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Huvudfönster - + Tab 1 Flik 1 - + Find the previous match Hitta föregående träff - - - - - + + + + + ... ... - + Find: Hitta: - + Find the next match Hitta nästa träff - + Replace: Ersätt: - + Match case Matcha skiftläge - + Replace next match Ersätt nästa träff - + Replace all matches (to end of document) Ersätt alla träffar (till slut av dokument) - + Hide the find/replace options - + File Fil - + View Visa - + Syntax Highlighting Syntaxmarkering - + Edit Redigera - + toolBar Verktygsrad - + Show Line Numbers Visa radnummer - + None Inget - - + + New File Ny fil - + Ctrl+N Ctrl+N - + Open File Öppna fil - + Ctrl+O Ctrl+O - + Save File Spara fil - + Ctrl+S Ctrl+S - + Save File As Spara fil som - + Close Stäng - + Ctrl+Q Ctrl+Q - + Close File Stäng fil - + Ctrl+W Ctrl+W - + Customize Colors Anpassa färger - + Wrap Lines Radbryt linjer - + Find Sök - + Ctrl+F Ctrl+F - + Replace Ersätt - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Textredigerare - + Open File(s) Öppna filer - + Text Files (*) Text filer (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -255,7 +266,7 @@ Vill du stänga den ändå ? %1 - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_sw.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_ta.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tg.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_th.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts index 191433be..7bcbd30a 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_tr.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow AnaPencere - + Tab 1 Sekme 1 - + Find the previous match Önceki eşleşmeyi bul - - - - - + + + + + ... ... - + Find: Bul: - + Find the next match Sonraki eşleşmeyi bul - + Replace: Değiştir: - + Match case Büyük/küçük harf eşleştir - + Replace next match Sonraki eşleşmeyi değiştir - + Replace all matches (to end of document) Tüm eşleşmeleri değiştir (belgenin sonuna kadar) - + Hide the find/replace options - + File Dosya - + View Görünüm - + Syntax Highlighting Sözdizimi Vurgulama - + Edit Düzenle - + toolBar araçÇubuğu - + Show Line Numbers Satır Numaralarını Göster - + None Yok - - + + New File Yeni Dosya - + Ctrl+N Ctrl+N - + Open File Dosya Aç - + Ctrl+O Ctrl+O - + Save File Dosyayı Kaydet - + Ctrl+S Ctrl+S - + Save File As Dosyayı Farklı Kaydet - + Close Kapat - + Ctrl+Q Ctrl+Q - + Close File Dosyayı Kapat - + Ctrl+W Ctrl+W - + Customize Colors Renkleri Özelleştir - + Wrap Lines Satırları Kaydır - + Find Bul - + Ctrl+F Ctrl+F - + Replace Değiştir - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Metin Düzenleyici - + Open File(s) Dosya(ları) Aç - + Text Files (*) Metin Dosyaları (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts index 2856a390..3e169245 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uk.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow Головне вікно - + Tab 1 Вкладка 1 - + Find the previous match Знайти попередній збіг - - - - - + + + + + ... ... - + Find: Знайти: - + Find the next match Знайти наступний збіг - + Replace: Замінити: - + Match case Враховувати регістр - + Replace next match Замінити наступний збіг - + Replace all matches (to end of document) Замінити всі співпадіння (до кінця документа) - + Hide the find/replace options - + File Файл - + View Перегляд - + Syntax Highlighting Виділення синтаксису кольором - + Edit Редагувати - + toolBar Панель інструментів - + Show Line Numbers Показувати номери рядків - + None Нічого - - + + New File Новий файл - + Ctrl+N Ctrl+N - + Open File Відкрити файл - + Ctrl+O Ctrl+O - + Save File Зберегти файл - + Ctrl+S Ctrl+S - + Save File As Зберегти файл як - + Close Закрити - + Ctrl+Q Ctrl+Q - + Close File Закрити файл - + Ctrl+W Ctrl+W - + Customize Colors Налаштовування кольорів - + Wrap Lines Перенести рядки - + Find Знайти - + Ctrl+F Ctrl+F - + Replace Замінити - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor Текстовий редактор - + Open File(s) Відкрити файл(и) - + Text Files (*) Текстові файли (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_uz.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_vi.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts index 91dda80b..3ad3fc15 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_CN.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow 主窗口 - + Tab 1 标签 1 - + Find the previous match 查找上一个匹配 - - - - - + + + + + ... ... - + Find: 查找: - + Find the next match 寻找下一个匹配 - + Replace: 替换: - + Match case 区分大小写 - + Replace next match 替换下一个匹配 - + Replace all matches (to end of document) 替换所有匹配 (直至文档结束) - + Hide the find/replace options - + File 文件 - + View 查看 - + Syntax Highlighting 语法高亮 - + Edit 编辑 - + toolBar 工具栏 - + Show Line Numbers 显示行号 - + None - - + + New File 新建文件 - + Ctrl+N Ctrl+N - + Open File 打开文件 - + Ctrl+O Ctrl+O - + Save File 保存文件 - + Ctrl+S Ctrl+S - + Save File As 另存为 - + Close 关闭 - + Ctrl+Q Ctrl+Q - + Close File 关闭文件 - + Ctrl+W Ctrl+W - + Customize Colors 自定义颜色 - + Wrap Lines 自动换行 - + Find 查找 - + Ctrl+F Ctrl+F - + Replace 替换 - + Ctrl+R Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor 文本编辑器 - + Open File(s) 打开文件 - + Text Files (*) 文本文件 (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_HK.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zh_TW.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts index 66f5b9bd..c4e9ff34 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_zu.ts @@ -43,208 +43,219 @@ MainUI - + MainWindow - + Tab 1 - + Find the previous match - - - - - + + + + + ... - + Find: - + Find the next match - + Replace: - + Match case - + Replace next match - + Replace all matches (to end of document) - + Hide the find/replace options - + File - + View - + Syntax Highlighting - + Edit - + toolBar - + Show Line Numbers - + None - - + + New File - + Ctrl+N - + Open File - + Ctrl+O - + Save File - + Ctrl+S - + Save File As - + Close - + Ctrl+Q - + Close File - + Ctrl+W - + Customize Colors - + Wrap Lines - + Find - + Ctrl+F - + Replace - + Ctrl+R + + + Show Popup Warnings + + + + + + Show warnings about unsaved changes + + Text Editor - + Open File(s) - + Text Files (*) - - + + Lose Unsaved Changes? - + This file has unsaved changes. Do you want to close it anyway? @@ -252,7 +263,7 @@ Do you want to close it anyway? - + There are unsaved changes. Do you want to close the editor anyway? -- cgit From 7e39df7521a19baae35c7ae3415630624f990865 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Feb 2017 11:01:08 -0500 Subject: Silence a compile warning in LDesktopUtils (unused variable) --- src-qt5/core/libLumina/LDesktopUtils.cpp | 29 +++-------------------------- 1 file changed, 3 insertions(+), 26 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/libLumina/LDesktopUtils.cpp b/src-qt5/core/libLumina/LDesktopUtils.cpp index d6673ecd..575ae5a1 100644 --- a/src-qt5/core/libLumina/LDesktopUtils.cpp +++ b/src-qt5/core/libLumina/LDesktopUtils.cpp @@ -134,32 +134,9 @@ void LDesktopUtils::removeFavorite(QString path){ if(changed){ LDesktopUtils::saveFavorites(fav); } } -void LDesktopUtils::upgradeFavorites(int fromoldversionnumber){ - /*if(fromoldversionnumber <= 8004){ // < pre-0.8.4>, sym-links in the ~/.lumina/favorites dir} - //Include 0.8.4-devel versions in this upgrade (need to distinguish b/w devel and release versions later somehow) - QDir favdir(QDir::homePath()+"/.lumina/favorites"); - QFileInfoList symlinks = favdir.entryInfoList(QDir::Files | QDir::Dirs | QDir::System | QDir::NoDotAndDotDot); - QStringList favfile = LDesktopUtils::listFavorites(); //just in case some already exist - bool newentry = false; - for(int i=0; i*1000000 + *1000 + + // Example: 1.2.3 -> 1002003 } void LDesktopUtils::LoadSystemDefaults(bool skipOS){ -- cgit From 9ec94b09e6f80300ff793990c7caaa7585ed698a Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Feb 2017 11:36:53 -0500 Subject: Silence some compile warnings in all the various OS templates. --- src-qt5/core/libLumina/LuminaOS-Debian.cpp | 6 ++++-- src-qt5/core/libLumina/LuminaOS-DragonFly.cpp | 6 ++++-- src-qt5/core/libLumina/LuminaOS-Gentoo.cpp | 6 ++++-- src-qt5/core/libLumina/LuminaOS-Linux.cpp | 6 ++++-- src-qt5/core/libLumina/LuminaOS-NetBSD.cpp | 12 +++++++----- src-qt5/core/libLumina/LuminaOS-OpenBSD.cpp | 6 ++++-- src-qt5/core/libLumina/LuminaOS-Slackware.cpp | 6 ++++-- src-qt5/core/libLumina/LuminaOS-kFreeBSD.cpp | 13 +++++++------ src-qt5/core/libLumina/LuminaOS-template.cpp | 22 +++++++++++++--------- 9 files changed, 51 insertions(+), 32 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/libLumina/LuminaOS-Debian.cpp b/src-qt5/core/libLumina/LuminaOS-Debian.cpp index 4acbe7d8..cb55e5ee 100644 --- a/src-qt5/core/libLumina/LuminaOS-Debian.cpp +++ b/src-qt5/core/libLumina/LuminaOS-Debian.cpp @@ -158,14 +158,16 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("dbus-send --system --print-reply \ --dest=org.freedesktop.login1 /org/freedesktop/login1 \ org.freedesktop.login1.Manager.PowerOff boolean:true"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("dbus-send --system --print-reply \ --dest=org.freedesktop.login1 /org/freedesktop/login1 \ org.freedesktop.login1.Manager.Reboot boolean:true"); diff --git a/src-qt5/core/libLumina/LuminaOS-DragonFly.cpp b/src-qt5/core/libLumina/LuminaOS-DragonFly.cpp index ac25815f..6cd72e03 100644 --- a/src-qt5/core/libLumina/LuminaOS-DragonFly.cpp +++ b/src-qt5/core/libLumina/LuminaOS-DragonFly.cpp @@ -234,12 +234,14 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -p now"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -r now"); } diff --git a/src-qt5/core/libLumina/LuminaOS-Gentoo.cpp b/src-qt5/core/libLumina/LuminaOS-Gentoo.cpp index b92d1b02..40163aab 100644 --- a/src-qt5/core/libLumina/LuminaOS-Gentoo.cpp +++ b/src-qt5/core/libLumina/LuminaOS-Gentoo.cpp @@ -158,14 +158,16 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("dbus-send --system --print-reply \ --dest=org.freedesktop.login1 /org/freedesktop/login1 \ org.freedesktop.login1.Manager.PowerOff boolean:true"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("dbus-send --system --print-reply \ --dest=org.freedesktop.login1 /org/freedesktop/login1 \ org.freedesktop.login1.Manager.Reboot boolean:true"); diff --git a/src-qt5/core/libLumina/LuminaOS-Linux.cpp b/src-qt5/core/libLumina/LuminaOS-Linux.cpp index 9d5980eb..678dee95 100644 --- a/src-qt5/core/libLumina/LuminaOS-Linux.cpp +++ b/src-qt5/core/libLumina/LuminaOS-Linux.cpp @@ -150,12 +150,14 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -P -h now"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -r now"); } diff --git a/src-qt5/core/libLumina/LuminaOS-NetBSD.cpp b/src-qt5/core/libLumina/LuminaOS-NetBSD.cpp index 75feb345..b05185e9 100644 --- a/src-qt5/core/libLumina/LuminaOS-NetBSD.cpp +++ b/src-qt5/core/libLumina/LuminaOS-NetBSD.cpp @@ -43,7 +43,7 @@ int LOS::ScreenBrightness(){ } //Set screen brightness -void LOS::setScreenBrightness(int percent){ +void LOS::setScreenBrightness(int){ //percent: 0-100 //not implemented yet } @@ -54,12 +54,12 @@ int LOS::audioVolume(){ } //Set the current volume -void LOS::setAudioVolume(int percent){ +void LOS::setAudioVolume(int){ //percent: 0-100 //not implemented yet } //Change the current volume a set amount (+ or -) -void LOS::changeAudioVolume(int percentdiff){ +void LOS::changeAudioVolume(int){ //percent difference (+ or -) //not implemented yet } @@ -91,12 +91,14 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -p now"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -r now"); } diff --git a/src-qt5/core/libLumina/LuminaOS-OpenBSD.cpp b/src-qt5/core/libLumina/LuminaOS-OpenBSD.cpp index b208c314..10f58ea5 100644 --- a/src-qt5/core/libLumina/LuminaOS-OpenBSD.cpp +++ b/src-qt5/core/libLumina/LuminaOS-OpenBSD.cpp @@ -170,12 +170,14 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -p now"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -r now"); } diff --git a/src-qt5/core/libLumina/LuminaOS-Slackware.cpp b/src-qt5/core/libLumina/LuminaOS-Slackware.cpp index 6a7bee10..5e2c6561 100644 --- a/src-qt5/core/libLumina/LuminaOS-Slackware.cpp +++ b/src-qt5/core/libLumina/LuminaOS-Slackware.cpp @@ -150,12 +150,14 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("dbus-send --system --print-reply=literal --dest=org.freedesktop.ConsoleKit /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Stop"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("dbus-send --system --print-reply=literal --dest=org.freedesktop.ConsoleKit /org/freedesktop/ConsoleKit/Manager org.freedesktop.ConsoleKit.Manager.Restart"); } diff --git a/src-qt5/core/libLumina/LuminaOS-kFreeBSD.cpp b/src-qt5/core/libLumina/LuminaOS-kFreeBSD.cpp index 62bbdb1c..5ec9751e 100644 --- a/src-qt5/core/libLumina/LuminaOS-kFreeBSD.cpp +++ b/src-qt5/core/libLumina/LuminaOS-kFreeBSD.cpp @@ -95,7 +95,7 @@ int LOS::audioVolume(){ //Returns: audio volume as a percentage (0-100, with -1 } //Set the current volume -void LOS::setAudioVolume(int percent){ +void LOS::setAudioVolume(int){ //percent: 0-100 return; } @@ -137,12 +137,14 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -h now"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -r now"); } @@ -177,12 +179,12 @@ int LOS::batterySecondsLeft(){ //Returns: estimated number of seconds remaining } //File Checksums -QStringList LOS::Checksums(QStringList filepaths){ //Return: checksum of the input file +QStringList LOS::Checksums(QStringList){ //Return: checksum of the input file return QStringList(); } //file system capacity -QString LOS::FileSystemCapacity(QString dir) { //Return: percentage capacity as give by the df command +QString LOS::FileSystemCapacity(QString) { //Return: percentage capacity as give by the df command return QString(); } @@ -202,4 +204,3 @@ QStringList LOS::DiskUsage(){ //Returns: List of current read/write stats for ea return QStringList(); //not implemented yet } #endif -#endif diff --git a/src-qt5/core/libLumina/LuminaOS-template.cpp b/src-qt5/core/libLumina/LuminaOS-template.cpp index c6dedf3b..90aab15c 100644 --- a/src-qt5/core/libLumina/LuminaOS-template.cpp +++ b/src-qt5/core/libLumina/LuminaOS-template.cpp @@ -9,7 +9,7 @@ #include #include // Needed for BUFSIZ -QString LOS::OSName(){ return "Sample"; } +QString LOS::OSName(){ return "Unknown"; } //OS-specific prefix(s) // NOTE: PREFIX, L_ETCDIR, L_SHAREDIR are defined in the OS-detect.pri project file and passed in @@ -39,7 +39,7 @@ int LOS::ScreenBrightness(){ } //Set screen brightness -void LOS::setScreenBrightness(int percent){ +void LOS::setScreenBrightness(int){ //percent: 0-100 //not implemented yet } @@ -50,12 +50,12 @@ int LOS::audioVolume(){ } //Set the current volume -void LOS::setAudioVolume(int percent){ +void LOS::setAudioVolume(int){ //percent: 0-100 //not implemented yet } //Change the current volume a set amount (+ or -) -void LOS::changeAudioVolume(int percentdiff){ +void LOS::changeAudioVolume(int){ //percent difference from current (+ or -) //not implemented yet } @@ -84,12 +84,14 @@ QString LOS::systemPendingUpdates(){ } //System Shutdown -void LOS::systemShutdown(bool skipupdates){ //start poweroff sequence +void LOS::systemShutdown(bool){ //start poweroff sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -p now"); } //System Restart -void LOS::systemRestart(bool skipupdates){ //start reboot sequence +void LOS::systemRestart(bool){ //start reboot sequence + //INPUT: skip updates (true/false) QProcess::startDetached("shutdown -r now"); } @@ -124,12 +126,14 @@ int LOS::batterySecondsLeft(){ //Returns: estimated number of seconds remaining } //File Checksums -QStringList LOS::Checksums(QStringList filepaths){ //Return: checksum of the input file - return QStringList(); +QStringList LOS::Checksums(QStringList){ //QStringList filepaths + //Return: checksum of the input file + return QStringList(); } //file system capacity -QString LOS::FileSystemCapacity(QString dir) { //Return: percentage capacity as give by the df command +QString LOS::FileSystemCapacity(QString) { //QString directory path + //Return: percentage capacity as give by the df command return QString(); } -- cgit From 7e00d31d1dcb444869512710ad2af5055834b028 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Feb 2017 11:58:42 -0500 Subject: Clean up a couple more compile warnings about unused variables. --- src-qt5/core/libLumina/LuminaXDG.cpp | 8 +++----- src-qt5/core/libLumina/OSInterface-template.cpp | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/libLumina/LuminaXDG.cpp b/src-qt5/core/libLumina/LuminaXDG.cpp index 38128fc7..cbc90f25 100644 --- a/src-qt5/core/libLumina/LuminaXDG.cpp +++ b/src-qt5/core/libLumina/LuminaXDG.cpp @@ -476,7 +476,7 @@ void XDGDesktopList::updateList(){ bool firstrun = lastCheck.isNull() || oldkeys.isEmpty(); lastCheck = QDateTime::currentDateTime(); //Variables for internal loop use only (to prevent re-initializing variable on every iteration) - bool ok; QString path; QDir dir; QStringList apps; + QString path; QDir dir; QStringList apps; for(int i=0; ilastRead>QFileInfo(path).lastModified()) ){ //Re-use previous data for this file (nothing changed) found << files[path]->name; //keep track of which files were already found - ok=true; }else{ - ok=false; - if(files.contains(path)){ appschanged = true; files.take(path)->deleteLater(); } //files.remove(path); } - XDGDesktop *dFile = new XDGDesktop(path, this); //will change the "ok" variable as needed + if(files.contains(path)){ appschanged = true; files.take(path)->deleteLater(); } + XDGDesktop *dFile = new XDGDesktop(path, this); if(dFile->type!=XDGDesktop::BAD){ appschanged = true; //flag that something changed - needed to load a file if(!oldkeys.contains(path)){ newfiles << path; } //brand new file (not an update to a previously-read file) diff --git a/src-qt5/core/libLumina/OSInterface-template.cpp b/src-qt5/core/libLumina/OSInterface-template.cpp index 62915f2f..96b01e60 100644 --- a/src-qt5/core/libLumina/OSInterface-template.cpp +++ b/src-qt5/core/libLumina/OSInterface-template.cpp @@ -51,7 +51,7 @@ QList OSInterface::status(OSInterface::Interface){ } //Individual Interface interactions -bool OSInterface::modify(OSInterface::Interface, QList args){ //returns: success/failure +bool OSInterface::modify(OSInterface::Interface, QList){ //returns: success/failure // ==== Interface modification argument lists ==== // Battery: // Volume: [int (set percent volume) ] -- cgit From ccd97ff6c44c311cca251e34a3fee4dc7ad8384f Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 27 Feb 2017 12:38:14 -0500 Subject: Clean up the compilation warnings with the separate "getPage" routines in lumina-config. --- src-qt5/core-utils/lumina-config/mainWindow.cpp | 2 +- src-qt5/core-utils/lumina-config/mainWindow.h | 1 + src-qt5/core-utils/lumina-config/pages/getPage.cpp | 82 ++++++++++++++++++++++ src-qt5/core-utils/lumina-config/pages/getPage.h | 81 ++------------------- .../lumina-config/pages/page_autostart.cpp | 1 - .../lumina-config/pages/page_bluetooth_trueos.cpp | 1 - .../lumina-config/pages/page_compton.cpp | 1 - .../lumina-config/pages/page_defaultapps.cpp | 1 - .../lumina-config/pages/page_fluxbox_keys.cpp | 1 - .../lumina-config/pages/page_fluxbox_settings.cpp | 1 - .../lumina-config/pages/page_interface_desktop.cpp | 1 - .../lumina-config/pages/page_interface_menu.cpp | 1 - .../lumina-config/pages/page_interface_panels.cpp | 1 - .../core-utils/lumina-config/pages/page_main.cpp | 4 +- .../lumina-config/pages/page_mouse_trueos.cpp | 2 - .../core-utils/lumina-config/pages/page_sample.cpp | 1 - .../lumina-config/pages/page_session_locale.cpp | 1 - .../lumina-config/pages/page_session_options.cpp | 1 - .../lumina-config/pages/page_wallpaper.cpp | 1 - src-qt5/core-utils/lumina-config/pages/pages.pri | 3 +- 20 files changed, 94 insertions(+), 94 deletions(-) create mode 100644 src-qt5/core-utils/lumina-config/pages/getPage.cpp (limited to 'src-qt5') diff --git a/src-qt5/core-utils/lumina-config/mainWindow.cpp b/src-qt5/core-utils/lumina-config/mainWindow.cpp index ebce647f..8b021d35 100644 --- a/src-qt5/core-utils/lumina-config/mainWindow.cpp +++ b/src-qt5/core-utils/lumina-config/mainWindow.cpp @@ -86,7 +86,7 @@ void mainWindow::changePage(QString id){ PageWidget *page = 0; QString oldpage = this->centralWidget()->whatsThis(); if(id!=cpage || cpage!=oldpage){ - page = GetNewPage(id, this); + page = Pages::GetNewPage(id, this); if(page==0){ return; } qDebug() << "Changing page:" << id; cpage = id; diff --git a/src-qt5/core-utils/lumina-config/mainWindow.h b/src-qt5/core-utils/lumina-config/mainWindow.h index 4c6bad39..2873ecdb 100644 --- a/src-qt5/core-utils/lumina-config/mainWindow.h +++ b/src-qt5/core-utils/lumina-config/mainWindow.h @@ -7,6 +7,7 @@ #ifndef _LUMINA_CONFIG_MAIN_WINDOW_H #define _LUMINA_CONFIG_MAIN_WINDOW_H #include "globals.h" +//#include "pages/getPage.h" namespace Ui{ class mainWindow; diff --git a/src-qt5/core-utils/lumina-config/pages/getPage.cpp b/src-qt5/core-utils/lumina-config/pages/getPage.cpp new file mode 100644 index 00000000..79eb18f6 --- /dev/null +++ b/src-qt5/core-utils/lumina-config/pages/getPage.cpp @@ -0,0 +1,82 @@ +//=========================================== +// Lumina Desktop Source Code +// Copyright (c) 2016, Ken Moore +// Available under the 3-clause BSD license +// See the LICENSE file for full details +//=========================================== +#include "getPage.h" + +//Add any sub-pages here +#include "page_main.h" +#include "page_wallpaper.h" +#include "page_theme.h" +#include "page_autostart.h" +#include "page_defaultapps.h" +#include "page_fluxbox_keys.h" +#include "page_fluxbox_settings.h" +#include "page_interface_desktop.h" +#include "page_interface_panels.h" +#include "page_interface_menu.h" +#include "page_session_locale.h" +#include "page_session_options.h" +#include "page_compton.h" + +// #include "page_mouse_trueos.h" +// #include "page_bluetooth_trueos.h" + +//Simplification function for creating a PAGEINFO structure +PAGEINFO Pages::PageInfo(QString ID, QString i_name, QString i_title, QString i_icon, QString i_comment, QString i_cat, QStringList i_sys, QStringList i_tags){ + PAGEINFO page; + page.id = ID; page.name = i_name; page.title = i_title; page.icon = i_icon; + page.comment = i_comment; page.category = i_cat; page.req_systems = i_sys; + page.search_tags = i_tags; + return page; +} + +//List all the known pages +// **** Add new page entries here **** +QList Pages::KnownPages(){ + // Valid Groups: ["appearance", "interface", "session", "user"] + QList list; + //Reminder: , , , <icon>, <comment>, <category>, <server subsytem list>, <search tags> + list << Pages::PageInfo("wallpaper", QObject::tr("Wallpaper"), QObject::tr("Wallpaper Settings"), "preferences-desktop-wallpaper",QObject::tr("Change background image(s)"), "appearance", QStringList(), QStringList() << "background" << "wallpaper" << "color" << "image"); + list << Pages::PageInfo("theme", QObject::tr("Theme"), QObject::tr("Theme Settings"), "preferences-desktop-theme",QObject::tr("Change interface fonts and colors"), "appearance", QStringList(), QStringList() << "background" << "interface" << "color" << "theme" << "plugins"); + list << Pages::PageInfo("compton", QObject::tr("Window Effects"), QObject::tr("Window Effects"), "window-duplicate",QObject::tr("Adjust transparency levels and window effects"), "appearance", QStringList(), QStringList() << "background" << "interface" << "color" << "transparency" << "windows" << "compositing"); + list << Pages::PageInfo("autostart", QObject::tr("Autostart"), QObject::tr("Startup Settings"), "preferences-system-session-services",QObject::tr("Automatically start applications or services"), "session", QStringList(), QStringList() << "apps" << "autostart" << "services" << "xdg" << "startup" << "session"); + list << Pages::PageInfo("defaultapps", QObject::tr("Applications"), QObject::tr("Mimetype Settings"), "preferences-desktop-default-applications",QObject::tr("Change default applications"), "session", QStringList(), QStringList() << "apps" << "default" << "services" << "xdg" << "session"); + list << Pages::PageInfo("fluxbox-keys", QObject::tr("Keyboard Shortcuts"), QObject::tr("Keyboard Shortcuts"), "preferences-desktop-keyboard",QObject::tr("Change keyboard shortcuts"), "session", QStringList(), QStringList() << "apps" << "fluxbox" << "keys" << "keyboard" << "session" << "launch"); + list << Pages::PageInfo("fluxbox-settings", QObject::tr("Window Manager"), QObject::tr("Window Settings"), "preferences-system-windows-actions",QObject::tr("Change window settings and appearances"), "appearance", QStringList(), QStringList() << "window" << "frame" << "border" << "workspace" << "theme" << "fluxbox" << "session"); + list << Pages::PageInfo("interface-desktop", QObject::tr("Desktop"), QObject::tr("Desktop Plugins"), "preferences-desktop-icons",QObject::tr("Change what icons or tools are embedded on the desktop"), "interface", QStringList(), QStringList() << "desktop" << "plugins" << "embed" << "icons" << "utilities"); + list << Pages::PageInfo("interface-panel", QObject::tr("Panels"), QObject::tr("Panels and Plugins"), "configure-toolbars",QObject::tr("Change any floating panels and what they show"), "interface", QStringList(), QStringList() << "desktop" << "toolbar" << "panel" << "floating" << "plugins"); + list << Pages::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 << Pages::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 << Pages::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"); + // list << Pages::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 << Pages::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"); + + return list; +} + +PageWidget* Pages::GetNewPage(QString id, QWidget *parent){ + //Find the page that matches this "id" + PageWidget* page = 0; + if(id=="wallpaper"){ page = new page_wallpaper(parent); } + else if(id=="theme"){ page = new page_theme(parent); } + else if(id=="autostart"){ page = new page_autostart(parent); } + else if(id=="defaultapps"){ page = new page_defaultapps(parent); } + else if(id=="fluxbox-keys"){ page = new page_fluxbox_keys(parent); } + else if(id=="fluxbox-settings"){ page = new page_fluxbox_settings(parent); } + else if(id=="interface-desktop"){ page = new page_interface_desktop(parent); } + else if(id=="interface-panel"){ page = new page_interface_panels(parent); } + else if(id=="interface-menu"){ page = new page_interface_menu(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); } + + // else if(id=="mouse-settings"){ page = new page_mouse_trueos(parent); } + // else if(id=="bluetooth-settings"){ page = new page_bluetooth_trueos(parent); } + //Return the main control_panel page as the fallback/default + if(page==0){ id.clear(); page = new page_main(parent); } + page->setWhatsThis(id); + return page; +} diff --git a/src-qt5/core-utils/lumina-config/pages/getPage.h b/src-qt5/core-utils/lumina-config/pages/getPage.h index 59dbcd2b..3c2831e4 100644 --- a/src-qt5/core-utils/lumina-config/pages/getPage.h +++ b/src-qt5/core-utils/lumina-config/pages/getPage.h @@ -10,80 +10,11 @@ #include "../globals.h" #include "PageWidget.h" - -//Simplification function for creating a PAGEINFO structure -static PAGEINFO PageInfo(QString ID, QString i_name, QString i_title, QString i_icon, QString i_comment, QString i_cat, QStringList i_sys, QStringList i_tags){ - PAGEINFO page; - page.id = ID; page.name = i_name; page.title = i_title; page.icon = i_icon; - page.comment = i_comment; page.category = i_cat; page.req_systems = i_sys; - page.search_tags = i_tags; - return page; -} - -//List all the known pages -// **** Add new page entries here **** -static QList<PAGEINFO> KnownPages(){ - // Valid Groups: ["appearance", "interface", "session", "user"] - QList<PAGEINFO> list; - //Reminder: <ID>, <name>, <title>, <icon>, <comment>, <category>, <server subsytem list>, <search tags> - list << PageInfo("wallpaper", QObject::tr("Wallpaper"), QObject::tr("Wallpaper Settings"), "preferences-desktop-wallpaper",QObject::tr("Change background image(s)"), "appearance", QStringList(), QStringList() << "background" << "wallpaper" << "color" << "image"); - list << PageInfo("theme", QObject::tr("Theme"), QObject::tr("Theme Settings"), "preferences-desktop-theme",QObject::tr("Change interface fonts and colors"), "appearance", QStringList(), QStringList() << "background" << "interface" << "color" << "theme" << "plugins"); - list << PageInfo("compton", QObject::tr("Window Effects"), QObject::tr("Window Effects"), "window-duplicate",QObject::tr("Adjust transparency levels and window effects"), "appearance", QStringList(), QStringList() << "background" << "interface" << "color" << "transparency" << "windows" << "compositing"); - list << PageInfo("autostart", QObject::tr("Autostart"), QObject::tr("Startup Settings"), "preferences-system-session-services",QObject::tr("Automatically start applications or services"), "session", QStringList(), QStringList() << "apps" << "autostart" << "services" << "xdg" << "startup" << "session"); - list << PageInfo("defaultapps", QObject::tr("Applications"), QObject::tr("Mimetype Settings"), "preferences-desktop-default-applications",QObject::tr("Change default applications"), "session", QStringList(), QStringList() << "apps" << "default" << "services" << "xdg" << "session"); - list << PageInfo("fluxbox-keys", QObject::tr("Keyboard Shortcuts"), QObject::tr("Keyboard Shortcuts"), "preferences-desktop-keyboard",QObject::tr("Change keyboard shortcuts"), "session", QStringList(), QStringList() << "apps" << "fluxbox" << "keys" << "keyboard" << "session" << "launch"); - list << PageInfo("fluxbox-settings", QObject::tr("Window Manager"), QObject::tr("Window Settings"), "preferences-system-windows-actions",QObject::tr("Change window settings and appearances"), "appearance", QStringList(), QStringList() << "window" << "frame" << "border" << "workspace" << "theme" << "fluxbox" << "session"); - list << PageInfo("interface-desktop", QObject::tr("Desktop"), QObject::tr("Desktop Plugins"), "preferences-desktop-icons",QObject::tr("Change what icons or tools are embedded on the desktop"), "interface", QStringList(), QStringList() << "desktop" << "plugins" << "embed" << "icons" << "utilities"); - list << PageInfo("interface-panel", QObject::tr("Panels"), QObject::tr("Panels and Plugins"), "configure-toolbars",QObject::tr("Change any floating panels and what they show"), "interface", QStringList(), QStringList() << "desktop" << "toolbar" << "panel" << "floating" << "plugins"); - 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"); - // 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"); - - return list; -} - -//Add any sub-pages here -#include "page_main.h" -#include "page_wallpaper.h" -#include "page_theme.h" -#include "page_autostart.h" -#include "page_defaultapps.h" -#include "page_fluxbox_keys.h" -#include "page_fluxbox_settings.h" -#include "page_interface_desktop.h" -#include "page_interface_panels.h" -#include "page_interface_menu.h" -#include "page_session_locale.h" -#include "page_session_options.h" -#include "page_compton.h" - -// #include "page_mouse_trueos.h" -// #include "page_bluetooth_trueos.h" - -static PageWidget* GetNewPage(QString id, QWidget *parent){ - //Find the page that matches this "id" - PageWidget* page = 0; - if(id=="wallpaper"){ page = new page_wallpaper(parent); } - else if(id=="theme"){ page = new page_theme(parent); } - else if(id=="autostart"){ page = new page_autostart(parent); } - else if(id=="defaultapps"){ page = new page_defaultapps(parent); } - else if(id=="fluxbox-keys"){ page = new page_fluxbox_keys(parent); } - else if(id=="fluxbox-settings"){ page = new page_fluxbox_settings(parent); } - else if(id=="interface-desktop"){ page = new page_interface_desktop(parent); } - else if(id=="interface-panel"){ page = new page_interface_panels(parent); } - else if(id=="interface-menu"){ page = new page_interface_menu(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); } - - // else if(id=="mouse-settings"){ page = new page_mouse_trueos(parent); } - // else if(id=="bluetooth-settings"){ page = new page_bluetooth_trueos(parent); } - //Return the main control_panel page as the fallback/default - if(page==0){ id.clear(); page = new page_main(parent); } - page->setWhatsThis(id); - return page; -} +class Pages{ +public: + static PAGEINFO PageInfo(QString, QString, QString, QString, QString, QString, QStringList, QStringList); + static QList<PAGEINFO> KnownPages(); + static PageWidget* GetNewPage(QString id, QWidget *parent); +}; #endif diff --git a/src-qt5/core-utils/lumina-config/pages/page_autostart.cpp b/src-qt5/core-utils/lumina-config/pages/page_autostart.cpp index 0159d8f5..e0cbe9d3 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_autostart.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_autostart.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_autostart.h" #include "ui_page_autostart.h" -#include "getPage.h" #include "../AppDialog.h" //========== diff --git a/src-qt5/core-utils/lumina-config/pages/page_bluetooth_trueos.cpp b/src-qt5/core-utils/lumina-config/pages/page_bluetooth_trueos.cpp index 3e3451fc..e6e81189 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_bluetooth_trueos.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_bluetooth_trueos.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_bluetooth_trueos.h" #include "ui_page_bluetooth_trueos.h" -#include "getPage.h" //========== // PUBLIC diff --git a/src-qt5/core-utils/lumina-config/pages/page_compton.cpp b/src-qt5/core-utils/lumina-config/pages/page_compton.cpp index bb4dad21..4f7b90ae 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_compton.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_compton.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_compton.h" #include "ui_page_compton.h" -#include "getPage.h" //========== // PUBLIC 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 a21653c9..ce39958f 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_defaultapps.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_defaultapps.h" #include "ui_page_defaultapps.h" -#include "getPage.h" #include "../AppDialog.h" //========== diff --git a/src-qt5/core-utils/lumina-config/pages/page_fluxbox_keys.cpp b/src-qt5/core-utils/lumina-config/pages/page_fluxbox_keys.cpp index 18bc09e6..e0fd0c62 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_fluxbox_keys.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_fluxbox_keys.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_fluxbox_keys.h" #include "ui_page_fluxbox_keys.h" -#include "getPage.h" //========== // PUBLIC diff --git a/src-qt5/core-utils/lumina-config/pages/page_fluxbox_settings.cpp b/src-qt5/core-utils/lumina-config/pages/page_fluxbox_settings.cpp index 20dc4a22..50b5c7e2 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_fluxbox_settings.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_fluxbox_settings.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_fluxbox_settings.h" #include "ui_page_fluxbox_settings.h" -#include "getPage.h" //========== // PUBLIC diff --git a/src-qt5/core-utils/lumina-config/pages/page_interface_desktop.cpp b/src-qt5/core-utils/lumina-config/pages/page_interface_desktop.cpp index f467db36..66fdb9f7 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_interface_desktop.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_interface_desktop.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_interface_desktop.h" #include "ui_page_interface_desktop.h" -#include "getPage.h" #include "../GetPluginDialog.h" #include "../AppDialog.h" diff --git a/src-qt5/core-utils/lumina-config/pages/page_interface_menu.cpp b/src-qt5/core-utils/lumina-config/pages/page_interface_menu.cpp index 370980d2..20110960 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_interface_menu.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_interface_menu.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_interface_menu.h" #include "ui_page_interface_menu.h" -#include "getPage.h" #include "../AppDialog.h" #include "../GetPluginDialog.h" #include "../ScriptDialog.h" 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 3c355aa7..45fd8913 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 @@ -6,7 +6,6 @@ //=========================================== #include "page_interface_panels.h" #include "ui_page_interface_panels.h" -#include "getPage.h" #include "../GetPluginDialog.h" #include "../AppDialog.h" diff --git a/src-qt5/core-utils/lumina-config/pages/page_main.cpp b/src-qt5/core-utils/lumina-config/pages/page_main.cpp index 6d9177f7..45c03ef9 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_main.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_main.cpp @@ -144,13 +144,13 @@ void page_main::LoadSettings(int){ emit HasPendingChanges(false); emit ChangePageTitle( tr("Desktop Settings") ); INFO.clear(); - INFO = KnownPages(); + INFO = Pages::KnownPages(); //Also add known system setting applications to the INFO list QList<XDGDesktop*> apps = APPSLIST->apps(false,false); //only valid, non-hidden files qDebug() << "Found Apps:" << apps.length(); for(int i=0; i<apps.length(); i++){ if( !apps[i]->catList.contains("Settings") || apps[i]->filePath.endsWith("lumina-config.desktop") ){ continue; } - INFO << PageInfo(apps[i]->filePath, apps[i]->name, apps[i]->genericName, apps[i]->icon, apps[i]->comment, "system", QStringList(), apps[i]->keyList); + INFO << Pages::PageInfo(apps[i]->filePath, apps[i]->name, apps[i]->genericName, apps[i]->icon, apps[i]->comment, "system", QStringList(), apps[i]->keyList); } //Now sort the items according to the translated name QStringList names; diff --git a/src-qt5/core-utils/lumina-config/pages/page_mouse_trueos.cpp b/src-qt5/core-utils/lumina-config/pages/page_mouse_trueos.cpp index edfe1cb7..77e63f57 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_mouse_trueos.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_mouse_trueos.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_mouse_trueos.h" #include "ui_page_mouse_trueos.h" -#include "getPage.h" #include <QDebug> #include <QProcess> @@ -107,4 +106,3 @@ void page_mouse_trueos::updateMoused(){ QProcess *moused = new QProcess(this); moused->start(program, mousedargs); } - diff --git a/src-qt5/core-utils/lumina-config/pages/page_sample.cpp b/src-qt5/core-utils/lumina-config/pages/page_sample.cpp index b613bd95..6e9edb34 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_sample.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_sample.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_sample.h" #include "ui_page_sample.h" -#include "getPage.h" //========== // PUBLIC diff --git a/src-qt5/core-utils/lumina-config/pages/page_session_locale.cpp b/src-qt5/core-utils/lumina-config/pages/page_session_locale.cpp index ad5aa7f7..f31a7e0a 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_session_locale.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_session_locale.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_session_locale.h" #include "ui_page_session_locale.h" -#include "getPage.h" //========== // PUBLIC diff --git a/src-qt5/core-utils/lumina-config/pages/page_session_options.cpp b/src-qt5/core-utils/lumina-config/pages/page_session_options.cpp index 4390867e..3aba502f 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_session_options.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_session_options.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_session_options.h" #include "ui_page_session_options.h" -#include "getPage.h" //========== // PUBLIC diff --git a/src-qt5/core-utils/lumina-config/pages/page_wallpaper.cpp b/src-qt5/core-utils/lumina-config/pages/page_wallpaper.cpp index b711d587..6842dce4 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_wallpaper.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_wallpaper.cpp @@ -6,7 +6,6 @@ //=========================================== #include "page_wallpaper.h" #include "ui_page_wallpaper.h" -#include "getPage.h" //========== // PUBLIC diff --git a/src-qt5/core-utils/lumina-config/pages/pages.pri b/src-qt5/core-utils/lumina-config/pages/pages.pri index 89b9b010..136a8613 100644 --- a/src-qt5/core-utils/lumina-config/pages/pages.pri +++ b/src-qt5/core-utils/lumina-config/pages/pages.pri @@ -18,7 +18,8 @@ HEADERS += $${PWD}/getPage.h \ # $${PWD}/page_mouse_trueos.h -SOURCES += $${PWD}/page_main.cpp \ +SOURCES += $${PWD}/getPage.cpp \ + $${PWD}/page_main.cpp \ $${PWD}/page_wallpaper.cpp \ $${PWD}/page_theme.cpp \ $${PWD}/page_autostart.cpp \ -- cgit From e64366b9a3ac9898920617541895114d6cdc4c3e Mon Sep 17 00:00:00 2001 From: scootergrisen <scootergrisen@gmail.com> Date: Tue, 28 Feb 2017 00:22:02 +0000 Subject: Translated using Weblate (lumina_CONFIG@da (generated)) Currently translated at 100.0% (388 of 388 strings) --- .../lumina-config/i18n/lumina-config_da.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'src-qt5') 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 3b4e76ff..e4b68b04 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 @@ -11,7 +11,7 @@ <message> <location filename="../AppDialog.ui" line="20"/> <source>Search for....</source> - <translation type="unfinished">Søg efter ....</translation> + <translation>Søg efter ....</translation> </message> </context> <context> @@ -345,7 +345,7 @@ </message> <message> <location filename="../LPlugins.cpp" line="67"/> - <source>Start menu alternative focusing on the user's files, directories, and favorites.</source> + <source>Start menu alternative focusing on the user's files, directories, and favorites.</source> <translation>Alternativ startmenu som fokusere på brugerens filer, mapper og favoritter.</translation> </message> <message> @@ -1073,7 +1073,7 @@ <message> <location filename="../pages/page_compton.cpp" line="38"/> <source>Window Effects</source> - <translation type="unfinished">Vindueseffekter</translation> + <translation>Vindueseffekter</translation> </message> </context> <context> @@ -1244,12 +1244,12 @@ </message> <message> <location filename="../pages/page_fluxbox_keys.ui" line="244"/> - <source>"Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key</source> - <translation>"Mod1": Alt-tast -"Mod4": Windows-/Mac-tast -"Control": Ctrl-tast</translation> + <source>"Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key</source> + <translation>"Mod1": Alt-tast +"Mod4": Windows-/Mac-tast +"Control": Ctrl-tast</translation> </message> <message> <location filename="../pages/page_fluxbox_keys.cpp" line="71"/> @@ -1475,7 +1475,7 @@ <message> <location filename="../pages/page_main.cpp" line="72"/> <source>System Settings</source> - <translation type="unfinished"></translation> + <translation>Systemindstillinger</translation> </message> <message> <location filename="../pages/page_main.cpp" line="145"/> -- cgit From d02e18c830ed9f7b66c09c7d756b534ddb900658 Mon Sep 17 00:00:00 2001 From: scootergrisen <scootergrisen@gmail.com> Date: Tue, 28 Feb 2017 01:00:43 +0000 Subject: Translated using Weblate (l_SCREENSHOT@da (generated)) Currently translated at 100.0% (38 of 38 strings) --- .../lumina-screenshot/i18n/l-screenshot_da.ts | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts index 8610ebc8..75bcf2ab 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_da.ts @@ -44,47 +44,47 @@ <message> <location filename="../MainUI.ui" line="87"/> <source>Open screenshot with an application</source> - <translation type="unfinished"></translation> + <translation>Åbn skærmbillede med et program</translation> </message> <message> <location filename="../MainUI.ui" line="90"/> <source>Open</source> - <translation type="unfinished"></translation> + <translation>Åbn</translation> </message> <message> <location filename="../MainUI.ui" line="103"/> <source>Copy screenshot to clipboard</source> - <translation type="unfinished"></translation> + <translation>Kopiér skærmbillede til udklipsholder</translation> </message> <message> <location filename="../MainUI.ui" line="106"/> <source>Copy</source> - <translation type="unfinished"></translation> + <translation>Kopiér</translation> </message> <message> <location filename="../MainUI.ui" line="109"/> <source>Ctrl+C</source> - <translation type="unfinished"></translation> + <translation>Ctrl+C</translation> </message> <message> <location filename="../MainUI.ui" line="135"/> <source>Resize screenshot to selection</source> - <translation type="unfinished"></translation> + <translation>Tilpas størrelsen af skærmbillede til markering</translation> </message> <message> <location filename="../MainUI.ui" line="157"/> <source>Crop screenshot to selection</source> - <translation type="unfinished"></translation> + <translation>Beskær skærmbillede til markering</translation> </message> <message> <location filename="../MainUI.ui" line="160"/> <source>&Crop</source> - <translation type="unfinished"></translation> + <translation>&Beskær</translation> </message> <message> <location filename="../MainUI.ui" line="293"/> <source>Screen Capture Settings</source> - <translation type="unfinished"></translation> + <translation>Skærmfangningsindstillinger</translation> </message> <message> <location filename="../MainUI.ui" line="341"/> @@ -94,17 +94,17 @@ <message> <location filename="../MainUI.ui" line="434"/> <source>General Settings</source> - <translation type="unfinished"></translation> + <translation>Generelle indstillinger</translation> </message> <message> <location filename="../MainUI.ui" line="455"/> <source>Show popup warnings about unsaved screenshots</source> - <translation type="unfinished"></translation> + <translation>Vis pop op-advarsler om ugemte skærmbilleder</translation> </message> <message> <location filename="../MainUI.ui" line="488"/> <source>toolBar</source> - <translation type="unfinished"></translation> + <translation>værktøjsbjælke</translation> </message> <message> <location filename="../MainUI.ui" line="515"/> @@ -124,7 +124,7 @@ <message> <location filename="../MainUI.ui" line="548"/> <source>Close Application</source> - <translation type="unfinished"></translation> + <translation>Luk program</translation> </message> <message> <location filename="../MainUI.ui" line="551"/> @@ -149,12 +149,12 @@ <message> <location filename="../MainUI.cpp" line="38"/> <source>View</source> - <translation type="unfinished"></translation> + <translation>Vis</translation> </message> <message> <location filename="../MainUI.cpp" line="39"/> <source>Settings</source> - <translation type="unfinished"></translation> + <translation>Indstillinger</translation> </message> <message> <location filename="../MainUI.cpp" line="94"/> @@ -174,12 +174,12 @@ <message> <location filename="../MainUI.cpp" line="264"/> <source>Unsaved Screenshot</source> - <translation type="unfinished"></translation> + <translation>Ugemt skærmbillede</translation> </message> <message> <location filename="../MainUI.cpp" line="265"/> <source>The current screenshot has not been saved yet. Do you want to save or discard your changes?</source> - <translation type="unfinished"></translation> + <translation>Det aktuelle skærmbillede er endnu ikke blevet gemt. Vil du gemme eller forkaste dine ændringer?</translation> </message> <message> <location filename="../MainUI.ui" line="532"/> -- cgit From 757404340bfde4439600fab013bbd7d9af9a9879 Mon Sep 17 00:00:00 2001 From: scootergrisen <scootergrisen@gmail.com> Date: Tue, 28 Feb 2017 01:02:20 +0000 Subject: Translated using Weblate (l_TE@da (generated)) Currently translated at 100.0% (56 of 56 strings) --- src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts index e2e05281..efbc7a80 100644 --- a/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts +++ b/src-qt5/desktop-utils/lumina-textedit/i18n/l-te_da.ts @@ -225,13 +225,13 @@ <message> <location filename="../MainUI.ui" line="400"/> <source>Show Popup Warnings</source> - <translation type="unfinished"></translation> + <translation>Vis pop op-advarsler</translation> </message> <message> <location filename="../MainUI.ui" line="403"/> <location filename="../MainUI.ui" line="406"/> <source>Show warnings about unsaved changes</source> - <translation type="unfinished"></translation> + <translation>Vis advarsler om ugemte ændringer</translation> </message> <message> <location filename="../MainUI.cpp" line="40"/> -- cgit From 22cb26555ee4b676008c64b5095c5b290969c6f1 Mon Sep 17 00:00:00 2001 From: scootergrisen <scootergrisen@gmail.com> Date: Sat, 25 Feb 2017 20:32:37 +0000 Subject: Translated using Weblate (lumina_OPEN@da (generated)) Currently translated at 100.0% (40 of 40 strings) --- src-qt5/core/lumina-open/i18n/lumina-open_da.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts index d4e6e91b..97635eac 100644 --- a/src-qt5/core/lumina-open/i18n/lumina-open_da.ts +++ b/src-qt5/core/lumina-open/i18n/lumina-open_da.ts @@ -131,7 +131,7 @@ <message> <location filename="../LFileDialog.cpp" line="211"/> <source>[default] </source> - <translation type="unfinished"></translation> + <translation>[standard] </translation> </message> <message> <location filename="../LFileDialog.cpp" line="278"/> @@ -176,7 +176,7 @@ <message> <location filename="../main.cpp" line="286"/> <source>URL shortcut is missing the URL: %1</source> - <translation>URL genvej mangler URL'en: %1</translation> + <translation>URL genvej mangler URL'en: %1</translation> </message> <message> <location filename="../main.cpp" line="297"/> @@ -195,8 +195,8 @@ </message> <message> <location filename="../main.cpp" line="365"/> - <source>Could not find "%1". Please ensure it is installed first.</source> - <translation>Kunne ikke finde "%1". Sørg for at programmet er installeret først.</translation> + <source>Could not find "%1". Please ensure it is installed first.</source> + <translation>Kunne ikke finde "%1". Sørg for at programmet er installeret først.</translation> </message> <message> <location filename="../main.cpp" line="415"/> -- cgit From bc2643ef57b5a43ce126e6f2ac7743c5d8a4e3f9 Mon Sep 17 00:00:00 2001 From: Davidmp <rbndavid@gmail.com> Date: Tue, 28 Feb 2017 18:58:21 +0000 Subject: Translated using Weblate (l_SCREENSHOT@ca (generated)) Currently translated at 100.0% (38 of 38 strings) --- .../lumina-screenshot/i18n/l-screenshot_ca.ts | 40 +++++++++++----------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'src-qt5') diff --git a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts index a5092000..7b1d579d 100644 --- a/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts +++ b/src-qt5/desktop-utils/lumina-screenshot/i18n/l-screenshot_ca.ts @@ -34,7 +34,7 @@ <message> <location filename="../MainUI.ui" line="138"/> <source>Resize</source> - <translation>Canvia'n la mida</translation> + <translation>Canvia'n la mida</translation> </message> <message> <location filename="../MainUI.ui" line="20"/> @@ -44,47 +44,47 @@ <message> <location filename="../MainUI.ui" line="87"/> <source>Open screenshot with an application</source> - <translation type="unfinished"></translation> + <translation>Obre una captura de pantalla amb una aplicació</translation> </message> <message> <location filename="../MainUI.ui" line="90"/> <source>Open</source> - <translation type="unfinished"></translation> + <translation>Obre</translation> </message> <message> <location filename="../MainUI.ui" line="103"/> <source>Copy screenshot to clipboard</source> - <translation type="unfinished"></translation> + <translation>Copia la captura al porta-retalls</translation> </message> <message> <location filename="../MainUI.ui" line="106"/> <source>Copy</source> - <translation type="unfinished"></translation> + <translation>Copia</translation> </message> <message> <location filename="../MainUI.ui" line="109"/> <source>Ctrl+C</source> - <translation type="unfinished"></translation> + <translation>Ctrl+C</translation> </message> <message> <location filename="../MainUI.ui" line="135"/> <source>Resize screenshot to selection</source> - <translation type="unfinished"></translation> + <translation>Canvia la mida de la captura a la selecció</translation> </message> <message> <location filename="../MainUI.ui" line="157"/> <source>Crop screenshot to selection</source> - <translation type="unfinished"></translation> + <translation>Escapça la captura a la selecció</translation> </message> <message> <location filename="../MainUI.ui" line="160"/> <source>&Crop</source> - <translation type="unfinished"></translation> + <translation>Es&capça</translation> </message> <message> <location filename="../MainUI.ui" line="293"/> <source>Screen Capture Settings</source> - <translation type="unfinished"></translation> + <translation>Paràmetres de les captures de pantalla</translation> </message> <message> <location filename="../MainUI.ui" line="341"/> @@ -94,17 +94,17 @@ <message> <location filename="../MainUI.ui" line="434"/> <source>General Settings</source> - <translation type="unfinished"></translation> + <translation>Paràmetres generals</translation> </message> <message> <location filename="../MainUI.ui" line="455"/> <source>Show popup warnings about unsaved screenshots</source> - <translation type="unfinished"></translation> + <translation>Mostra avisos emergents sobre captures no desades</translation> </message> <message> <location filename="../MainUI.ui" line="488"/> <source>toolBar</source> - <translation type="unfinished"></translation> + <translation>Barra d'eines</translation> </message> <message> <location filename="../MainUI.ui" line="515"/> @@ -124,7 +124,7 @@ <message> <location filename="../MainUI.ui" line="548"/> <source>Close Application</source> - <translation type="unfinished"></translation> + <translation>Tanca l'aplicació</translation> </message> <message> <location filename="../MainUI.ui" line="551"/> @@ -149,22 +149,22 @@ <message> <location filename="../MainUI.cpp" line="38"/> <source>View</source> - <translation type="unfinished"></translation> + <translation>Mostra</translation> </message> <message> <location filename="../MainUI.cpp" line="39"/> <source>Settings</source> - <translation type="unfinished"></translation> + <translation>Paràmetres</translation> </message> <message> <location filename="../MainUI.cpp" line="94"/> <source>Could not save screenshot</source> - <translation>No s'ha pogut desar la captura.</translation> + <translation>No s'ha pogut desar la captura.</translation> </message> <message> <location filename="../MainUI.cpp" line="94"/> <source>The screenshot could not be saved. Please check directory permissions or pick a different directory</source> - <translation>No s'ha pogut desar la captura. Si us plau, comproveu els permisos del directori o trieu-ne un altre.</translation> + <translation>No s'ha pogut desar la captura. Si us plau, comproveu els permisos del directori o trieu-ne un altre.</translation> </message> <message> <location filename="../MainUI.cpp" line="101"/> @@ -174,12 +174,12 @@ <message> <location filename="../MainUI.cpp" line="264"/> <source>Unsaved Screenshot</source> - <translation type="unfinished"></translation> + <translation>Captura no desada</translation> </message> <message> <location filename="../MainUI.cpp" line="265"/> <source>The current screenshot has not been saved yet. Do you want to save or discard your changes?</source> - <translation type="unfinished"></translation> + <translation>La captura actual encara no s'ha desat. Voleu desar o descartar els canvis?</translation> </message> <message> <location filename="../MainUI.ui" line="532"/> -- cgit From 0a0327c978225b8c1ca4fb1c2f1323a35d92d9e6 Mon Sep 17 00:00:00 2001 From: Moo <moose@mail.ru> Date: Tue, 28 Feb 2017 20:42:19 +0000 Subject: Translated using Weblate (lumina_CONFIG@lt (generated)) Currently translated at 100.0% (388 of 388 strings) --- .../lumina-config/i18n/lumina-config_lt.ts | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'src-qt5') 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 13cba779..d282495a 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 @@ -11,7 +11,7 @@ <message> <location filename="../AppDialog.ui" line="20"/> <source>Search for....</source> - <translation type="unfinished">Ieškoti...</translation> + <translation>Ieškoti...</translation> </message> </context> <context> @@ -345,7 +345,7 @@ </message> <message> <location filename="../LPlugins.cpp" line="67"/> - <source>Start menu alternative focusing on the user's files, directories, and favorites.</source> + <source>Start menu alternative focusing on the user's files, directories, and favorites.</source> <translation>Pradžios meniu alternatyva, susitelkianti ties naudotojo failais, katalogais ir kitais mėgstamais elementais.</translation> </message> <message> @@ -541,7 +541,7 @@ <message> <location filename="../LPlugins.cpp" line="313"/> <source>Lock the current desktop session</source> - <translation>Blocca l'attuale sessione desktop</translation> + <translation>Blocca l'attuale sessione desktop</translation> </message> <message> <location filename="../LPlugins.cpp" line="323"/> @@ -1073,7 +1073,7 @@ <message> <location filename="../pages/page_compton.cpp" line="38"/> <source>Window Effects</source> - <translation type="unfinished">Langų efektai</translation> + <translation>Langų efektai</translation> </message> </context> <context> @@ -1244,12 +1244,12 @@ </message> <message> <location filename="../pages/page_fluxbox_keys.ui" line="244"/> - <source>"Mod1": Alt key -"Mod4": Windows/Mac key -"Control": Ctrl key</source> - <translation>"Mod1": Alt klavišas -"Mod4": Windows/Mac klavišas -"Control": Ctrl (Vald) klavišas</translation> + <source>"Mod1": Alt key +"Mod4": Windows/Mac key +"Control": Ctrl key</source> + <translation>"Mod1": Alt klavišas +"Mod4": Windows/Mac klavišas +"Control": Ctrl (Vald) klavišas</translation> </message> <message> <location filename="../pages/page_fluxbox_keys.cpp" line="71"/> @@ -1475,7 +1475,7 @@ <message> <location filename="../pages/page_main.cpp" line="72"/> <source>System Settings</source> - <translation type="unfinished"></translation> + <translation>Sistemos nustatymai</translation> </message> <message> <location filename="../pages/page_main.cpp" line="145"/> -- cgit