This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient. from 7f2edea Continue development adds 9612e6a src/sshmasterconnection.cpp: use ssh_channel_listen_forward () instead of ssh_forward_listen () for newer libssh versions. Fixes: #870. adds 15ce4da src/sshmasterconnection.cpp: with libssh 0.6.0 and newer, get the public key via ssh_get_server_publickey () (0.8.0 and higher) or ssh_get_publickey () (0.7.x and lower) and its hash via ssh_get_publickey_hash () instead of using the deprecated ssh_get_pubkey_hash () function. adds c6ce255 src/sshmasterconnection.cpp: replace string_free () with its successor ssh_string_free (). adds d616e09 src/sshmasterconnection.cpp: replace deprecated channel_new () function with ssh_channel_new (). adds dffc470 src/sshmasterconnection.cpp: replace deprecated channel_open_forward () function with ssh_channel_open_forward (). adds 3b037cd src/sshmasterconnection.cpp: replace deprecated channel_open_session () function with ssh_channel_open_session (). adds b722370 src/sshmasterconnection.cpp: replace deprecated channel_request_exec () function with ssh_channel_request_exec (). adds f1abcbd src/sshmasterconnection.cpp: replace deprecated channel_poll () function with ssh_channel_poll (). adds e67bf45 src/sshmasterconnection.cpp: replace deprecated channel_read () function with ssh_channel_read (). adds f86895a src/sshmasterconnection.cpp: replace deprecated channel_is_eof () function with ssh_channel_is_eof (). adds d14a335 src/sshmasterconnection.cpp: replace deprecated channel_write () function with ssh_channel_write (). adds a71ce02 src/sshmasterconnection.cpp: replace deprecated channel_send_eof () function with ssh_channel_send_eof (). adds efd41a9 src/sshmasterconnection.cpp: replace deprecated channel_close () function with ssh_channel_close (). adds 1d8a37a src/sshmasterconnection.cpp: replace deprecated channel_free () function with ssh_channel_free (). adds ed981d1 src/sshmasterconnection.cpp: use QString::arg () to insert function name and thus deduplicate error translation messages. adds bb727e5 src/sshmasterconnection.cpp: fix up some debug strings. adds a5b4d79 src/sshmasterconnection.cpp: port more occurrences of "QString to C string" akin to 1b21d75f2c10609f3586f5b5e0b4ceb7fca83fdd. adds a5639de src/sshmasterconnection.cpp: enable parsing of ~/.ssh/config. Fixes: #1121. adds 8e503d8 src/{onmainwindow,httpbrokerclient}.cpp: fix up error/warning message displayed when the server-specified key is unknown, but we have another key type stored already. adds e7e2e4e src/pulsemanager.cpp: fix up a debug string. new 43da15a src/sshmasterconnection.cpp: libssh < 0.6.0 does not have the ssh_options_get () API, but instead expects users to pull out information directly from the ssh_session structure. new 9e96ba4 src/sshmasterconnection.cpp: turns out libssh < 0.6.0 doesn't support fetching the host, port and username parameters at all. new 45d0f1b src/x2goutils.cpp: ensure that add_to_path () also processes the first value passed. new f34d0d3 - Add "direct XDMCP" functionality. new 77cac93 src/onmainwindow.cpp: unbreak Windows and OS X builds - directRDP is only available on Linux, so guard new section. new 483f036 res/i18n/x2goclient_et.ts: update Estonian translation file. new 36231da res/i18n/x2goclient_et.ts: various fixups for the Estonian translation file. new f26edb0 res/i18n/x2goclient_*.ts: go the extra mile and fix up translation files manually after the "anothertype" fix in 8e503d89ee2d03a313c3deff11f0516fce503022. new 24a5bc4 {src/{onmainwindow,httpbrokerclient}.cpp,res/i18n/x2goclient_*.ts}: fix another occurrence of a string missing a space separator between words and update translation files. new 4d543b0 src/onmainwindow.cpp: don't duplicate depth warning message needlessly, use correct plural forms in translations and split string up in a translation-friendly form. new 85056d9 {src/printdialog.cpp,res/i18n/x2goclient_*.ts}: drop spurious left-over parenthesis in warning message and adapt translations. new 4525afe src/onmainwindow.cpp: make the "not loading translator" message non-translatable, as it doesn't make a lot of sense to actually translate it. new b116007 {src/{configdialog,x2goutils}.cpp,res/i18n/x2goclient_*.ts}: change XQuartz project homepage references, adapt translations. new 610e9b2 src/pulsemanager.{cpp,h}: make get_* () functions const. new 7ce4e35 src/pulsemanager.{cpp,h}: make is_server_running () const. new 3030702 src/pulsemanager.{cpp,h}: add new pulse_version_valid_ boolean class member variable, set it correctly and use it whenever the version is accessed. new 6606f4b src/pulsemanager.cpp: make fetch_pulseaudio_version () more resilient. new 54efae5 src/pulsemanager.{cpp,h}: add show_startup_warning () for both PA server and (debug) startup sound playback. new 9609888 src/pulsemanager.cpp: check server_binary_ before using it and jump over code that assumes the PA server binary to be available. new 3fc1b2f src/pulsemanager.cpp: don't fail hard on OS X if the PA server binary could not be found in the constructor. new a0ae3bc src/pulsemanager.cpp: deduplicate warning/error messages - make use of show_startup_warning (). new cdad7f8 res/i18n/x2goclient_*.ts: regenerate translation files and fix up some SSH and PulseManager messages manually, where possible. new 6792724 src/x2ogutils.h: guard UNUSED macro definition. new 6ff714b {macbuild.sh,src/{x2goutils.h,{pulsemanager,onmainwindow}.cpp},x2goclient.pro}: make MacPorts prefix selectable at compile time. new 8529206 Disable sound button on direct RDP and XDMCP sessions. Set for direct XDMCP session autologin=true. Set for direct XDMCP session username=XDM. new b207323 res/i18n/x2goclient_fi.ts: update Finnish translation file. new 16ab92c res/i18n/x2goclient_fi.ts: remove outdated comment. new 39d35fe debian/changelog: add closure for #1093, was actually legit. new 51a0b54 src/sshprocess.cpp: bind direct tunnel socket to localhost instead of any address. Fixes: #31. new 32e36a2 src/onmainwindow.cpp: check for sessionExplorer->getLastSession() to be valid in all places but obvious ones. Fixes: #499. new d46c15e src/sshmasterconnection.cpp: use new PKI-based libssh API for public key authentication for libssh 0.6.0 and higher. Fixes: #1119. The 31 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 147 +++- macbuild.sh | 3 +- res/i18n/x2goclient_da.ts | 1157 ++++++++++++++-------------- res/i18n/x2goclient_de.ts | 1155 ++++++++++++++-------------- res/i18n/x2goclient_es.ts | 1162 ++++++++++++++-------------- res/i18n/x2goclient_et.ts | 1727 +++++++++++++++++++++++------------------- res/i18n/x2goclient_fi.ts | 1172 ++++++++++++++-------------- res/i18n/x2goclient_fr.ts | 108 ++- res/i18n/x2goclient_nb_no.ts | 122 +-- res/i18n/x2goclient_nl.ts | 1166 ++++++++++++++-------------- res/i18n/x2goclient_pt.ts | 1159 ++++++++++++++-------------- res/i18n/x2goclient_ru.ts | 1158 ++++++++++++++-------------- res/i18n/x2goclient_sv.ts | 1153 +++++++++++++++------------- res/i18n/x2goclient_tr.ts | 1156 ++++++++++++++-------------- res/i18n/x2goclient_zh_tw.ts | 1156 ++++++++++++++-------------- src/configdialog.cpp | 11 +- src/editconnectiondialog.cpp | 6 +- src/editconnectiondialog.h | 2 +- src/httpbrokerclient.cpp | 4 +- src/onmainwindow.cpp | 268 +++++-- src/printdialog.cpp | 4 +- src/pulsemanager.cpp | 166 ++-- src/pulsemanager.h | 15 +- src/sessionbutton.cpp | 10 + src/sessionwidget.cpp | 60 +- src/sessionwidget.h | 3 +- src/settingswidget.cpp | 104 ++- src/settingswidget.h | 8 +- src/sshmasterconnection.cpp | 465 +++++++++--- src/sshprocess.cpp | 2 +- src/x2goutils.cpp | 6 +- src/x2goutils.h | 6 + x2goclient.pro | 4 + 33 files changed, 8110 insertions(+), 6735 deletions(-) -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 77cac934b9f2fbb5958c8318b111432cd1507e77 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 04:19:22 2017 +0100 src/onmainwindow.cpp: unbreak Windows and OS X builds - directRDP is only available on Linux, so guard new section. --- debian/changelog | 2 ++ src/onmainwindow.cpp | 2 ++ 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index b196e17..a678c1a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -76,6 +76,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium will fail badly. - src/x2goutils.cpp: ensure that add_to_path () also processes the first value passed. Fixes startup problems in MacPorts. + - src/onmainwindow.cpp: unbreak Windows and OS X builds - directRDP is + only available on Linux, so guard new section. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 9ef8846..2753083 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -5942,6 +5942,7 @@ void ONMainWindow::handle_xmodmap_error (QProcess &proc) { void ONMainWindow::slotProxyError ( QProcess::ProcessError err ) { +#ifdef Q_OS_LINUX if(err==QProcess::FailedToStart && directRDP) { QString main_text = tr("Failed to start RDP or XMDCP client"); @@ -5949,6 +5950,7 @@ void ONMainWindow::slotProxyError ( QProcess::ProcessError err ) show_RichText_ErrorMsgBox (main_text, informative_text); } +#endif slotProxyFinished ( -1,QProcess::CrashExit ); } -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit f34d0d3168bcd796f3b3589c38fbce38e3ec0cd2 Author: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> Date: Fri Feb 24 16:46:58 2017 +0100 - Add "direct XDMCP" functionality. --- debian/changelog | 4 ++ src/editconnectiondialog.cpp | 6 +-- src/editconnectiondialog.h | 2 +- src/onmainwindow.cpp | 85 ++++++++++++++++++++++++++++++++++- src/sessionwidget.cpp | 41 ++++++++++++++--- src/sessionwidget.h | 3 +- src/settingswidget.cpp | 104 ++++++++++++++++++++++++++++++++++++++++++- src/settingswidget.h | 8 +++- 8 files changed, 238 insertions(+), 15 deletions(-) diff --git a/debian/changelog b/debian/changelog index 903522d..b196e17 100644 --- a/debian/changelog +++ b/debian/changelog @@ -77,6 +77,10 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - src/x2goutils.cpp: ensure that add_to_path () also processes the first value passed. Fixes startup problems in MacPorts. + [ Oleksandr Shneyder ] + * New upstream version (4.1.0.1): + - Add "direct XDMCP" functionality. + -- X2Go Release Manager <git-admin@x2go.org> Wed, 22 Feb 2017 07:13:10 +0100 x2goclient (4.1.0.0-0x2go1) unstable; urgency=medium diff --git a/src/editconnectiondialog.cpp b/src/editconnectiondialog.cpp index d5eb063..df3fe26 100644 --- a/src/editconnectiondialog.cpp +++ b/src/editconnectiondialog.cpp @@ -85,7 +85,7 @@ EditConnectionDialog::EditConnectionDialog ( bool newSession, QString id, QWidge connect ( sessSet,SIGNAL ( nameChanged ( const QString & ) ),this, SLOT ( slot_changeCaption ( const QString& ) ) ); connect ( this,SIGNAL ( accepted() ),this,SLOT ( slot_accepted() ) ); - connect (sessSet, SIGNAL(directRDP(bool)), this, SLOT(slot_directRDP(bool))); + connect (sessSet, SIGNAL(directRDP(bool,bool)), this, SLOT(slot_directRDP(bool,bool))); connect (sessSet, SIGNAL(settingsChanged(QString,QString,QString)), otherSet, @@ -170,11 +170,11 @@ void EditConnectionDialog::slot_default() } #ifdef Q_OS_LINUX -void EditConnectionDialog::slot_directRDP(bool direct) +void EditConnectionDialog::slot_directRDP(bool direct, bool isXDMCP) { fr->setTabEnabled(1,!direct); fr->setTabEnabled(3,!direct); fr->setTabEnabled(4,!direct); - otherSet->setDirectRdp(direct); + otherSet->setDirectRdp(direct, isXDMCP); } #endif diff --git a/src/editconnectiondialog.h b/src/editconnectiondialog.h index 393390f..05a3a9e 100644 --- a/src/editconnectiondialog.h +++ b/src/editconnectiondialog.h @@ -65,7 +65,7 @@ private slots: void slot_accepted(); void slot_default(); #ifdef Q_OS_LINUX - void slot_directRDP(bool direct); + void slot_directRDP(bool direct, bool isXDMCP); #endif }; diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index e1ae22c..9ef8846 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -3235,7 +3235,7 @@ void ONMainWindow::slotSessEnter() QString sid=sessionExplorer->getLastSession()->id(); QString cmd=st->setting()->value ( sid+"/command", ( QVariant ) QString::null ).toString(); - bool directRDP=(st->setting()->value ( sid+"/directrdp", + directRDP=(st->setting()->value ( sid+"/directrdp", ( QVariant ) false ).toBool() && cmd == "RDP"); if (cmd =="RDP" && directRDP) @@ -3244,6 +3244,16 @@ void ONMainWindow::slotSessEnter() startSession ( sid ); return; } + + directRDP=(st->setting()->value ( sid+"/directxdmcp", + ( QVariant ) false ).toBool() && cmd == "RDP"); + + if (cmd =="XDMCP" && directRDP) + { + x2goDebug<<"Starting direct RDP Session from broker"; + startSession ( sid ); + return; + } #endif broker->selectUserSession(sessionExplorer->getLastSession()->id()); config.session=sessionExplorer->getLastSession()->id(); @@ -3313,6 +3323,8 @@ void ONMainWindow::startDirectRDP() ( QVariant ) defaultHeight ).toInt(); int width=st->setting()->value ( sid+"/width", ( QVariant ) defaultWidth ).toInt(); + QString sessionType=st->setting()->value ( sid+"/command", + ( QVariant ) "").toString(); QString client=st->setting()->value ( sid+"/rdpclient", ( QVariant ) "rdesktop").toString(); @@ -3410,6 +3422,58 @@ void ONMainWindow::startDirectRDP() } proxyCmd= client +" "+params+ grOpt +userOpt+passOpt + "/v:"+host +":"+port ; } + if(sessionType=="XDMCP") + { + x2goDebug<<"starting direct XDMCP session"; + client=st->setting()->value ( sid+"/xdmcpclient", + ( QVariant ) "Xnest").toString(); + params=st->setting()->value ( sid+"/directxdmcpsettings", + ( QVariant ) "").toString(); + if(client == "Xephyr") + { + if (fullscreen) + { + grOpt=" -fullscreen "; + } + else if (maxRes) + { + QDesktopWidget wd; + grOpt=" -screen "+QString::number( wd.screenGeometry().width())+"x"+QString::number(wd.screenGeometry().height())+" "; + } + else + { + grOpt=" -screen "+QString::number(width)+"x"+QString::number(height); + } + } + else + { + if (maxRes) + { + QDesktopWidget wd; + grOpt=" -geometry "+QString::number( wd.screenGeometry().width())+"x"+QString::number(wd.screenGeometry().height())+" "; + } + else + { + grOpt=" -geometry "+QString::number(width)+"x"+QString::number(height); + } + } + int p=0; + while(true) + { + QString fname="/tmp/.X"+QString::number(p)+"-lock"; + if(QFile::exists(fname)) + { + ++p; + } + else + break; + } + proxyCmd= client +" "+params+ grOpt + " -query "+host +" :"+QString::number(p) ; + } + else + { + x2goDebug<<"starting direct RDP session"; + } // x2goDebug<<"starting direct session with cmd:"<<proxyCmd; nxproxy->start ( proxyCmd ); resumingSession.display="RDP"; @@ -3536,6 +3600,16 @@ bool ONMainWindow::startSession ( const QString& sid ) startDirectRDP(); return true; } + + directRDP=(st->setting()->value ( sid+"/directxdmcp", + ( QVariant ) false ).toBool() && cmd == "XDMCP"); + + + if (cmd =="XDMCP" && directRDP) + { + startDirectRDP(); + return true; + } #endif if ( cmd=="SHADOW" ) shadowSession=true; @@ -5866,8 +5940,15 @@ void ONMainWindow::handle_xmodmap_error (QProcess &proc) { } #endif -void ONMainWindow::slotProxyError ( QProcess::ProcessError ) +void ONMainWindow::slotProxyError ( QProcess::ProcessError err ) { + if(err==QProcess::FailedToStart && directRDP) + { + QString main_text = tr("Failed to start RDP or XMDCP client"); + QString informative_text = tr ("Check session settings and ensure that selected client is installed on your system."); + + show_RichText_ErrorMsgBox (main_text, informative_text); + } slotProxyFinished ( -1,QProcess::CrashExit ); } diff --git a/src/sessionwidget.cpp b/src/sessionwidget.cpp index e70aff6..766d3cc 100644 --- a/src/sessionwidget.cpp +++ b/src/sessionwidget.cpp @@ -120,7 +120,8 @@ SessionWidget::SessionWidget ( bool newSession, QString id, ONMainWindow * mw, QVBoxLayout *slLay =new QVBoxLayout(); QVBoxLayout *elLay =new QVBoxLayout(); slLay->addWidget ( new QLabel ( tr ( "Host:" ),sgb ) ); - slLay->addWidget ( new QLabel ( tr ( "Login:" ),sgb ) ); + lLogin= new QLabel ( tr ( "Login:" ),sgb ); + slLay->addWidget (lLogin ); lPort=new QLabel ( tr ( "SSH port:" ),sgb ); slLay->addWidget ( lPort ); elLay->addWidget ( server ); @@ -376,6 +377,16 @@ void SessionWidget::slot_proxyType() void SessionWidget::slot_rdpDirectClicked() { bool isDirectRDP=cbDirectRDP->isChecked(); + bool isXDMCP=false; + if(sessBox->currentText()== tr("XDMCP")) + { + cbDirectRDP->setText( tr("Direct XDMCP connection")); + isXDMCP=true; + } + else + { + cbDirectRDP->setText( tr("Direct RDP connection")); + } if (cbDirectRDP->isHidden()) isDirectRDP=false; pbAdvanced->setVisible((!isDirectRDP) && (sessBox->currentIndex()==RDP)); @@ -386,7 +397,9 @@ void SessionWidget::slot_rdpDirectClicked() lKey->setVisible(!isDirectRDP); openKey->setVisible(!isDirectRDP); sshPort->setVisible(!isDirectRDP); - rdpPort->setVisible(isDirectRDP); + rdpPort->setVisible(isDirectRDP && (!isXDMCP)); + lPort->setVisible(!(isDirectRDP && isXDMCP)); + cbKrbDelegation->setVisible(!isDirectRDP); cbKrbLogin->setVisible(!isDirectRDP); @@ -401,8 +414,11 @@ void SessionWidget::slot_rdpDirectClicked() { lPort->setText(tr("SSH port:")); } + lLogin->setVisible(!(isXDMCP&&isDirectRDP)); + uname->setVisible(!(isXDMCP&&isDirectRDP)); + - emit directRDP(isDirectRDP); + emit directRDP(isDirectRDP, isXDMCP); slot_emitSettings(); } #endif @@ -505,6 +521,10 @@ void SessionWidget::slot_changeCmd ( int var ) { leCmdIp->setText ( tr ( "XDMCP server:" ) ); cmd->setText ( xdmcpServer ); +#ifdef Q_OS_LINUX + cbDirectRDP->show(); + cbDirectRDP->setText(tr ("direct XDMCP connection")); +#endif } } else @@ -677,8 +697,14 @@ void SessionWidget::readConfig() xdmcpServer=st.setting()->value ( sessionId+"/xdmcpserver", ( QVariant ) "localhost" ).toString().trimmed(); #ifdef Q_OS_LINUX - cbDirectRDP->setChecked(st.setting()->value ( - sessionId+"/directrdp",false ).toBool()); + if(st.setting()->value (sessionId+"/directrdp",false ).toBool()) + { + cbDirectRDP->setChecked(true); + } + if(st.setting()->value (sessionId+"/directxdmcp",false ).toBool()) + { + cbDirectRDP->setChecked(true); + } #endif for ( int i=0; i<appNames.count(); ++i ) @@ -750,6 +776,10 @@ void SessionWidget::readConfig() sessBox->setCurrentIndex ( XDMCP ); cmd->setEnabled ( true ); cmd->setText ( xdmcpServer ); +#ifdef Q_OS_LINUX + cbDirectRDP->show(); + slot_rdpDirectClicked(); +#endif } else { @@ -845,6 +875,7 @@ void SessionWidget::saveSettings() st.setting()->setValue(sessionId+"/krbdelegation",( QVariant ) cbKrbDelegation->isChecked()); #ifdef Q_OS_LINUX st.setting()->setValue(sessionId+"/directrdp",( QVariant ) cbDirectRDP->isChecked()); + st.setting()->setValue(sessionId+"/directxdmcp",( QVariant ) cbDirectRDP->isChecked()); #endif QString command; bool rootless=false; diff --git a/src/sessionwidget.h b/src/sessionwidget.h index 60ee046..5eda2a1 100644 --- a/src/sessionwidget.h +++ b/src/sessionwidget.h @@ -85,6 +85,7 @@ private: QLabel* lPort; QLabel* lKey; QLabel* lPath; + QLabel* lLogin; QPushButton* pbAdvanced; QString rdpOptions; QString rdpServer; @@ -110,7 +111,7 @@ private: signals: void nameChanged ( const QString & ); #ifdef Q_OS_LINUX - void directRDP(bool); + void directRDP(bool, bool); void settingsChanged(const QString &, const QString &, const QString &); #endif }; diff --git a/src/settingswidget.cpp b/src/settingswidget.cpp index b15836c..9e9d69d 100644 --- a/src/settingswidget.cpp +++ b/src/settingswidget.cpp @@ -228,6 +228,32 @@ SettingsWidget::SettingsWidget ( QString id, ONMainWindow * mw, connect (params, SIGNAL(textChanged(QString)), this, SLOT(updateCmdLine())); connect (width, SIGNAL(valueChanged(int)), this, SLOT(updateCmdLine())); connect (height, SIGNAL(valueChanged(int)), this, SLOT(updateCmdLine())); + + + xdmcpBox=new QGroupBox ( tr ( "XDMCP client" ),this ); + setLay->addWidget ( xdmcpBox ); + rXnest=new QRadioButton ("Xnest",xdmcpBox ); + rXnest->setChecked(true); + rXephyr=new QRadioButton ( "Xephyr",xdmcpBox); + rX2goagent=new QRadioButton ( "x2goagent ",xdmcpBox); + QButtonGroup* rXdmcpClient=new QButtonGroup(xdmcpBox); + rXdmcpClient->addButton ( rXnest ); + rXdmcpClient->addButton ( rXephyr ); + rXdmcpClient->addButton ( rX2goagent ); + rXdmcpClient->setExclusive ( true ); + QGridLayout *xdmcpLay=new QGridLayout(xdmcpBox); + xdmcpLay->addWidget(rXnest,0,0); + xdmcpLay->addWidget(rXephyr,1,0); + xdmcpLay->addWidget(rX2goagent,2,0); + xdmcpLay->addWidget(new QLabel(tr("Additional parameters:")),3,0); + xdmcpLay->addWidget(new QLabel(tr("Command line:")),4,0); + xdmcpCmdLine=new QLineEdit(xdmcpBox); + xdmcpCmdLine->setReadOnly(true); + xdmcpParams=new QLineEdit(xdmcpBox); + xdmcpLay->addWidget(xdmcpCmdLine,4,0,1,2); + xdmcpLay->addWidget(xdmcpParams,3,1); + connect (rXdmcpClient, SIGNAL(buttonClicked(int)), this, SLOT(updateCmdLine())); + connect (xdmcpParams, SIGNAL(textChanged(QString)), this, SLOT(updateCmdLine())); #endif //CFGCLIENT #endif //Q_OS_LINUX #else @@ -276,7 +302,7 @@ void SettingsWidget::slot_kbdClicked() #ifdef Q_OS_LINUX -void SettingsWidget::setDirectRdp(bool direct) +void SettingsWidget::setDirectRdp(bool direct, bool isXDMCP) { clipGr->setVisible(!direct); kgb->setVisible(!direct); @@ -290,7 +316,8 @@ void SettingsWidget::setDirectRdp(bool direct) pbIdentDisp->setVisible(!direct); hLine1->setVisible(!direct); hLine2->setVisible(!direct); - rdpBox->setVisible(direct); + rdpBox->setVisible(direct && !isXDMCP); + xdmcpBox->setVisible(direct && isXDMCP); if (direct) { if (display->isChecked()) @@ -307,6 +334,7 @@ void SettingsWidget::setDirectRdp(bool direct) custom->setChecked(true); } } + updateCmdLine(); } #endif @@ -398,6 +426,15 @@ void SettingsWidget::readConfig() else rXfreeRDPOld->setChecked(true); params->setText(st.setting()->value ( sessionId+"/directrdpsettings","").toString()); + + client=st.setting()->value ( sessionId+"/xdmcpclient","Xnest").toString(); + if(client=="Xnest") + rXnest->setChecked(true); + else if(client=="x2goagent") + rX2goagent->setChecked(true); + else + rXephyr->setChecked(true); + xdmcpParams->setText(st.setting()->value ( sessionId+"/directxdmcpsettings","").toString()); #endif #endif @@ -536,6 +573,25 @@ void SettingsWidget::saveSettings() } st.setting()->setValue ( sessionId+"/directrdpsettings", ( QVariant ) params->text()); + + if (rXnest->isChecked()) + { + st.setting()->setValue ( sessionId+"/xdmcpclient", + ( QVariant ) "Xnest" ); + } + else if (rXephyr->isChecked()) + { + st.setting()->setValue ( sessionId+"/xdmcpclient", + ( QVariant ) "Xephyr" ); + } + else + { + st.setting()->setValue ( sessionId+"/xdmcpclient", + ( QVariant ) "x2goagent" ); + } + st.setting()->setValue ( sessionId+"/directxdmcpsettings", + ( QVariant ) xdmcpParams->text()); + #endif #endif @@ -668,6 +724,50 @@ void SettingsWidget::updateCmdLine() } cmdLine->setText(client +" "+params->text()+ grOpt +userOpt+" /p:<"+tr("password")+"> /v:"+ server+":"+port ); } + fs->setEnabled(true); + if(!rXephyr->isChecked() && !xdmcpBox->isHidden()) + { + fs->setEnabled(false); + if(fs->isChecked()) + { + custom->setChecked(true); + } + } + if(rX2goagent->isChecked()) + { + client="x2goagent"; + } + else + { + client="Xnest"; + } + if (maxRes->isChecked()) + { + grOpt=" -geometry <maxW>x<maxH>"; + } + if (custom->isChecked()) + { + grOpt=" -geometry "+QString::number(width->value())+"x"+QString::number(height->value()); + } + + if(rXephyr->isChecked()) + { + client="Xephyr"; + if (fs->isChecked()) + { + grOpt=" -fullscreen "; + } + if (maxRes->isChecked()) + { + grOpt=" -screen <maxW>x<maxH>"; + } + if (custom->isChecked()) + { + grOpt=" -screen "+QString::number(width->value())+"x"+QString::number(height->value()); + } + } + xdmcpCmdLine->setText(client +" "+xdmcpParams->text()+ grOpt +" -query "+ server+ " :<DISPLAY>"); + #endif } #endif diff --git a/src/settingswidget.h b/src/settingswidget.h index 2ebe51c..01e081b 100644 --- a/src/settingswidget.h +++ b/src/settingswidget.h @@ -44,7 +44,7 @@ public: void setDefaults(); void saveSettings(); #ifdef Q_OS_LINUX - void setDirectRdp(bool direct); + void setDirectRdp(bool direct, bool isXDMCP); public slots: void setServerSettings(QString server, QString port, QString user); void updateCmdLine(); @@ -97,6 +97,12 @@ private: QString server; QString user; QString port; + QGroupBox *xdmcpBox; + QRadioButton* rXnest; + QRadioButton* rXephyr; + QRadioButton* rX2goagent; + QLineEdit* xdmcpCmdLine; + QLineEdit* xdmcpParams; #endif QFrame* hLine1; QFrame* hLine2; -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 45d0f1bcbf423c57e47c94c7e86af35617d4b2f9 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Feb 23 09:28:32 2017 +0100 src/x2goutils.cpp: ensure that add_to_path () also processes the first value passed. Fixes startup problems in MacPorts. --- debian/changelog | 2 ++ src/x2goutils.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 10c656e..903522d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -74,6 +74,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium there's no way to query the remote endpoint information. As a result we will be unable to open a new socket to the remote endpoint and proxying will fail badly. + - src/x2goutils.cpp: ensure that add_to_path () also processes the first + value passed. Fixes startup problems in MacPorts. -- X2Go Release Manager <git-admin@x2go.org> Wed, 22 Feb 2017 07:13:10 +0100 diff --git a/src/x2goutils.cpp b/src/x2goutils.cpp index 7065d98..79c0700 100644 --- a/src/x2goutils.cpp +++ b/src/x2goutils.cpp @@ -299,7 +299,7 @@ QString add_to_path (const QString &orig_path, const QStringList &add, const boo } } else { - for (int i = (clean_add.size () - 1); i > 0; --i) { + for (int i = (clean_add.size () - 1); i >= 0; --i) { if (!found[i]) { ret.prepend (QString (clean_add[i] + ":")); } -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 9e96ba4d800beb14a0d49f707c7052378aca3ac0 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Feb 23 08:17:55 2017 +0100 src/sshmasterconnection.cpp: turns out libssh < 0.6.0 doesn't support fetching the host, port and username parameters at all. We're in the clear for non-SSH-proxied connections and can use config file parsing, but have to disable config file parsing in the proxy settings, as there's no way to query the remote endpoint information. As a result we will be unable to open a new socket to the remote endpoint and proxying will fail badly. --- debian/changelog | 7 ++++++ src/sshmasterconnection.cpp | 54 ++++++++++++++------------------------------- 2 files changed, 24 insertions(+), 37 deletions(-) diff --git a/debian/changelog b/debian/changelog index 713e269..10c656e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -67,6 +67,13 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium ssh_options_get () API, but instead expects users to pull out information directly from the ssh_session structure. This fixes compile issues on systems with older libssh versions. + - src/sshmasterconnection.cpp: turns out libssh < 0.6.0 doesn't support + fetching the host, port and username parameters at all. We're in the + clear for non-SSH-proxied connections and can use config file parsing, + but have to disable config file parsing in the proxy settings, as + there's no way to query the remote endpoint information. As a result we + will be unable to open a new socket to the remote endpoint and proxying + will fail badly. -- X2Go Release Manager <git-admin@x2go.org> Wed, 22 Feb 2017 07:13:10 +0100 diff --git a/src/sshmasterconnection.cpp b/src/sshmasterconnection.cpp index f99a1bd..0ceff00 100644 --- a/src/sshmasterconnection.cpp +++ b/src/sshmasterconnection.cpp @@ -196,6 +196,7 @@ SshMasterConnection::SshMasterConnection (QObject* parent, QString host, int por kerberos=krblogin; challengeAuthVerificationCode=QString::null; +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) if (this->user.isEmpty ()) { /* We might have a config file request pending, honor this. */ ssh_session tmp_session = ssh_new (); @@ -224,11 +225,7 @@ SshMasterConnection::SshMasterConnection (QObject* parent, QString host, int por } char *inferred_username = NULL; -#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) - inferred_username = tmp_session->username; -#else ssh_options_get (tmp_session, SSH_OPTIONS_USER, &inferred_username); -#endif x2goDebug << "Temporary session user name after config file parse: " << inferred_username; this->user = QString::fromLocal8Bit (inferred_username); @@ -237,6 +234,7 @@ SshMasterConnection::SshMasterConnection (QObject* parent, QString host, int por ssh_free (tmp_session); } } +#endif if (this->user.isEmpty ()) { #ifdef Q_OS_WIN @@ -828,25 +826,21 @@ bool SshMasterConnection::sshConnect() } } +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) unsigned int cur_port = 0; -#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) - cur_port = my_ssh_session->port; -#else ssh_options_get_port (my_ssh_session, &cur_port); -#endif x2goDebug << "Session port before config file parse: " << cur_port; +#endif /* Parse ~/.ssh/config. */ if (ssh_options_parse_config (my_ssh_session, NULL) < 0) { x2goDebug << "Warning: unable to parse the SSH config file."; } -#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) - cur_port = my_ssh_session->port; -#else +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) ssh_options_get_port (my_ssh_session, &cur_port); -#endif x2goDebug << "Session port after config file parse: " << cur_port; +#endif rc = ssh_connect ( my_ssh_session ); if ( rc != SSH_OK ) @@ -862,24 +856,20 @@ bool SshMasterConnection::sshConnect() } } -#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) - cur_port = my_ssh_session->port; -#else +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) ssh_options_get_port (my_ssh_session, &cur_port); -#endif x2goDebug << "Session port before config file parse (part 2): " << cur_port; +#endif /* Parse ~/.ssh/config. */ if (ssh_options_parse_config (my_ssh_session, NULL) < 0) { x2goDebug << "Warning: unable to parse the SSH config file."; } -#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) - cur_port = my_ssh_session->port; -#else +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) ssh_options_get_port (my_ssh_session, &cur_port); -#endif x2goDebug << "Session port after config file parse (part 2): " << cur_port; +#endif return true; } @@ -1674,6 +1664,12 @@ void SshMasterConnection::channelLoop() << channelConnections.at (i).localHost << ":" << channelConnections.at (i).localPort << ")"; #endif + + /* + * Cannot support config file parsing here with pre-0.6.0 libssh versions. + * There's just no way to get the inferred host and port values. + */ +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) ssh_session tmp_session = ssh_new (); if (!tmp_session) { @@ -1699,36 +1695,20 @@ void SshMasterConnection::channelLoop() } unsigned int inferred_port = 0; -#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) - inferred_port = tmp_session->port; -#else ssh_options_get_port (tmp_session, &inferred_port); -#endif x2goDebug << "Temporary session port after config file parse: " << inferred_port; char *inferred_host = NULL; -#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) - if (inferred_host) { - inferred_host = strdup(tmp_session->host); - } - else { - x2goDebug << "Temporary session host after config file parse NULL; should not happen, as it was set before."; - } -#else ssh_options_get (tmp_session, SSH_OPTIONS_HOST, &inferred_host); -#endif x2goDebug << "Temporary session host after config file parse: " << inferred_host; channelConnections[i].forwardHost = QString (inferred_host); channelConnections[i].forwardPort = static_cast<int> (inferred_port); -#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) - free (inferred_host); -#else ssh_string_free_char (inferred_host); -#endif ssh_free (tmp_session); } +#endif { QByteArray tmp_BA_forward = channelConnections.at (i).forwardHost.toLocal8Bit (); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 43da15a4074378ef81c33e97aa79a72f7f0d6202 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Feb 23 06:05:26 2017 +0100 src/sshmasterconnection.cpp: libssh < 0.6.0 does not have the ssh_options_get () API, but instead expects users to pull out information directly from the ssh_session structure. This fixes compile issues on systems with older libssh versions. --- debian/changelog | 4 ++++ src/sshmasterconnection.cpp | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/debian/changelog b/debian/changelog index 0e8cf77..713e269 100644 --- a/debian/changelog +++ b/debian/changelog @@ -63,6 +63,10 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - src/pulsemanager.cpp: fix up a debug string. Qt drops a space where I'd like to have one and inserts a space where I'd like none, so work around that fancifully. + - src/sshmasterconnection.cpp: libssh < 0.6.0 does not have the + ssh_options_get () API, but instead expects users to pull out + information directly from the ssh_session structure. This fixes compile + issues on systems with older libssh versions. -- X2Go Release Manager <git-admin@x2go.org> Wed, 22 Feb 2017 07:13:10 +0100 diff --git a/src/sshmasterconnection.cpp b/src/sshmasterconnection.cpp index f16bf85..f99a1bd 100644 --- a/src/sshmasterconnection.cpp +++ b/src/sshmasterconnection.cpp @@ -224,7 +224,11 @@ SshMasterConnection::SshMasterConnection (QObject* parent, QString host, int por } char *inferred_username = NULL; +#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) + inferred_username = tmp_session->username; +#else ssh_options_get (tmp_session, SSH_OPTIONS_USER, &inferred_username); +#endif x2goDebug << "Temporary session user name after config file parse: " << inferred_username; this->user = QString::fromLocal8Bit (inferred_username); @@ -825,7 +829,11 @@ bool SshMasterConnection::sshConnect() } unsigned int cur_port = 0; +#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) + cur_port = my_ssh_session->port; +#else ssh_options_get_port (my_ssh_session, &cur_port); +#endif x2goDebug << "Session port before config file parse: " << cur_port; /* Parse ~/.ssh/config. */ @@ -833,7 +841,11 @@ bool SshMasterConnection::sshConnect() x2goDebug << "Warning: unable to parse the SSH config file."; } +#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) + cur_port = my_ssh_session->port; +#else ssh_options_get_port (my_ssh_session, &cur_port); +#endif x2goDebug << "Session port after config file parse: " << cur_port; rc = ssh_connect ( my_ssh_session ); @@ -850,7 +862,11 @@ bool SshMasterConnection::sshConnect() } } +#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) + cur_port = my_ssh_session->port; +#else ssh_options_get_port (my_ssh_session, &cur_port); +#endif x2goDebug << "Session port before config file parse (part 2): " << cur_port; /* Parse ~/.ssh/config. */ @@ -858,7 +874,11 @@ bool SshMasterConnection::sshConnect() x2goDebug << "Warning: unable to parse the SSH config file."; } +#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) + cur_port = my_ssh_session->port; +#else ssh_options_get_port (my_ssh_session, &cur_port); +#endif x2goDebug << "Session port after config file parse (part 2): " << cur_port; return true; @@ -1679,17 +1699,34 @@ void SshMasterConnection::channelLoop() } unsigned int inferred_port = 0; +#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) + inferred_port = tmp_session->port; +#else ssh_options_get_port (tmp_session, &inferred_port); +#endif x2goDebug << "Temporary session port after config file parse: " << inferred_port; char *inferred_host = NULL; +#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) + if (inferred_host) { + inferred_host = strdup(tmp_session->host); + } + else { + x2goDebug << "Temporary session host after config file parse NULL; should not happen, as it was set before."; + } +#else ssh_options_get (tmp_session, SSH_OPTIONS_HOST, &inferred_host); +#endif x2goDebug << "Temporary session host after config file parse: " << inferred_host; channelConnections[i].forwardHost = QString (inferred_host); channelConnections[i].forwardPort = static_cast<int> (inferred_port); +#if LIBSSH_VERSION_INT < SSH_VERSION_INT (0, 6, 0) + free (inferred_host); +#else ssh_string_free_char (inferred_host); +#endif ssh_free (tmp_session); } -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 24a5bc4b54f0f6d4c5c60f8a285368aa01ec2c6c Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 12:55:48 2017 +0100 {src/{onmainwindow,httpbrokerclient}.cpp,res/i18n/x2goclient_*.ts}: fix another occurrence of a string missing a space separator between words and update translation files. --- debian/changelog | 3 +++ res/i18n/x2goclient_da.ts | 4 ++-- res/i18n/x2goclient_de.ts | 4 ++-- res/i18n/x2goclient_es.ts | 4 ++-- res/i18n/x2goclient_et.ts | 4 ++-- res/i18n/x2goclient_fi.ts | 4 ++-- res/i18n/x2goclient_fr.ts | 4 ++-- res/i18n/x2goclient_nb_no.ts | 4 ++-- res/i18n/x2goclient_nl.ts | 4 ++-- res/i18n/x2goclient_pt.ts | 4 ++-- res/i18n/x2goclient_ru.ts | 4 ++-- res/i18n/x2goclient_sv.ts | 4 ++-- res/i18n/x2goclient_tr.ts | 4 ++-- res/i18n/x2goclient_zh_tw.ts | 4 ++-- src/httpbrokerclient.cpp | 2 +- src/onmainwindow.cpp | 2 +- 16 files changed, 31 insertions(+), 28 deletions(-) diff --git a/debian/changelog b/debian/changelog index 11a4946..83c08ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -83,6 +83,9 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - res/i18n/x2goclient_*.ts: go the extra mile and fix up translation files manually after the "anothertype" fix in 8e503d89ee2d03a313c3deff11f0516fce503022. + - {src/{onmainwindow,httpbrokerclient}.cpp,res/i18n/x2goclient_*.ts}: fix + another occurrence of a string missing a space separator between words + and update translation files. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/res/i18n/x2goclient_da.ts b/res/i18n/x2goclient_da.ts index e50af37..b4036cb 100644 --- a/res/i18n/x2goclient_da.ts +++ b/res/i18n/x2goclient_da.ts @@ -1113,7 +1113,7 @@ offentlig nøgle hash: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> @@ -2519,7 +2519,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> diff --git a/res/i18n/x2goclient_de.ts b/res/i18n/x2goclient_de.ts index aa7ea43..d12f045 100644 --- a/res/i18n/x2goclient_de.ts +++ b/res/i18n/x2goclient_de.ts @@ -2242,7 +2242,7 @@ Möchten Sie die Verbindung abbrechen? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Die „Known Hosts“-Datei konnte nicht gefunden werden. Wenn Sie den Host-Key hier akzeptieren, dann wird die Datei automatisch erstellt.</translation> </message> <message> @@ -3073,7 +3073,7 @@ Er lautet jetzt: </translation> <translation type="obsolete">Der Host-Key des Servers konnte nicht gefunden werden aber ein anderer Schlüsseltyp existiert. Ein Angreifer kann den Schlüssel verändert haben, um dem Client vorzutäuschen, dass der Schlüssel nicht existiert</translation> </message> <message> - <source>Could not find known host file.If you accept the host key here, the file will be automatically created</source> + <source>Could not find known host file. If you accept the host key here, the file will be automatically created</source> <translation type="obsolete">Die ,,Known Host''-Datei konnte nicht gefunden werden. Wenn Sie den Host-Key hier akzeptieren, dann wird die Datei automatisch erstellt.</translation> </message> <message> diff --git a/res/i18n/x2goclient_es.ts b/res/i18n/x2goclient_es.ts index cfedb89..cea6fba 100644 --- a/res/i18n/x2goclient_es.ts +++ b/res/i18n/x2goclient_es.ts @@ -1138,7 +1138,7 @@ Hash de su clave pública: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>No se ha encontrado el archivo know-hosts. Si aceptas el archivo se creará automáticamente.</translation> </message> <message> @@ -2565,7 +2565,7 @@ Por razones de seguridad se recomienda finalizar la conexión. </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>No se ha encontrado el archivo know-hosts. Si aceptas el archivo se creará automáticamente.</translation> </message> <message> diff --git a/res/i18n/x2goclient_et.ts b/res/i18n/x2goclient_et.ts index 8ec1f04..d21891a 100644 --- a/res/i18n/x2goclient_et.ts +++ b/res/i18n/x2goclient_et.ts @@ -1108,7 +1108,7 @@ Tema avaliku võtme 'hash' on:</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Ei leidu tuntud võtmete faili (known_hosts). Kui kinnitad selle serveri võtme, moodustame automaatselt ka tuntud võtmete faili.</translation> </message> <message> @@ -1783,7 +1783,7 @@ Kas Sa soovid ühenduse katkestada? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Ei leidu tuntud võtmete faili (known_host). Kui kinnitad selle serveri võtme, moodustame automaatselt ka tuntud võtmete faili.</translation> </message> <message> diff --git a/res/i18n/x2goclient_fi.ts b/res/i18n/x2goclient_fi.ts index 9962acb..6ceda75 100644 --- a/res/i18n/x2goclient_fi.ts +++ b/res/i18n/x2goclient_fi.ts @@ -1127,7 +1127,7 @@ Julkinen avain: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Tunnettujen palvelinten nimitiedostoa ei löydy.Jos hyväksyt palvelimen tunnistusavaimen, nimitiedosto luodaan automaattisesti.</translation> </message> <message> @@ -1806,7 +1806,7 @@ Halutako keskeyttää? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Tunnettujen palvelinten sijaintitiedostoa ei löydy.Jos hyväksyt palvelimen tunnistusavaimen, puuttuva tiedosto perustetaan automaattisesti.</translation> </message> <message> diff --git a/res/i18n/x2goclient_fr.ts b/res/i18n/x2goclient_fr.ts index 0178687..b8e4f44 100644 --- a/res/i18n/x2goclient_fr.ts +++ b/res/i18n/x2goclient_fr.ts @@ -979,7 +979,7 @@ Public key hash: </source> <translation>La clé d'hôte de ce serveur n'a pas été reconnue mais un autre type de clef existe. Un attaquant peut avoir changé la clé par défaut du serveur pour faire croire à votre client que la clé n'existe pas encore.</translation> </message> <message> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Impossible de trouver le fichier des hôtes connus. Si vous acceptez l'hôte maintenant, le fichier sera créé automatiquement.</translation> </message> <message> @@ -1843,7 +1843,7 @@ Voulez-vous mettre fin à la connexion ? </translation> </message> <message> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Impossible de trouver le fichier des hôtes connus. Si vous acceptez l'hôte maintenant, le fichier sera créé automatiquement.</translation> </message> <message> diff --git a/res/i18n/x2goclient_nb_no.ts b/res/i18n/x2goclient_nb_no.ts index f05f65b..95d7d48 100644 --- a/res/i18n/x2goclient_nb_no.ts +++ b/res/i18n/x2goclient_nb_no.ts @@ -1010,7 +1010,7 @@ Offentlig nøkkel: </translation> <translation>Vertsnøkkelen for denne serveren ble ikke funnet, men en annen type av nøkkel eksisterer. En angriper kan ha endret standard servernøkkel for å lure klienten din til å tro at nøkkelen ikke finnes ennå.</translation> </message> <message> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Kan ikke finne known host filen. Om du aksepterer vertsnøkkelen her vil filen automatisk bli opprettet.</translation> </message> <message> @@ -2299,7 +2299,7 @@ Vil du avbryte tilkoblingen? </translation> </message> <message> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Kan ikke finne known host filen. Om du aksepterer vertsnøkkelen her vil filen automatisk bli opprettet.</translation> </message> <message> diff --git a/res/i18n/x2goclient_nl.ts b/res/i18n/x2goclient_nl.ts index 58215ee..34575fe 100644 --- a/res/i18n/x2goclient_nl.ts +++ b/res/i18n/x2goclient_nl.ts @@ -1128,7 +1128,7 @@ Publieke sleutel hash: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Kon het known host bestand niet vinden. Als u deze sleutel accepteert zal het bestand automatisch aangemaakt worden.</translation> </message> <message> @@ -1798,7 +1798,7 @@ Wilt u de verbinding afbreken?</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Kon het known host bestand niet vinden. Als u de host sleutel accepteert zal dit bestand automatisch aangemaakt worden.</translation> </message> <message> diff --git a/res/i18n/x2goclient_pt.ts b/res/i18n/x2goclient_pt.ts index a4091d5..65ef3fe 100644 --- a/res/i18n/x2goclient_pt.ts +++ b/res/i18n/x2goclient_pt.ts @@ -1000,7 +1000,7 @@ Public key hash: </source> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> @@ -1618,7 +1618,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> diff --git a/res/i18n/x2goclient_ru.ts b/res/i18n/x2goclient_ru.ts index f55a0ff..d8827ae 100644 --- a/res/i18n/x2goclient_ru.ts +++ b/res/i18n/x2goclient_ru.ts @@ -1483,7 +1483,7 @@ Public key hash: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> @@ -2427,7 +2427,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> diff --git a/res/i18n/x2goclient_sv.ts b/res/i18n/x2goclient_sv.ts index 7a107b0..5e61f38 100644 --- a/res/i18n/x2goclient_sv.ts +++ b/res/i18n/x2goclient_sv.ts @@ -1141,7 +1141,7 @@ Publik nyckel: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Hittar ej fil för kända servrar. Om du accepterar serverns nyckel så kommer filen att skapas automatiskt.</translation> </message> <message> @@ -1815,7 +1815,7 @@ Vill du avsluta anslutningen? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Hittar ej fil för kända servrar. Om du accepterar serverns nyckel så kommer filen att skapas automatiskt.</translation> </message> <message> diff --git a/res/i18n/x2goclient_tr.ts b/res/i18n/x2goclient_tr.ts index d1ff332..2d2b8da 100644 --- a/res/i18n/x2goclient_tr.ts +++ b/res/i18n/x2goclient_tr.ts @@ -1046,7 +1046,7 @@ Açık anahtar özeti: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> @@ -1796,7 +1796,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> diff --git a/res/i18n/x2goclient_zh_tw.ts b/res/i18n/x2goclient_zh_tw.ts index af7240d..230d430 100644 --- a/res/i18n/x2goclient_zh_tw.ts +++ b/res/i18n/x2goclient_zh_tw.ts @@ -1082,7 +1082,7 @@ Public key hash: </source> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> @@ -2406,7 +2406,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> - <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> diff --git a/src/httpbrokerclient.cpp b/src/httpbrokerclient.cpp index 7ea6ccf..2bde57c 100644 --- a/src/httpbrokerclient.cpp +++ b/src/httpbrokerclient.cpp @@ -167,7 +167,7 @@ void HttpBrokerClient::slotSshServerAuthError(int error, QString sshMessage, Ssh slotSshUserAuthError ( sshMessage ); return ; case SSH_SERVER_FILE_NOT_FOUND: - errMsg=tr ( "Could not find known hosts file." + errMsg=tr ( "Could not find known hosts file. " "If you accept the host key here, the file will be automatically created." ); break; diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 2753083..40675c0 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -3132,7 +3132,7 @@ void ONMainWindow::slotSshServerAuthError ( int error, QString sshMessage, SshMa slotSshUserAuthError ( sshMessage ); return ; case SSH_SERVER_FILE_NOT_FOUND: - errMsg=tr ( "Could not find known hosts file." + errMsg=tr ( "Could not find known hosts file. " "If you accept the host key here, the file will be automatically created." ); break; -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 4d543b06f4c2efa338f3358c6b5fbe298365239b Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 13:27:09 2017 +0100 src/onmainwindow.cpp: don't duplicate depth warning message needlessly, use correct plural forms in translations and split string up in a translation-friendly form. I'll leave translators to handle this beast, as languages are unique in the number of plural forms and the like. --- debian/changelog | 4 ++++ src/onmainwindow.cpp | 55 ++++++++++++++++------------------------------------ 2 files changed, 21 insertions(+), 38 deletions(-) diff --git a/debian/changelog b/debian/changelog index 83c08ca..e0603ef 100644 --- a/debian/changelog +++ b/debian/changelog @@ -86,6 +86,10 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - {src/{onmainwindow,httpbrokerclient}.cpp,res/i18n/x2goclient_*.ts}: fix another occurrence of a string missing a space separator between words and update translation files. + - src/onmainwindow.cpp: don't duplicate depth warning message needlessly, + use correct plural forms in translations and split string up in a + translation-friendly form. I'll leave translators to handle this beast, + as languages are unique in the number of plural forms and the like. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 40675c0..02bb3e6 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -4799,45 +4799,24 @@ void ONMainWindow::slotResumeSess() } else { - QString depth=QString::number ( s.colorDepth ); int res; - if ( s.colorDepth==24 || s.colorDepth==32 ) - { - res=QMessageBox::warning ( - 0l,tr ( "Warning" ), - tr ("Your current color depth is different from " - "the session's color depth. This may cause " - "problems reconnecting to this session and " - "in most cases <b>you will loose the " - "session</b> and have to start a new one! " - "It's highly recommended to change the color " - "depth of your display to " ) + - tr ( "24 or 32" ) + - tr (" bits and restart your X.Org Server before you " - "reconnect to this X2Go session.<br />" - "Do you want to resume this session anyway?" ), - tr ( "Yes" ), - tr ( "No" ) ); - - } - else - { - res=QMessageBox::warning ( - 0l,tr ( "Warning" ), - tr ("Your current color depth is different from " - "the session's color depth. This may cause " - "problems reconnecting to this session and " - "in most cases <b>you will loose the " - "session</b> and have to start a new one! " - "It's highly recommended to change the color " - "depth of your display to " ) + - depth + - tr (" bits and restart your X.Org Server before you " - "reconnect to this X2Go session.<br />" - "Do you want to resume this session anyway?" ), - tr ( "Yes" ), - tr ( "No" ) ); - } + res=QMessageBox::warning ( + 0l,tr ( "Warning" ), + tr ("Your current color depth is different from " + "the session's color depth. This may cause " + "problems reconnecting to this session and " + "in most cases <b>you will loose the " + "session</b> and have to start a new one! ") + + tr ("It's highly recommended to change the color " + "depth of your display to %n bit(s) and " + "restart your X.Org Server before you " + "reconnect to this X2Go session.", + "%n will be replaced with a number", + s.colorDepth) + + tr ("<br />" + "Do you want to resume this session anyway?"), + tr ( "Yes" ), + tr ( "No" ) ); if ( res==0 ) resumeSession ( s ); } -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 36231da8093535fc63c71ef4d3f34dca3ba523ab Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 12:41:22 2017 +0100 res/i18n/x2goclient_et.ts: various fixups for the Estonian translation file. --- debian/changelog | 2 + res/i18n/x2goclient_et.ts | 181 ++++++++++++++++++++++++---------------------- 2 files changed, 98 insertions(+), 85 deletions(-) diff --git a/debian/changelog b/debian/changelog index f535e60..e01d8ce 100644 --- a/debian/changelog +++ b/debian/changelog @@ -78,6 +78,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium value passed. Fixes startup problems in MacPorts. - src/onmainwindow.cpp: unbreak Windows and OS X builds - directRDP is only available on Linux, so guard new section. + - res/i18n/x2goclient_et.ts: various fixups for the Estonian translation + file. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/res/i18n/x2goclient_et.ts b/res/i18n/x2goclient_et.ts index 8f82420..4727b70 100644 --- a/res/i18n/x2goclient_et.ts +++ b/res/i18n/x2goclient_et.ts @@ -330,7 +330,7 @@ <message> <location filename="../../src/configdialog.cpp" line="342"/> <source>PulseAudio settings</source> - <translation>"PulseAusio" seaded</translation> + <translation>"PulseAudio" seaded</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="344"/> @@ -345,7 +345,7 @@ <message> <location filename="../../src/configdialog.cpp" line="549"/> <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>Sa kasutad XQuartz (X Window System for OS X) versiooni </translation> + <translation>Sa kasutad XQuartz (X Window System Server for OS X) versiooni </translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> @@ -360,18 +360,17 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: <center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation> + <translation>. -See versioon põhjustab probleeme X aplikatsioonides 24 biti -värviesitus reziimis. -Sa peaksid värskendama oma X11 taristut ;-) +See versioon põhjustab probleeme X aplikatsioonides 24 biti värviesitus reziimis. +Sa peaksid värskendama oma X11 taristut. -MacPorts kasutajad palun järgige alljärgnevaid juhiseid +MacPorts kasutajad palun järgige alljärgnevaid juhiseid: <center><a href="https://guide.macports.org/chunked/using.common-tasks.html">https://guide.macports.org/chunked/using.common-tasks.html</a></center> Kasutajad kes installeerisid XQuartz'i kasutades 'installer package' leiavad uuendatud versiooni: -<center><a href="https://xquartz.macosforge.org/\">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="578"/> @@ -380,6 +379,7 @@ leiavad uuendatud versiooni: </message> <message> <location filename="../../src/configdialog.cpp" line="579"/> + <comment>You probably should be trying to translate that, although I don't know how OS X calls "Applications" and "Utilities" in Estonian.</comment> <source>You did not select a valid XQuartz application. Please try again. @@ -387,7 +387,7 @@ Some standard installation locations may be: <center><b>/Applications/Utilities/X11.app</b></center> <center><b>/Applications/Utilities/XQuartz.app</b></center> <center><b>/Applications/MacPorts/X11.app</b></center></source> - <translation></translation> + <translation type="unfinished"></translation> </message> <message> <source>X-Server settings</source> @@ -720,8 +720,9 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/folderexplorer.cpp" line="81"/> + <comment>Missing translation?</comment> <source>Rename Folder ...</source> - <translation></translation> + <translation type="unfinished"></translation> </message> <message> <location filename="../../src/folderexplorer.cpp" line="82"/> @@ -833,7 +834,7 @@ Some standard installation locations may be: <message> <location filename="../../src/help.cpp" line="117"/> <source>Starts hidden (minimized to system tray where available.)</source> - <translation>Käivitub peidetult (minimiseeritult tegumiribale kus võimalik)</translation> + <translation>Käivitub peidetult (minimiseeritult tegumiribale kus võimalik.)</translation> </message> <message> <location filename="../../src/help.cpp" line="118"/> @@ -868,12 +869,12 @@ Some standard installation locations may be: <message> <location filename="../../src/help.cpp" line="124"/> <source>Adds RSA key fingerprint to ".ssh/known_hosts" if authenticity of the server can't be determined.</source> - <translation>Lisab RSA key sõrmejälje (fingerprint) \".ssh/known_hosts\" kui serveri audentsust ei ole võimalik määratleda.</translation> + <translation>Lisab RSA key sõrmejälje (fingerprint) ".ssh/known_hosts" kui serveri audentsust ei ole võimalik määratleda.</translation> </message> <message> <location filename="../../src/help.cpp" line="125"/> <source>Starts with LDAP support. Example: --ldap=ldapserver:389:o=organization,c=de</source> - <translation>Alustab LDAP toega. Näiteks : --ldap=ldapserver:389:o=organization,c=de</translation> + <translation>Alustab LDAP toega. Näiteks: --ldap=ldapserver:389:o=organization,c=ee</translation> </message> <message> <location filename="../../src/help.cpp" line="126"/> @@ -888,12 +889,12 @@ Some standard installation locations may be: <message> <location filename="../../src/help.cpp" line="128"/> <source>Defines the remote SSH server port. Default: 22.</source> - <translation>Defineerib kaugarvuti SSH serveri pordi. Vaikimisi 22.</translation> + <translation>Defineerib kaugarvuti SSH serveri pordi. Vaikimisi: 22.</translation> </message> <message> <location filename="../../src/help.cpp" line="129"/> <source>Defines the local machine's SSH server port. Needed for Client-Side Printing and File Sharing support. Default: 22.</source> - <translation>Defineerib lokaalse seadme SSH serveri pordi. Vajalik kliendipoolseks printimiseks ja failijagamisteenuse toetamiseks. Vaikimisi 22.</translation> + <translation>Defineerib lokaalse seadme SSH serveri pordi. Vajalik kliendipoolseks printimiseks ja failijagamisteenuse toetamiseks. Vaikimisi: 22.</translation> </message> <message> <location filename="../../src/help.cpp" line="130"/> @@ -908,22 +909,22 @@ Some standard installation locations may be: <message> <location filename="../../src/help.cpp" line="132"/> <source>Sets the user name for connecting to the remote SSH server to "username".</source> - <translation>Määra kasutajatunnus ühendumiseks SH serveriga.</translation> + <translation>Määra kasutajatunnus ühendumiseks SSH serveriga.</translation> </message> <message> <location filename="../../src/help.cpp" line="133"/> <source>Sets the default window geometry. Default: 800x600.</source> - <translation>Määrab ekraani mõõtmed. Vaikimisi 800x600.</translation> + <translation>Määrab ekraani mõõtmed. Vaikimisi: 800x600.</translation> </message> <message> <location filename="../../src/help.cpp" line="134"/> <source>Sets the remote X2Go Agent's DPI value to "dpi". Default: same as local display.</source> - <translation>Määrab kaug X2Go Agendi DPI väärtuse. Vaikimisi sama mis lokaalsel dispeil.</translation> + <translation>Määrab kaug X2Go Agendi DPI väärtuse. Vaikimisi: sama mis lokaalsel dispeil.</translation> </message> <message> <location filename="../../src/help.cpp" line="135"/> <source>Sets the default link type. Default: "adsl".</source> - <translation>Määrab ühenduse tüübi. Vaikimisi "adsl".</translation> + <translation>Määrab ühenduse tüübi. Vaikimisi: "adsl".</translation> </message> <message> <location filename="../../src/help.cpp" line="136"/> @@ -933,7 +934,7 @@ Some standard installation locations may be: <message> <location filename="../../src/help.cpp" line="137"/> <source>Sets the default clipboard mode. Default: "both".</source> - <translation>Vaikimisi clipboard'i reziim. Vaikimisi 'mõlemad'.</translation> + <translation>Vaikimisi clipboard'i reziim. Vaikimisi: 'mõlemad'.</translation> </message> <message> <location filename="../../src/help.cpp" line="138"/> @@ -997,8 +998,9 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/help.cpp" line="156"/> + <comment>You should probably translate that string, even if it is inconveniently long...</comment> <source>Does not ask for user credentials during session broker authentication. This can be useful if you are using an HTTP(S) session broker without authentication. If you run an HTTP(S) server without authentication, but with user-specific profiles, then put the user name into the broker URL (refer to --broker-url.) The user name then will be extracted from the broker URL and be sent to the session broker. The client's behavior is undefined if this flag is used for non-HTT [...] - <translation>Ei hakka tõlkimagi. Katsu niisama aru saada järgnevast: "Does not ask for user credentials during session broker authentication. This can be useful if you are using an HTTP(S) session broker without authentication. If you run an HTTP(S) server without authentication, but with user-specific profiles, then put the user name into the broker URL (refer to --broker-url.) The user name then will be extracted from the broker URL and be sent to the session broker. The c [...] + <translation type="unfinished"></translation> </message> </context> <context> @@ -1107,7 +1109,7 @@ Tema avaliku võtme 'hash' on:</translation> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> - <translation>Ei leidu tuntud võtmete faili (known_host). Kui kinnitad selle serveri võtme, moodustame automaatselt ka tuntud võtmete faili.</translation> + <translation>Ei leidu tuntud võtmete faili (known_hosts). Kui kinnitad selle serveri võtme, moodustame automaatselt ka tuntud võtmete faili.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="179"/> @@ -1264,6 +1266,7 @@ sound system connections through firewalls</source> Please upgrade to PulseAudio.</source> <translation>ARTS tugi on plaanis lähiajal eemaldada. + Palun uuenda kasutamaks PulseAudio-t.</translation> </message> <message> @@ -1272,6 +1275,7 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> Please upgrade to PulseAudio.</source> <translation>ESounD tugi on plaanis lähiajal eemaldada. + Palun uuenda kasutamaks PulseAudio-t.</translation> </message> </context> @@ -1481,7 +1485,7 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <message> <location filename="../../src/onmainwindow.cpp" line="277"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> - <translation>Käivitan x2goclient-i 'mobiilses' olekus... Andmekataloog on:</translation> + <translation>Käivitan X2Go Client-i 'mobiilses' olekus... Andmekataloog on: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="409"/> @@ -1492,18 +1496,19 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <message> <location filename="../../src/onmainwindow.cpp" line="513"/> <source>Started X2Go Client.</source> - <translation>X2Go klient on käivitatud.</translation> + <translation>X2Go Client on käivitatud.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="593"/> <location filename="../../src/onmainwindow.cpp" line="621"/> <source> found.</source> - <translation>leitud.</translation> + <translation> leitud.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="606"/> + <comment>You're right, that should probably not be a translatable string at all. I think I added it for the case that we decide to add an English translation (think American vs. British vs. Australian vs. New Zealand vs ... English) of X2Go Client as well, but it doesn't make too much sense.</comment> <source>English language requested, not loading translator.</source> - <translation>Inglise keel on nõutud, translaatorit ei laeta. Imelik milleks siis see tõlge siin - kui ei laeta.</translation> + <translation>Inglise keel on nõutud, translaatorit ei laeta.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="627"/> @@ -1523,7 +1528,7 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <message> <location filename="../../src/onmainwindow.cpp" line="890"/> <source>&Create session icon on desktop ...</source> - <translation>&Tee sessiooni ikoon töölauale...</translation> + <translation>&Tee sessiooni ikoon töölauale ...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="899"/> @@ -1533,7 +1538,7 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <message> <location filename="../../src/onmainwindow.cpp" line="910"/> <source>&Connectivity test ...</source> - <translation>&Ühenduvuse test...</translation> + <translation>&Ühenduvuse test ...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="942"/> @@ -1720,7 +1725,7 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <message> <location filename="../../src/onmainwindow.cpp" line="1570"/> <source>Finished X2Go Client closing hooks.</source> - <translation>Lõpetanud X2Go klient suleb konksusid. ;-) .</translation> + <translation>Lõpetanud X2Go Client suleb konksusid.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="1823"/> @@ -1730,7 +1735,7 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <message> <location filename="../../src/onmainwindow.cpp" line="1907"/> <source>no X2Go Server found in LDAP </source> - <translation>X2Go -serverit ei leia LDAP-st </translation> + <translation>X2Go Serverit ei leia LDAP-st </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="2907"/> @@ -1744,12 +1749,13 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3063"/> + <comment>Seems the be missing the "eavesdropping" part?</comment> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> - <translation>See võib olla 'man-in-the-middle' rünnaku tunnus. + <translation type="unfinished">See võib olla 'man-in-the-middle' rünnaku tunnus. Tusvalisuse kaalutlustel on soovitatav katkestada ühendus. Kas Sa soovid ühenduse katkestada? </translation> @@ -1770,7 +1776,7 @@ Kas Sa soovid ühenduse katkestada? For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> - <translation>Serveri võtit ei leitud, aga leidus muu võti. Mõni häkker võib olla vahetanud oletusvõtme üritades petta kaugkasutajat et viimane arvaks, et võtit ei ole + <translation>Serveri võtit ei leitud, aga leidus muu võti. Mõni häkker võib olla vahetanud oletusvõtme üritades petta kaugkasutajat et viimane arvaks, et võtit ei ole. Turvalisuse kaalutlusel soovitame ühendus katkestada. Kas Sa soovid ühenduse katkestada? </translation> @@ -1834,13 +1840,15 @@ Kas Sa soovid ühenduse katkestada? <location filename="../../src/onmainwindow.cpp" line="5650"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> - <translation>Ei suuda luua SSH tunnelit X2Go sessiooni (NX) käivitamiseks:</translation> + <translation>Ei suuda luua SSH tunnelit X2Go sessiooni (NX) käivitamiseks: +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5680"/> <source>Unable to create SSH tunnel for audio data: </source> - <translation>Ei suuda luua SSH tunnelit audio jaoks:</translation> + <translation>Ei suuda luua SSH tunnelit audio jaoks: +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5806"/> @@ -1893,8 +1901,7 @@ Otsitakse kataloogist: </translation> <message> <location filename="../../src/onmainwindow.cpp" line="5837"/> <source>Unable to read from xmodmap.</source> - <translation>Ei suuda lugeda xmodmap'ist. -</translation> + <translation>Ei suuda lugeda xmodmap'ist.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5842"/> @@ -1948,7 +1955,8 @@ Avatud failid ei salvestu.</translation> <source><b>Connection failed.</b> : </source> - <translation><b>Ühendus ebaõnnestus.</b> : + <translation><b>Ühendus ebaõnnestus.</b> +: </translation> </message> <message> @@ -2042,7 +2050,7 @@ Avatud failid ei salvestu.</translation> <message> <location filename="../../src/onmainwindow.cpp" line="10232"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation>Ei leia sftp-server programmi.Seda kas ei ole või ei leidu teda'$PATH ega lisakataloogides.</translation> + <translation>Ei leia sftp-server programmi. Seda kas ei ole või ei leidu teda'$PATH ega lisakataloogides.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10233"/> @@ -2129,7 +2137,7 @@ Kui Teie sftp-server on siiski juba installeeritud, palun teavitage sellisest ve <message> <location filename="../../src/onmainwindow.cpp" line="10528"/> <source>%1 public host key file empty.</source> - <translation>%1 public host key on tühi.</translation> + <translation>%1 public host key on tühi.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12145"/> @@ -2153,7 +2161,8 @@ If you see this message, please report a bug on: </source> <translation>Tavaliselt seda ei tohiks juhtuda kuna Windowsi X2Go Clientomab oma SSH serverit. -Kui Te näete seda teadet, teavitage palun:</translation> +Kui Te näete seda teadet, teavitage palun: +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12154"/> @@ -2163,14 +2172,16 @@ Please report a bug on: </source> <translation>SSH server ei käivitunud. -Palun teata veast:</translation> +Palun teata veast: +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12158"/> <location filename="../../src/onmainwindow.cpp" line="12190"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center></translation> + <translation><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12180"/> @@ -2180,7 +2191,8 @@ If you see this message, please report a bug on: </source> <translation>Tavaliselt seda ei tohiks juhtuda kuna Windowsi X2Go Clientomab oma SSH serverit ja genereerib automaatselt vajalikud võtmed. -Kui Te näete seda teadet, teavitage palun:</translation> +Kui Te näete seda teadet, teavitage palun: +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12186"/> @@ -2190,7 +2202,8 @@ Please report a bug on: </source> <translation>X2Go Client ei suuda luua SSH host võtmeid. -Palun teata veast:</translation> +Palun teata veast: +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12218"/> @@ -2349,8 +2362,9 @@ See on nüüd:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8444"/> + <comment>Will be shown in the GUI help dialog - are you sure you want to leave that untranslated?</comment> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] - <translation><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.o [...] + <translation type="unfinished"></translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8458"/> @@ -2367,7 +2381,7 @@ See on nüüd:</translation> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation>Kontrolli kas "scdaemon" toetav lisamoodul on paigaldatud. -Otsimiste on:</translation> +Otsimiste on: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8791"/> @@ -2377,8 +2391,7 @@ Otsimiste on:</translation> <message> <location filename="../../src/onmainwindow.cpp" line="8801"/> <source>Unable to read from scdaemon.</source> - <translation>Ei suuda lugeda scdaemon'ist. -</translation> + <translation>Ei suuda lugeda scdaemon'ist.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8837"/> @@ -2396,21 +2409,22 @@ Otsimiste on:</translation> <location filename="../../src/onmainwindow.cpp" line="9960"/> <source>Can't start X.Org Server. Please check your installation.</source> - <translation>Ei suuda käivitada X Org Serverit + <translation>Ei suuda käivitada X.Org Serverit. Palun kontrolli oma installeeringut.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9423"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> - <translation>Serveril puudub SSH tunneli kaudu failisüsteemi eksportimise tug.i + <translation>Serveril puudub SSH tunneli kaudu failisüsteemi eksportimise tugi. Palun uuenda x2goserverit.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9448"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> - <translation>Ei suuda luua SSH tunnelit failide jagamiseks või pronteri jagamiseks:</translation> + <translation>Ei suuda luua SSH tunnelit failide jagamiseks või pronteri jagamiseks: +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9477"/> @@ -2432,14 +2446,16 @@ Palun uuenda x2goserverit.</translation> <message> <location filename="../../src/onmainwindow.cpp" line="11740"/> <source>Applications ...</source> - <translation>Rakendused...</translation> + <translation>Rakendused ...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12143"/> <source>SSH daemon could not be started. </source> - <translation>SSH daemoni ei suudeta käivitada.</translation> + <translation>SSH daemoni ei suudeta käivitada. + +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12161"/> @@ -3166,7 +3182,7 @@ võid installeerida selle kasutades käsku <message> <location filename="../../src/ui/printdialog.ui" line="18"/> <source>Print - X2Go Client</source> - <translation>Printimine - X2GoClient</translation> + <translation>Printimine - X2Go Client</translation> </message> <message> <location filename="../../src/printdialog.cpp" line="31"/> @@ -3176,12 +3192,12 @@ võid installeerida selle kasutades käsku <message> <location filename="../../src/printdialog.cpp" line="61"/> <source>You've deactivated the X2Go Client printing dialog.</source> - <translation>Sa oled keelanud x2goClient-rakenduses printimistoimingu.</translation> + <translation>Sa oled keelanud X2Go Client-rakenduses printimistoimingu.</translation> </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> - <translation>Sa võid selle dialoogi uuesti taastada x2goClient-Seadete menüüs. Kasuta menüüs: Valikud -> Seaded)</translation> + <translation>Sa võid selle dialoogi uuesti taastada X2Go Client-Seadete menüüs. Kasuta menüüs: Valikud -> Seaded)</translation> </message> <message> <source>You've deactivated the x2go client printing dialog.</source> @@ -3413,15 +3429,17 @@ Näiteks: </message> <message> <location filename="../../src/pulsemanager.cpp" line="259"/> + <comment>Missing at least the upstream Linux packages part, really also "bundled" and "pre-compiled". If the package came from anywhere else, downstream developers are responsible for it...</comment> <source>Sound support will not be available. If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Heli ei ole võimalik. + <translation type="unfinished">Heli ei ole võimalik. -Kui laadisid alla ametlikult kodulehelt siis palun teavita:: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center></translation> +Kui laadisid alla ametlikult kodulehelt siis palun teavita: +<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> +</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="407"/> @@ -3443,18 +3461,21 @@ Kui laadisid alla ametlikult kodulehelt siis palun teavita:: </message> <message> <location filename="../../src/pulsemanager.cpp" line="433"/> + <comment>I've changed this to "peamises keskmises versiooninumbris" from the original "peamises.keskmises.versiooninumbris"; please make sure it's correct.</comment> <source>Unexpected character found when parsing version string for minor version number</source> - <translation>Tundmatu sümbol peamises.keskmises.versiooninumbris</translation> + <translation type="unfinished">Tundmatu sümbol peamises keskmises versiooninumbris</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="451"/> + <comment>I've changed this to "tagumises versiooninumbris" from the original "tagumises.versiooninumbris"; please make sure it's correct.</comment> <source>Unexpected character found when parsing version string for micro version number</source> - <translation>Tundmatu sümbol tagumises.versiooninumbris</translation> + <translation type="unfinished">Tundmatu sümbol tagumises versiooninumbris</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="466"/> + <comment>I've changed this to "peamise versiooninumbri" from the original "peamise.versiooninumbri"; please make sure it's correct.</comment> <source>Supposed to skip major version number. Something is wrong.</source> - <translation>Pean vahele jätma peamise.versiooninumbri. Midagi on valesti.</translation> + <translation type="unfinished">Pean vahele jätma peamise versiooninumbri. Midagi on valesti.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="480"/> @@ -3488,10 +3509,11 @@ Kui laadisid alla ametlikult kodulehelt siis palun teavita:: </message> <message> <location filename="../../src/pulsemanager.cpp" line="766"/> + <comment>Missing at least the upstream Linux packages part, really also "bundled" and "pre-compiled". If the package came from anywhere else, downstream developers are responsible for it...</comment> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: + <translation type="unfinished">Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> @@ -3533,13 +3555,14 @@ siis palun määra selle asukoht kohe avanevas dialoogiaknas. Juhindu näidistest, Kui sa ei oska ise seda täpselt öelda. -Kui sul veel <b>pole</b> installitud XQuartz , siis palun +Kui sul veel <b>pole</b> installitud XQuartz, siis palun järgi järgmist: </translation> </message> <message> <location filename="../../src/x2goutils.cpp" line="192"/> + <comment>Yes, I know this is a huge string and that it's only relevant for OS X/macOS users, but since we support that platform we should also do our best effort in providing translations.</comment> <source>MacPorts users, please install either the port <b>xorg-server</b> or the port <b>xorg-server-devel</b>. Upon successful installation, please follow the instructions printed @@ -3554,21 +3577,7 @@ This will most likely be <center><b>/Applications/MacPorts/X11.app</b></center> or <center><b>/Applications/Utilities/XQuartz.app</b></center></source> - <translation>Pikk jutt McPorts kasutajatele: -MacPorts users, please install either the port <b>xorg-server</b> -or the port <b>xorg-server-devel</b>. -Upon successful installation, please follow the instructions printed -by the port utility to autostart/load the server. - -All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> - -Afterwards, restart X2Go Client and select the correct path -to the X11 application in the general X2Go Client settings. -This will most likely be -<center><b>/Applications/MacPorts/X11.app</b></center> -or -<center><b>/Applications/Utilities/XQuartz.app</b></center></translation> + <translation type="unfinished"></translation> </message> </context> <context> @@ -3736,9 +3745,9 @@ Kasuta x2goclient programmi peidetuna? </translation> <source>Desktop icons can be configured not to show X2Go Client (hidden mode.) If you like to use this feature you'll need to configure login via a GPG key or GPG Smart Card. Use X2Go Client's hidden mode?</source> - <translation>Töölauaikoonid võib sättida peitma x2goclient rakendust (hidden mode). Kui sa tahad seda võimalust kasutada siis säti login kasutama gpg-võtit või gpg -kaarti. + <translation>Töölauaikoonid võib sättida peitma x2goclient rakendust (hidden mode). Kui sa tahad seda võimalust kasutada siis säti login kasutama GPG-võtit või GPG-kaarti. -Kasuta x2goclient programmi peidetuna? </translation> +Kasuta X2Go Client programmi peidetuna?</translation> </message> <message> <location filename="../../src/sessionexplorer.cpp" line="150"/> @@ -3907,7 +3916,7 @@ Kasuta x2goclient programmi peidetuna? </translation> <message> <location filename="../../src/sessionwidget.cpp" line="171"/> <source>SSH Agent or default SSH key</source> - <translation>SSH-agent või vaikimisi -SSH-võti</translation> + <translation>SSH-agent või vaikimisi-SSH-võti</translation> </message> <message> <location filename="../../src/sessionwidget.cpp" line="216"/> @@ -4172,7 +4181,7 @@ Kasuta x2goclient programmi peidetuna? </translation> <message> <location filename="../../src/settingswidget.cpp" line="204"/> <source>RDP client</source> - <translation>RDP -klient</translation> + <translation>RDP-klient</translation> </message> <message> <source>Auto detect keyboard settings</source> @@ -4408,13 +4417,15 @@ sound system connections through firewalls</source> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <comment>I've changed "GSSA" back to "GSSApi" here - what was the reason for this change? Is it really called like that in Estonian? If yes, we'll have to revert.</comment> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> - <translation>Ei õnnestu SSH kliendiprogrammi käivitamine. Palun kontrolli oma installeerimist ja GSSA konfiguratsiooni.</translation> + <translation type="unfinished">Ei õnnestu SSH kliendiprogrammi käivitamine. Palun kontrolli oma installeerimist ja GSSApi konfiguratsiooni.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <comment>I've changed "GSSA" back to "GSSApi" here - what was the reason for this change? Is it really called like that in Estonian? If yes, we'll have to revert.</comment> <source>Check your GSSApi configuration or choose another authentication method.</source> - <translation>Kontrolli oma GSSA konfiguratsiooni või vali mõni muu atentimismeetod.</translation> + <translation type="unfinished">Kontrolli oma GSSApi konfiguratsiooni või vali mõni muu atentimismeetod.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1378"/> -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 483f036ea195ec46ab61d947c90da24a5061d228 Author: Robert Parts <parts@neti.ee> Date: Fri Feb 24 09:00:33 2017 +0100 res/i18n/x2goclient_et.ts: update Estonian translation file. --- debian/changelog | 4 + res/i18n/x2goclient_et.ts | 575 ++++++++++++++++++++++++++-------------------- 2 files changed, 332 insertions(+), 247 deletions(-) diff --git a/debian/changelog b/debian/changelog index a678c1a..f535e60 100644 --- a/debian/changelog +++ b/debian/changelog @@ -83,6 +83,10 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium * New upstream version (4.1.0.1): - Add "direct XDMCP" functionality. + [ Robert Parts ] + * New upstream version (4.1.0.1): + - res/i18n/x2goclient_et.ts: update Estonian translation file. + -- X2Go Release Manager <git-admin@x2go.org> Wed, 22 Feb 2017 07:13:10 +0100 x2goclient (4.1.0.0-0x2go1) unstable; urgency=medium diff --git a/res/i18n/x2goclient_et.ts b/res/i18n/x2goclient_et.ts index 93b19de..8f82420 100644 --- a/res/i18n/x2goclient_et.ts +++ b/res/i18n/x2goclient_et.ts @@ -193,12 +193,12 @@ <message> <location filename="../../src/cupsprintersettingsdialog.cpp" line="272"/> <source>This value is in conflict with another option.</source> - <translation type="unfinished"></translation> + <translation>See väärtus on konfliktis teiste väärtustega.</translation> </message> <message> <location filename="../../src/cupsprintersettingsdialog.cpp" line="282"/> <source>Options conflict.</source> - <translation type="unfinished"></translation> + <translation>Seadete konflikt.</translation> </message> <message> <source>This value is in conflict with other option</source> @@ -251,7 +251,7 @@ <message> <location filename="../../src/contest.cpp" line="148"/> <source>Socket operation timed out.</source> - <translation type="unfinished"></translation> + <translation>Socket operatsioon "Time Out".</translation> </message> <message> <source>Socket operation timed out</source> @@ -325,27 +325,27 @@ <location filename="../../src/configdialog.cpp" line="207"/> <location filename="../../src/configdialog.cpp" line="337"/> <source>X.Org Server settings</source> - <translation type="unfinished"></translation> + <translation>X.Org Serveri seaded</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="342"/> <source>PulseAudio settings</source> - <translation type="unfinished"></translation> + <translation>"PulseAusio" seaded</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="344"/> <source>Disable sound input</source> - <translation type="unfinished"></translation> + <translation>Keela heli väljund</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="548"/> <source>Your XQuartz version is too old.</source> - <translation type="unfinished"></translation> + <translation>Sinu "XQuartz" versioon on liiga vana.</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation type="unfinished"></translation> + <translation>Sa kasutad XQuartz (X Window System for OS X) versiooni </translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> @@ -360,12 +360,23 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: <center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation type="unfinished"></translation> + <translation> + +See versioon põhjustab probleeme X aplikatsioonides 24 biti +värviesitus reziimis. +Sa peaksid värskendama oma X11 taristut ;-) + +MacPorts kasutajad palun järgige alljärgnevaid juhiseid +<center><a href="https://guide.macports.org/chunked/using.common-tasks.html">https://guide.macports.org/chunked/using.common-tasks.html</a></center> + +Kasutajad kes installeerisid XQuartz'i kasutades 'installer package' +leiavad uuendatud versiooni: +<center><a href="https://xquartz.macosforge.org/\">https://xquartz.macosforge.org/</a></center></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="578"/> <source>No valid XQuartz application selected.</source> - <translation type="unfinished"></translation> + <translation>Ühtegi lubatud XQuartz programmi ei ole valitud.</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="579"/> @@ -376,7 +387,7 @@ Some standard installation locations may be: <center><b>/Applications/Utilities/X11.app</b></center> <center><b>/Applications/Utilities/XQuartz.app</b></center> <center><b>/Applications/MacPorts/X11.app</b></center></source> - <translation type="unfinished"></translation> + <translation></translation> </message> <message> <source>X-Server settings</source> @@ -466,12 +477,12 @@ Some standard installation locations may be: <message> <location filename="../../src/configdialog.cpp" line="625"/> <source>&Input/Output</source> - <translation type="unfinished"></translation> + <translation>&Sisend/Väljund</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="626"/> <source>&Media</source> - <translation type="unfinished"></translation> + <translation>&Media</translation> </message> <message> <source>&Settings</source> @@ -599,12 +610,12 @@ Some standard installation locations may be: <message> <location filename="../../src/editconnectiondialog.cpp" line="61"/> <source>&Input/Output</source> - <translation type="unfinished"></translation> + <translation>&Sisend/Väljund</translation> </message> <message> <location filename="../../src/editconnectiondialog.cpp" line="62"/> <source>&Media</source> - <translation type="unfinished"></translation> + <translation>&Media</translation> </message> <message> <location filename="../../src/editconnectiondialog.cpp" line="64"/> @@ -663,7 +674,7 @@ Some standard installation locations may be: <message> <location filename="../../src/exportdialog.cpp" line="85"/> <source>Share Folders</source> - <translation type="unfinished"></translation> + <translation>Jaga katalooge</translation> </message> <message> <source>share folders</source> @@ -710,17 +721,17 @@ Some standard installation locations may be: <message> <location filename="../../src/folderexplorer.cpp" line="81"/> <source>Rename Folder ...</source> - <translation type="unfinished"></translation> + <translation></translation> </message> <message> <location filename="../../src/folderexplorer.cpp" line="82"/> <source>Change Icon ...</source> - <translation type="unfinished"></translation> + <translation>Vaheta ikooni ...</translation> </message> <message> <location filename="../../src/folderexplorer.cpp" line="83"/> <source>Delete Folder ...</source> - <translation type="unfinished"></translation> + <translation>Kustuta kataloog ...</translation> </message> <message> <location filename="../../src/folderexplorer.cpp" line="97"/> @@ -755,7 +766,7 @@ Some standard installation locations may be: <message> <location filename="../../src/folderexplorer.cpp" line="131"/> <source>". Folder is not empty. Please remove the contents of this directory and try again.</source> - <translation type="unfinished"></translation> + <translation>". Kataloog ei ole tühi. Palun eemalda kataloogi sisu ja proovi uuesti.</translation> </message> <message> <source>". Folder is not empty. Please remove content of folder and try again.</source> @@ -777,217 +788,217 @@ Some standard installation locations may be: <message> <location filename="../../src/help.cpp" line="98"/> <source>Shows this message.</source> - <translation type="unfinished"></translation> + <translation>Näitab sedasama teadet.</translation> </message> <message> <location filename="../../src/help.cpp" line="99"/> <source>Prints version information.</source> - <translation type="unfinished"></translation> + <translation>Näitab versiooni infot.</translation> </message> <message> <location filename="../../src/help.cpp" line="102"/> <source>Shows the changelog.</source> - <translation type="unfinished"></translation> + <translation>Näitab muudatusi.</translation> </message> <message> <location filename="../../src/help.cpp" line="106"/> <source>Shows git information as used at compile time. [Deprecated: please use --version.]</source> - <translation type="unfinished"></translation> + <translation>Näitab kompileerimisaegset 'git' infot. {Iganenud: palun kasuta --version.]</translation> </message> <message> <location filename="../../src/help.cpp" line="109"/> <source>Shows available pack methods.</source> - <translation type="unfinished"></translation> + <translation>Näitab võimalikke pakkimismeetodeid.</translation> </message> <message> <location filename="../../src/help.cpp" line="113"/> <source>Do not resume sessions automatically.</source> - <translation type="unfinished"></translation> + <translation>Ära jätka sessioone automaatselt.</translation> </message> <message> <location filename="../../src/help.cpp" line="114"/> <source>Hides menu bar.</source> - <translation type="unfinished"></translation> + <translation>Peidab menüüriba.</translation> </message> <message> <location filename="../../src/help.cpp" line="115"/> <source>Disables session editing.</source> - <translation type="unfinished"></translation> + <translation>Keelab sessiooni editeerimise.</translation> </message> <message> <location filename="../../src/help.cpp" line="116"/> <source>Starts maximized.</source> - <translation type="unfinished"></translation> + <translation>Käivitub minimiseeritult.</translation> </message> <message> <location filename="../../src/help.cpp" line="117"/> <source>Starts hidden (minimized to system tray where available.)</source> - <translation type="unfinished"></translation> + <translation>Käivitub peidetult (minimiseeritult tegumiribale kus võimalik)</translation> </message> <message> <location filename="../../src/help.cpp" line="118"/> <source>Starts in "portable" mode.</source> - <translation type="unfinished"></translation> + <translation>Käivitub "portable" reziimis.</translation> </message> <message> <location filename="../../src/help.cpp" line="119"/> <source>Forces OpenPGP smart card authentication.</source> - <translation type="unfinished"></translation> + <translation>Nõuab OpenPGP kaardiga audentimist.</translation> </message> <message> <location filename="../../src/help.cpp" line="120"/> <source>Enables Xinerama by default.</source> - <translation type="unfinished"></translation> + <translation>Lubab vaikimisi Xinerama.</translation> </message> <message> <location filename="../../src/help.cpp" line="121"/> <source>Allows client side printing in LDAP mode.</source> - <translation type="unfinished"></translation> + <translation>Lubab kliendipoolse printimise LDAP reziimis.</translation> </message> <message> <location filename="../../src/help.cpp" line="122"/> <source>Enables thinclient mode. Starts without a window manager.</source> - <translation type="unfinished"></translation> + <translation>Lubab 'õhukese' kliendi reziimi (thinclient mode). Alustab ima window manager'ita.</translation> </message> <message> <location filename="../../src/help.cpp" line="123"/> <source>Enables shutdown button.</source> - <translation type="unfinished"></translation> + <translation>Lubab 'Shut Down' nupu.</translation> </message> <message> <location filename="../../src/help.cpp" line="124"/> <source>Adds RSA key fingerprint to ".ssh/known_hosts" if authenticity of the server can't be determined.</source> - <translation type="unfinished"></translation> + <translation>Lisab RSA key sõrmejälje (fingerprint) \".ssh/known_hosts\" kui serveri audentsust ei ole võimalik määratleda.</translation> </message> <message> <location filename="../../src/help.cpp" line="125"/> <source>Starts with LDAP support. Example: --ldap=ldapserver:389:o=organization,c=de</source> - <translation type="unfinished"></translation> + <translation>Alustab LDAP toega. Näiteks : --ldap=ldapserver:389:o=organization,c=de</translation> </message> <message> <location filename="../../src/help.cpp" line="126"/> <source>Defines the first LDAP failover server.</source> - <translation type="unfinished"></translation> + <translation>Defineerib esimese LDAP tõrke serveri (failover server).</translation> </message> <message> <location filename="../../src/help.cpp" line="127"/> <source>Defines the second LDAP failover server.</source> - <translation type="unfinished"></translation> + <translation>Defineerib teise LDAP tõrke serveri (failover server).</translation> </message> <message> <location filename="../../src/help.cpp" line="128"/> <source>Defines the remote SSH server port. Default: 22.</source> - <translation type="unfinished"></translation> + <translation>Defineerib kaugarvuti SSH serveri pordi. Vaikimisi 22.</translation> </message> <message> <location filename="../../src/help.cpp" line="129"/> <source>Defines the local machine's SSH server port. Needed for Client-Side Printing and File Sharing support. Default: 22.</source> - <translation type="unfinished"></translation> + <translation>Defineerib lokaalse seadme SSH serveri pordi. Vajalik kliendipoolseks printimiseks ja failijagamisteenuse toetamiseks. Vaikimisi 22.</translation> </message> <message> <location filename="../../src/help.cpp" line="130"/> <source>Sets the default command. Default: 'KDE' (Desktop Session)</source> - <translation type="unfinished"></translation> + <translation>Asetab vaikimisi käsu. Vaikimisi: 'KDE' (Desktop Session)</translation> </message> <message> <location filename="../../src/help.cpp" line="131"/> <source>Starts the session named "session".</source> - <translation type="unfinished"></translation> + <translation>Alustab sessiooni nimega "session".</translation> </message> <message> <location filename="../../src/help.cpp" line="132"/> <source>Sets the user name for connecting to the remote SSH server to "username".</source> - <translation type="unfinished"></translation> + <translation>Määra kasutajatunnus ühendumiseks SH serveriga.</translation> </message> <message> <location filename="../../src/help.cpp" line="133"/> <source>Sets the default window geometry. Default: 800x600.</source> - <translation type="unfinished"></translation> + <translation>Määrab ekraani mõõtmed. Vaikimisi 800x600.</translation> </message> <message> <location filename="../../src/help.cpp" line="134"/> <source>Sets the remote X2Go Agent's DPI value to "dpi". Default: same as local display.</source> - <translation type="unfinished"></translation> + <translation>Määrab kaug X2Go Agendi DPI väärtuse. Vaikimisi sama mis lokaalsel dispeil.</translation> </message> <message> <location filename="../../src/help.cpp" line="135"/> <source>Sets the default link type. Default: "adsl".</source> - <translation type="unfinished"></translation> + <translation>Määrab ühenduse tüübi. Vaikimisi "adsl".</translation> </message> <message> <location filename="../../src/help.cpp" line="136"/> <source>Sets default pack method. Default: "16m-jpeg-9".</source> - <translation type="unfinished"></translation> + <translation>Sätestab vaikimisi pakkimismeetodi. Vaikimisi: "16m-jpeg-9".</translation> </message> <message> <location filename="../../src/help.cpp" line="137"/> <source>Sets the default clipboard mode. Default: "both".</source> - <translation type="unfinished"></translation> + <translation>Vaikimisi clipboard'i reziim. Vaikimisi 'mõlemad'.</translation> </message> <message> <location filename="../../src/help.cpp" line="138"/> <source>Sets the default keyboard layout to "layout". "layout" may be a comma-separated list.</source> - <translation type="unfinished"></translation> + <translation>Asetab klaviatuuri asetuse. Võib olla komadega eraldatud loetelu.</translation> </message> <message> <location filename="../../src/help.cpp" line="139"/> <source>Sets the default keyboard type.</source> - <translation type="unfinished"></translation> + <translation>Määrab klaviatuuri tüübi.</translation> </message> <message> <location filename="../../src/help.cpp" line="140"/> <source>Sets the user's home directory.</source> - <translation type="unfinished"></translation> + <translation>Määrab kasutaja kodukataloogi.</translation> </message> <message> <location filename="../../src/help.cpp" line="141"/> <source>Enables or disables overwriting the current keyboard settings.</source> - <translation type="unfinished"></translation> + <translation>Lubab või keelab klaviatuuri jooksvate seadete ülekirjutamise.</translation> </message> <message> <location filename="../../src/help.cpp" line="142"/> <source>Automatically launches the application(s) "app", "app2", ... on session start in Published Applications mode.</source> - <translation type="unfinished"></translation> + <translation>Käivitab automaatselt aplikatsioonid "app", "app2", ... sessiooni käivitumisel Aplikatsioonide reziimis.</translation> </message> <message> <location filename="../../src/help.cpp" line="143"/> <source>Defines an alternative session config file path.</source> - <translation type="unfinished"></translation> + <translation>Defineerib alternatiivse konfiguratsioonifaili.</translation> </message> <message> <location filename="../../src/help.cpp" line="144"/> <source>Force-enables session system tray icon.</source> - <translation type="unfinished"></translation> + <translation>Tekitab ikooni süsteemiribale.</translation> </message> <message> <location filename="../../src/help.cpp" line="145"/> <source>Automatically closes X2Go Client after a disconnect.</source> - <translation type="unfinished"></translation> + <translation>Suleb automaatselt X2Go cliendi pärast lahtiühendamist.</translation> </message> <message> <location filename="../../src/help.cpp" line="146"/> <source>Hides all Folder-Sharing-related options.</source> - <translation type="unfinished"></translation> + <translation>Peidab kõik failijagamisega seotud seaded.</translation> </message> <message> <location filename="../../src/help.cpp" line="147"/> <source>Sets the broker name to display in X2Go Client. This parameter is optional.</source> - <translation type="unfinished"></translation> + <translation>Sätestab brokeri väljanäidatava nime X2Go Cliendil. See parameeter ei ole kohustuslik.</translation> </message> <message> <location filename="../../src/help.cpp" line="154"/> <source>Sets the path to an SSH key to use for authentication against an SSH session broker. The client's behavior is undefined if this flag is used for non-SSH session brokers.</source> - <translation type="unfinished"></translation> + <translation>Määrb SSH võtme asukoht mida kasutada SSH sessiooni audentimisel SSH sessiooni brokeris. Kliendi käitumine ei ole määratud kui kasutatakse mitte SSH sessiooni brokeriga.</translation> </message> <message> <location filename="../../src/help.cpp" line="155"/> <source>Enables the use of the default SSH key or SSH agent for authentication against an SSH session broker. The client's behavior is undefined if this flag is used for non-SSH session brokers.</source> - <translation type="unfinished"></translation> + <translation>Lubab vaikimisi SSH võtme või SSH agendi kasutamistaudentimisel SSH sessiooni brokeriga. Kliendi käitumine on ettearvamatu kui seda kasutatakse koos mitte SSH sessiooni brokeriga.</translation> </message> <message> <location filename="../../src/help.cpp" line="156"/> <source>Does not ask for user credentials during session broker authentication. This can be useful if you are using an HTTP(S) session broker without authentication. If you run an HTTP(S) server without authentication, but with user-specific profiles, then put the user name into the broker URL (refer to --broker-url.) The user name then will be extracted from the broker URL and be sent to the session broker. The client's behavior is undefined if this flag is used for non-HTT [...] - <translation type="unfinished"></translation> + <translation>Ei hakka tõlkimagi. Katsu niisama aru saada järgnevast: "Does not ask for user credentials during session broker authentication. This can be useful if you are using an HTTP(S) session broker without authentication. If you run an HTTP(S) server without authentication, but with user-specific profiles, then put the user name into the broker URL (refer to --broker-url.) The user name then will be extracted from the broker URL and be sent to the session broker. The c [...] </message> </context> <context> @@ -1086,38 +1097,38 @@ Tema avaliku võtme 'hash' on:</translation> <message> <location filename="../../src/httpbrokerclient.cpp" line="131"/> <source>For security reasons, the connection attempt will be aborted.</source> - <translation type="unfinished"></translation> + <translation>Ühendus katkestatakse turvalisuse tõttu.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> - <translation type="unfinished"></translation> + <translation>Serveri võtit ei leitud, aga leidus muu võti. Mõni häkker võib olla vahetanud oletusvõtme üritades petta kaugkasutajat et viimane arvaks, et võtit veel ei ole.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="170"/> <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> - <translation type="unfinished"></translation> + <translation>Ei leidu tuntud võtmete faili (known_host). Kui kinnitad selle serveri võtme, moodustame automaatselt ka tuntud võtmete faili.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="179"/> <location filename="../../src/httpbrokerclient.cpp" line="189"/> <source>Host key verification failed.</source> - <translation type="unfinished"></translation> + <translation>Võtme kontroll ebaõnnestus.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="237"/> <source>Authentication failed.</source> - <translation type="unfinished"></translation> + <translation>Autentimine ebaõnnestus.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="404"/> <source>Login failed!<br>Please try again.</source> - <translation type="unfinished"></translation> + <translation>Sisselogimine ebaõnnestus!<br>Palun ürita uuesti.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="595"/> <source>Secure connection failed.</source> - <translation type="unfinished"></translation> + <translation>Turvalise ühenduse loomine ebaõnnestus.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="600"/> @@ -1245,21 +1256,23 @@ sound system connections through firewalls</source> <location filename="../../src/mediawidget.cpp" line="154"/> <location filename="../../src/mediawidget.cpp" line="174"/> <source>Deprecation Warning</source> - <translation type="unfinished"></translation> + <translation>Hoiatus see on iganenud - aegunud</translation> </message> <message> <location filename="../../src/mediawidget.cpp" line="155"/> <source>ARTS support is scheduled to be removed soon. Please upgrade to PulseAudio.</source> - <translation type="unfinished"></translation> + <translation>ARTS tugi on plaanis lähiajal eemaldada. +Palun uuenda kasutamaks PulseAudio-t.</translation> </message> <message> <location filename="../../src/mediawidget.cpp" line="175"/> <source>ESounD support is scheduled to be removed soon. Please upgrade to PulseAudio.</source> - <translation type="unfinished"></translation> + <translation>ESounD tugi on plaanis lähiajal eemaldada. +Palun uuenda kasutamaks PulseAudio-t.</translation> </message> </context> <context> @@ -1463,64 +1476,64 @@ Please upgrade to PulseAudio.</source> <message> <location filename="../../src/onmainwindow.cpp" line="61"/> <source>Starting X2Go Client...</source> - <translation type="unfinished"></translation> + <translation>X2Go Client käivitub...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="277"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> - <translation type="unfinished"></translation> + <translation>Käivitan x2goclient-i 'mobiilses' olekus... Andmekataloog on:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="409"/> <location filename="../../src/onmainwindow.cpp" line="8457"/> <source>About X2Go Client</source> - <translation type="unfinished"></translation> + <translation>Teave X2Go Client kohta</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="513"/> <source>Started X2Go Client.</source> - <translation type="unfinished"></translation> + <translation>X2Go klient on käivitatud.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="593"/> <location filename="../../src/onmainwindow.cpp" line="621"/> <source> found.</source> - <translation type="unfinished"></translation> + <translation>leitud.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="606"/> <source>English language requested, not loading translator.</source> - <translation type="unfinished"></translation> + <translation>Inglise keel on nõutud, translaatorit ei laeta. Imelik milleks siis see tõlge siin - kui ei laeta.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="627"/> <source>Non-fatal: can't load translator: </source> - <translation type="unfinished"></translation> + <translation>Ei suuda laadida translaatorit: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="628"/> <source>Trying to load language with lower preference, if existent.</source> - <translation type="unfinished"></translation> + <translation>Üritame laadida keelt.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="879"/> <source>Session management ...</source> - <translation type="unfinished"></translation> + <translation>Sessiooni haldamine ...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="890"/> <source>&Create session icon on desktop ...</source> - <translation type="unfinished"></translation> + <translation>&Tee sessiooni ikoon töölauale...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="899"/> <source>&Set broker password ...</source> - <translation type="unfinished"></translation> + <translation>&Anna 'broker'-i salasõna ...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="910"/> <source>&Connectivity test ...</source> - <translation type="unfinished"></translation> + <translation>&Ühenduvuse test...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="942"/> @@ -1692,42 +1705,42 @@ Please upgrade to PulseAudio.</source> <location filename="../../src/onmainwindow.cpp" line="1189"/> <location filename="../../src/onmainwindow.cpp" line="11747"/> <source>Share folder ...</source> - <translation type="unfinished"></translation> + <translation>Jaga kataloogi ...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="1219"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> - <translation type="unfinished"></translation> + <translation>Vasak hiire nupp peidab või taastab akna. Parem nupp näitab menüüd.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="1405"/> <source>Closing X2Go Client ...</source> - <translation type="unfinished"></translation> + <translation>Sulgen X2Go Client'i ...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="1570"/> <source>Finished X2Go Client closing hooks.</source> - <translation type="unfinished"></translation> + <translation>Lõpetanud X2Go klient suleb konksusid. ;-) .</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="1823"/> <source>Broker authentication failed!</source> - <translation type="unfinished"></translation> + <translation>Brokeri autentimine ebaõnnestus!</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="1907"/> <source>no X2Go Server found in LDAP </source> - <translation type="unfinished"></translation> + <translation>X2Go -serverit ei leia LDAP-st </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="2907"/> <source>Connection error: </source> - <translation type="unfinished"></translation> + <translation>Ühenduse viga: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="2976"/> <source>Couldn't find an SSH connection.</source> - <translation type="unfinished"></translation> + <translation>Ei leia SSH-ühendust.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3063"/> @@ -1736,7 +1749,10 @@ Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> - <translation type="unfinished"></translation> + <translation>See võib olla 'man-in-the-middle' rünnaku tunnus. +Tusvalisuse kaalutlustel on soovitatav katkestada ühendus. +Kas Sa soovid ühenduse katkestada? +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3067"/> @@ -1746,7 +1762,7 @@ Do you want to terminate the connection? <location filename="../../src/onmainwindow.cpp" line="3138"/> <location filename="../../src/onmainwindow.cpp" line="3150"/> <source>Host key verification failed.</source> - <translation type="unfinished"></translation> + <translation>Võtme kontroll ebaõnnestus.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> @@ -1754,17 +1770,20 @@ Do you want to terminate the connection? For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> - <translation type="unfinished"></translation> + <translation>Serveri võtit ei leitud, aga leidus muu võti. Mõni häkker võib olla vahetanud oletusvõtme üritades petta kaugkasutajat et viimane arvaks, et võtit ei ole +Turvalisuse kaalutlusel soovitame ühendus katkestada. +Kas Sa soovid ühenduse katkestada? +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3129"/> <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> - <translation type="unfinished"></translation> + <translation>Ei leidu tuntud võtmete faili (known_host). Kui kinnitad selle serveri võtme, moodustame automaatselt ka tuntud võtmete faili.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3182"/> <source>Authentication failed.</source> - <translation type="unfinished"></translation> + <translation>Autentimine ebaõnnestus.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3654"/> @@ -1778,12 +1797,13 @@ Do you want to terminate the connection? <location filename="../../src/onmainwindow.cpp" line="9365"/> <source><b>Connection failed.</b> </source> - <translation type="unfinished"></translation> + <translation><b>Ühendus ebaõnnestus</b> +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3889"/> <source>No server available.</source> - <translation type="unfinished"></translation> + <translation>Ühtegi serverit ei leidu.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3898"/> @@ -1791,75 +1811,76 @@ Do you want to terminate the connection? <location filename="../../src/onmainwindow.cpp" line="4817"/> <location filename="../../src/onmainwindow.cpp" line="4962"/> <source>Server not available.</source> - <translation type="unfinished"></translation> + <translation>Server pole kättesaadav.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="4598"/> <source>No accessible desktop found.</source> - <translation type="unfinished"></translation> + <translation>Ühtegi ligipääsetavat töölauda ei ledu.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="4728"/> <location filename="../../src/onmainwindow.cpp" line="4747"/> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation type="unfinished"></translation> + <translation>Su praegune värvieraldus on erinev kui x2go sessioonil. See võib põhjustada probleeme taasühendamisel ja enamusel juhtudest <b>ühendus kaob</b> ja sa pead alustama uuesti. On kindlasti soovitatav et sa muudaks oma ekraani värvieralduseks </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="4736"/> <location filename="../../src/onmainwindow.cpp" line="4755"/> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation type="unfinished"></translation> + <translation> bitid ja käivitaksid X-serveri uuesti enne kui Sa ühendud uuesti selle x2go sessiooniga<br>Kas soovid vaatamata sllele jätkata?</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5650"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> - <translation type="unfinished"></translation> + <translation>Ei suuda luua SSH tunnelit X2Go sessiooni (NX) käivitamiseks:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5680"/> <source>Unable to create SSH tunnel for audio data: </source> - <translation type="unfinished"></translation> + <translation>Ei suuda luua SSH tunnelit audio jaoks:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5806"/> <location filename="../../src/onmainwindow.cpp" line="8764"/> <source>failed to start.</source> - <translation type="unfinished"></translation> + <translation>käivitamine ebaõnnestus.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5807"/> <source>This likely means the binary is not available. The current search path is: </source> - <translation type="unfinished"></translation> + <translation>Ilmselt ei ole programm kättesaadav. +Otsitakse kataloogist: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5821"/> <source>returned a non-zero exit code or crashed otherwise.</source> - <translation type="unfinished"></translation> + <translation>saadi mittenulline lõpetuskood või programm lõpetas mingil muul põhjusel töö.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5822"/> <source>Execution failed, exit code was: </source> - <translation type="unfinished"></translation> + <translation>Käivitamine ebaõnnestus. Vea kood on: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5827"/> <source>didn't start up in time.</source> - <translation type="unfinished"></translation> + <translation>ei käivitunud mõistliku aja jooksul.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5828"/> <location filename="../../src/onmainwindow.cpp" line="8792"/> <source>This error shouldn't come up.</source> - <translation type="unfinished"></translation> + <translation>Sellist viga ei tohiks juhtuda.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5832"/> <location filename="../../src/onmainwindow.cpp" line="8796"/> <source>didn't accept a write operation.</source> - <translation type="unfinished"></translation> + <translation>ei lubanud kirjutamist.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5833"/> @@ -1867,24 +1888,25 @@ The current search path is: </source> <location filename="../../src/onmainwindow.cpp" line="8797"/> <location filename="../../src/onmainwindow.cpp" line="8802"/> <source>It is probably not running correctly or crashed in-between.</source> - <translation type="unfinished"></translation> + <translation>See ilmselt ei tööta enam korrektselt.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5837"/> <source>Unable to read from xmodmap.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda lugeda xmodmap'ist. +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5842"/> <location filename="../../src/onmainwindow.cpp" line="8806"/> <source>encountered an unknown error during start up or execution.</source> - <translation type="unfinished"></translation> + <translation>käivitamisel juhtus tundmatu viga.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5846"/> <location filename="../../src/onmainwindow.cpp" line="8810"/> <source>experienced an undefined error.</source> - <translation type="unfinished"></translation> + <translation>ilmnes tundmatu viga.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5855"/> @@ -1892,30 +1914,33 @@ The current search path is: </source> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> - <translation type="unfinished"></translation> + <translation>X2Go Client lõpetab töö. + +Teata veast <a href="http://wiki.x2go.org/doku.php/wiki:bugs">"bugs wiki page"</a>.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="5960"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> - <translation type="unfinished"></translation> + <translation>Proxy ei lõpetanud 3 sekundi jooksul. Proxy tapetakse.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="6002"/> <location filename="../../src/onmainwindow.cpp" line="9402"/> <source>Closing X2Go Client because it was started in hidden mode.</source> - <translation type="unfinished"></translation> + <translation>Sulen X2Go Cliendi kuna see oli käivitatud peidetud reziimis.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="6007"/> <location filename="../../src/onmainwindow.cpp" line="9407"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> - <translation type="unfinished"></translation> + <translation>Sulen X2Go Cliendi kuna oli antud --close-disconnect parameeter.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="6365"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> - <translation type="unfinished"></translation> + <translation>kas oled kindel et tahad sulgeda? +Avatud failid ei salvestu.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="6781"/> @@ -1923,100 +1948,101 @@ Unsaved documents will be lost.</source> <source><b>Connection failed.</b> : </source> - <translation type="unfinished"></translation> + <translation><b>Ühendus ebaõnnestus.</b> : +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7355"/> <location filename="../../src/onmainwindow.cpp" line="7366"/> <location filename="../../src/onmainwindow.cpp" line="7377"/> <source> (file does not exist)</source> - <translation type="unfinished"></translation> + <translation> (faili ei leidu)</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7404"/> <source> (directory does not exist)</source> - <translation type="unfinished"></translation> + <translation> (kataloogi ei leidu)</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7431"/> <source>Invalid value for parameter "--link".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--link".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7448"/> <source>Invalid value for parameter "--clipboard".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--clipboard".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7464"/> <source>Invalid value for parameter "--sound".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--sound".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7480"/> <location filename="../../src/onmainwindow.cpp" line="7490"/> <source>Invalid value for parameter "--geometry".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--geometry".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7507"/> <source>Invalid value for parameter "--set-kbd".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--set-kbd".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7523"/> <source>Invalid value for parameter "--ldap".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--ldap".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7544"/> <source>Invalid value for parameter "--ldap1".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--ldap1".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7563"/> <source>Invalid value for parameter "--ldap2".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--ldap2".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7617"/> <source>Invalid value for parameter "--pack".</source> - <translation type="unfinished"></translation> + <translation>Vale väärtus parameetril "--pack".</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8437"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> - <translation type="unfinished"></translation> + <translation><b>(C) 2005-2017 <b>tublid</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9499"/> <source>Unable to create or append to file: </source> - <translation type="unfinished"></translation> + <translation>Ei suuda luua ega lisada faili: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9519"/> <source>Unable to change the permissions of file: </source> - <translation type="unfinished"></translation> + <translation>Ei suuda muuta õigusi failile: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9520"/> <source>This is an error because sshd would deny such a file.</source> - <translation type="unfinished"></translation> + <translation>See on viga kuna sshd võib keelduda sellisest failist.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9537"/> <source>Unable to change the permissions of directory: </source> - <translation type="unfinished"></translation> + <translation>Ei suuda muuta õigusi kataloogile: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9538"/> <source>This is an error because sshd would deny such a directory.</source> - <translation type="unfinished"></translation> + <translation>See on viga kuna sshd võib keelduda sellisest kataloogist.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10232"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> + <translation>Ei leia sftp-server programmi.Seda kas ei ole või ei leidu teda'$PATH ega lisakataloogides.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10233"/> @@ -2025,17 +2051,21 @@ Unsaved documents will be lost.</source> If the sftp-server binary is installed on your system, please report a bug mentioning its path on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation type="unfinished"></translation> + <translation>Ku Te kasutate Linuxil baseeruvat operatsioonisüsteemi, paluge oma administraatorilt installida 'package containing the sftp-server binary'. Nendeks võivad olla: <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> sõltuval Teie süsteemist. + +Kui Teie sftp-server on siiski juba installeeritud, palun teavitage sellisest veast: +<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10275"/> <source>SSH key type selection error</source> - <translation type="unfinished"></translation> + <translation>SSH võtme tüübi valimise viga</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10276"/> <source>Unknown SSH key selected.</source> - <translation type="unfinished"></translation> + <translation>Valiti tundmatu SSH võti.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10278"/> @@ -2044,62 +2074,62 @@ If the sftp-server binary is installed on your system, please report a bug menti <location filename="../../src/onmainwindow.cpp" line="10441"/> <location filename="../../src/onmainwindow.cpp" line="10451"/> <source>Terminating application.</source> - <translation type="unfinished"></translation> + <translation>Programmi töö katkestamine.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10351"/> <source>SSH key base directory creation error</source> - <translation type="unfinished"></translation> + <translation>SSH võtme baaskataloogi loomise viga</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10352"/> <source>Unable to create SSH key base directory '%1'.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda luua SSH võtme baaskataloogi '%1'.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10430"/> <source>ssh-keygen launching error</source> - <translation type="unfinished"></translation> + <translation>ssh-keygen käivitamise viga</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10431"/> <source>Unable to start the ssh-keygen binary.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda käivitada ssh-keygen programmi.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10438"/> <source>ssh-keygen crashed</source> - <translation type="unfinished"></translation> + <translation>ssh-keygen jooksis kinni</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10439"/> <source>The ssh-keygen binary crashed.</source> - <translation type="unfinished"></translation> + <translation>Ssh-keygen jooksis kinni.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10446"/> <source>ssh-keygen program error</source> - <translation type="unfinished"></translation> + <translation>ssh-keygen programmi viga</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10447"/> <source>The ssh-keygen binary did not exit cleanly.</source> - <translation type="unfinished"></translation> + <translation>Ssh-keygen ei lõpetanud korrektselt.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10449"/> <source>It was probably called with unknown arguments.</source> - <translation type="unfinished"></translation> + <translation>Tundub et see oli käivitatud tundmatute parameetritega.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10508"/> <source>Unable to open newly generated %1 public host key file.</source> - <translation type="unfinished"></translation> + <translation>Ei õnnestu avada äsja genereeritud %1 avaliku võtme faili.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10528"/> <source>%1 public host key file empty.</source> - <translation type="unfinished"></translation> + <translation>%1 public host key on tühi.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12145"/> @@ -2109,7 +2139,11 @@ These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> </source> - <translation type="unfinished"></translation> + <translation>Sa oled aktiveerinud kaugprintimise või failide jagamise. +Need vajavad toimimiseks funktsioneerivat SSH serverit. +<b>Kaugprintimine ja failide jagamine keelatakse selles sessioonis.</b> + +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12149"/> @@ -2117,7 +2151,9 @@ These features require a running and functioning SSH server on your computer. If you see this message, please report a bug on: </source> - <translation type="unfinished"></translation> + <translation>Tavaliselt seda ei tohiks juhtuda kuna Windowsi X2Go Clientomab oma SSH serverit. + +Kui Te näete seda teadet, teavitage palun:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12154"/> @@ -2125,14 +2161,16 @@ If you see this message, please report a bug on: Please report a bug on: </source> - <translation type="unfinished"></translation> + <translation>SSH server ei käivitunud. + +Palun teata veast:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12158"/> <location filename="../../src/onmainwindow.cpp" line="12190"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation type="unfinished"></translation> + <translation><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center></translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12180"/> @@ -2140,7 +2178,9 @@ Please report a bug on: If you see this message, please report a bug on: </source> - <translation type="unfinished"></translation> + <translation>Tavaliselt seda ei tohiks juhtuda kuna Windowsi X2Go Clientomab oma SSH serverit ja genereerib automaatselt vajalikud võtmed. + +Kui Te näete seda teadet, teavitage palun:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12186"/> @@ -2148,13 +2188,16 @@ If you see this message, please report a bug on: Please report a bug on: </source> - <translation type="unfinished"></translation> + <translation>X2Go Client ei suuda luua SSH host võtmeid. + +Palun teata veast:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12218"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> - <translation type="unfinished"></translation> + <translation>SSH daemon ei suuda avada +rakenduse 'authorized_keys' faili.</translation> </message> <message> <source>Left mouse button to hide/restore - Right mouse button to display context menu</source> @@ -2276,74 +2319,76 @@ See on nüüd:</translation> <message> <location filename="../../src/onmainwindow.cpp" line="7652"/> <source>Available pack methods:</source> - <translation type="unfinished"></translation> + <translation>Võimalikud pakkimisviisid:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7674"/> <source>Pack Methods</source> - <translation type="unfinished"></translation> + <translation>Pakkimisviisid</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="7704"/> <location filename="../../src/onmainwindow.cpp" line="7714"/> <source>Option is not available in this build.</source> - <translation type="unfinished"></translation> + <translation>See parameeter ei ole selles versioonis võimalik.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8086"/> <source>Unable to create directory:</source> - <translation type="unfinished"></translation> + <translation>Ei suuda luua kataloogi:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10534"/> <source>Cannot open key: </source> - <translation type="unfinished"></translation> + <translation>Ei leia võtit: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8440"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> - <translation type="unfinished"></translation> + <translation><br>X2Go Plugin mode sai sponsoreeeritud <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a> poolt<br></translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8444"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] - <translation type="unfinished"></translation> + <translation><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.o [...] </message> <message> <location filename="../../src/onmainwindow.cpp" line="8458"/> <source><b>X2Go Client v. </source> - <translation type="unfinished"></translation> + <translation><b>X2Go Client v. </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8503"/> <source>Please check LDAP Settings.</source> - <translation type="unfinished"></translation> + <translation>Palun kontrolli LDAP-sätteid.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8765"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> - <translation type="unfinished"></translation> + <translation>Kontrolli kas "scdaemon" toetav lisamoodul on paigaldatud. +Otsimiste on:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8791"/> <source>didn't start yet.</source> - <translation type="unfinished"></translation> + <translation>ei ole veel käivitunud.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8801"/> <source>Unable to read from scdaemon.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda lugeda scdaemon'ist. +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8837"/> <source>No valid card found.</source> - <translation type="unfinished"></translation> + <translation>Ei leia toimivat kaarti.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="8893"/> <source>This card is unknown to the X2Go system.</source> - <translation type="unfinished"></translation> + <translation>X2Go ei tunne seda kaarti.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9221"/> @@ -2351,58 +2396,61 @@ The current search path is: </source> <location filename="../../src/onmainwindow.cpp" line="9960"/> <source>Can't start X.Org Server. Please check your installation.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda käivitada X Org Serverit +Palun kontrolli oma installeeringut.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9423"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> - <translation type="unfinished"></translation> + <translation>Serveril puudub SSH tunneli kaudu failisüsteemi eksportimise tug.i +Palun uuenda x2goserverit.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9448"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> - <translation type="unfinished"></translation> + <translation>Ei suuda luua SSH tunnelit failide jagamiseks või pronteri jagamiseks:</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="9477"/> <source>Unable to read: </source> - <translation type="unfinished"></translation> + <translation>Ei suuda lugeda: +</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="10886"/> <source>Error getting window geometry. (Did you close the window?)</source> - <translation type="unfinished"></translation> + <translation>Ei suuda määrata akna suurust. (Kas Te sulgesite akna?)</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="11369"/> <source>Invalid value for argument "speed"</source> - <translation type="unfinished"></translation> + <translation>"speed" argumendil on vale väärtus</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="11740"/> <source>Applications ...</source> - <translation type="unfinished"></translation> + <translation>Rakendused...</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12143"/> <source>SSH daemon could not be started. </source> - <translation type="unfinished"></translation> + <translation>SSH daemoni ei suudeta käivitada.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12161"/> <location filename="../../src/onmainwindow.cpp" line="12194"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> - <translation type="unfinished"></translation> + <translation>Sessioonis keelatud Kaugprintimine ja/või failide jagamine kirjutab selle üle.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12174"/> <source>SSH daemon failed to open its public host key.</source> - <translation type="unfinished"></translation> + <translation>SSH daemon ei suuda avada oma avalikku võtit.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="12206"/> @@ -3128,12 +3176,12 @@ võid installeerida selle kasutades käsku <message> <location filename="../../src/printdialog.cpp" line="61"/> <source>You've deactivated the X2Go Client printing dialog.</source> - <translation type="unfinished"></translation> + <translation>Sa oled keelanud x2goClient-rakenduses printimistoimingu.</translation> </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> - <translation type="unfinished"></translation> + <translation>Sa võid selle dialoogi uuesti taastada x2goClient-Seadete menüüs. Kasuta menüüs: Valikud -> Seaded)</translation> </message> <message> <source>You've deactivated the x2go client printing dialog.</source> @@ -3167,7 +3215,7 @@ võid installeerida selle kasutades käsku <location filename="../../src/printprocess.cpp" line="281"/> <location filename="../../src/printprocess.cpp" line="288"/> <source>Printing error.</source> - <translation type="unfinished"></translation> + <translation>Printimisel tuli viga.</translation> </message> <message> <source>Printing error</source> @@ -3250,7 +3298,7 @@ võid installeerida selle kasutades käsku <message> <location filename="../../src/printwidget.cpp" line="59"/> <source>Please configure your client side printing settings.<br><br>If you want to print the created file, you'll need an external application. Typically you can use <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>You can find further information <a href="http://www.x2go.org/index.php?id=49">here</a [...] - <translation type="unfinished"></translation> + <translation>Palun konfigureeri printeri seaded.<br><br>Kui tahad loodud faili printida siis vajad selleks eraldi programmi. Tavaliselt peaks selleks sobima <a hrer="http:pages.cs.wisc.edtu/~ghost/doc/GPL/index.htm">ghostprint</a> või <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Lisaks võid lugeda <a href="http://www.x2go.org/index.php?id=49">siit</a>.</translation> </message> </context> <context> @@ -3337,29 +3385,31 @@ Näiteks: <message> <location filename="../../src/pulsemanager.cpp" line="127"/> <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> + <translation>Ei leidu PulseAudio moodulit. Ei leidu ei $PATH ega ka lisakataloogidest.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="128"/> <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation type="unfinished"></translation> + <translation>Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: +<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> +</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="158"/> <source>Could not allocate buffer for getting current working directory!</source> - <translation type="unfinished"></translation> + <translation>Could not allocate buffer for getting current working directory!</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="170"/> <source>getcwd() failed!</source> - <translation type="unfinished"></translation> + <translation>getcwd() ebaõnnestus!</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="258"/> <source>PulseAudio failed to start!</source> - <translation type="unfinished"></translation> + <translation>"PulseAusio" käivitumine ebaõnnestus!</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="259"/> @@ -3368,7 +3418,10 @@ Näiteks: If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation type="unfinished"></translation> + <translation>Heli ei ole võimalik. + +Kui laadisid alla ametlikult kodulehelt siis palun teavita:: +<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center></translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="407"/> @@ -3381,64 +3434,66 @@ If you downloaded the bundled, pre-compiled version from the official home page, <location filename="../../src/pulsemanager.cpp" line="532"/> <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Error fetching PulseAudio version number!</source> - <translation type="unfinished"></translation> + <translation>Viga PulseAudio versiooninumbri leidmisel!</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="408"/> <source>Unexpected character found when parsing version string for major version number</source> - <translation type="unfinished"></translation> + <translation>Tundmatu sümbol versiooninumbris</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="433"/> <source>Unexpected character found when parsing version string for minor version number</source> - <translation type="unfinished"></translation> + <translation>Tundmatu sümbol peamises.keskmises.versiooninumbris</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="451"/> <source>Unexpected character found when parsing version string for micro version number</source> - <translation type="unfinished"></translation> + <translation>Tundmatu sümbol tagumises.versiooninumbris</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="466"/> <source>Supposed to skip major version number. Something is wrong.</source> - <translation type="unfinished"></translation> + <translation>Pean vahele jätma peamise.versiooninumbri. Midagi on valesti.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="480"/> <source>Unable to convert major version number string to integer.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda muuta peamist versiooninumbrit täisarvuks.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="498"/> <source>Unable to convert minor version number string to integer.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda muuta keskmist versiooninumbrit täisarvuks.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="512"/> <source>Unable to convert micro version number string to integer.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda muuta tagumist versiooninumbrit täisarvuks.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="533"/> <source>Unexpected format encountered.</source> - <translation type="unfinished"></translation> + <translation>Tundmatu formaat.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="541"/> <source>Unable to start PulseAudio binary.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda käivitada PulseAudio programmi.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="765"/> <source>Unable to play startup sound.</source> - <translation type="unfinished"></translation> + <translation>Ei suuda mängida alustusheli.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="766"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation type="unfinished"></translation> + <translation>Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: +<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> +</translation> </message> </context> <context> @@ -3451,12 +3506,12 @@ If you downloaded the bundled, pre-compiled version from the official home page, <message> <location filename="../../src/x2goutils.cpp" line="174"/> <source>X2Go Client could not find any suitable X11 server.</source> - <translation type="unfinished"></translation> + <translation>X2Go Client ei leidnud ühtegi sobivat X11-serverit.</translation> </message> <message> <location filename="../../src/x2goutils.cpp" line="179"/> <source>X2Go Client could not start X11 server.</source> - <translation type="unfinished"></translation> + <translation>X2Go Client ei suutnud käivitada X11-serverit.</translation> </message> <message> <location filename="../../src/x2goutils.cpp" line="180"/> @@ -3471,7 +3526,17 @@ Should you have <b>not</b> installed XQuartz yet, please follow the outlined steps: </source> - <translation type="unfinished"></translation> + <translation>X2Go Client vajab et XQuartz oleks installitud. + +Kui XQuartz on juba installitud, +siis palun määra selle asukoht kohe avanevas dialoogiaknas. +Juhindu näidistest, +Kui sa ei oska ise seda täpselt öelda. + +Kui sul veel <b>pole</b> installitud XQuartz , siis palun +järgi järgmist: + +</translation> </message> <message> <location filename="../../src/x2goutils.cpp" line="192"/> @@ -3489,7 +3554,21 @@ This will most likely be <center><b>/Applications/MacPorts/X11.app</b></center> or <center><b>/Applications/Utilities/XQuartz.app</b></center></source> - <translation type="unfinished"></translation> + <translation>Pikk jutt McPorts kasutajatele: +MacPorts users, please install either the port <b>xorg-server</b> +or the port <b>xorg-server-devel</b>. +Upon successful installation, please follow the instructions printed +by the port utility to autostart/load the server. + +All other users, please obtain and install XQuartz from: +<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> + +Afterwards, restart X2Go Client and select the correct path +to the X11 application in the general X2Go Client settings. +This will most likely be +<center><b>/Applications/MacPorts/X11.app</b></center> +or +<center><b>/Applications/Utilities/XQuartz.app</b></center></translation> </message> </context> <context> @@ -3505,12 +3584,12 @@ or <message> <location filename="../../src/sessionbutton.cpp" line="153"/> <source>Session preferences ...</source> - <translation type="unfinished"></translation> + <translation>Sessiooni omadused ...</translation> </message> <message> <location filename="../../src/sessionbutton.cpp" line="157"/> <source>Create session icon on desktop ...</source> - <translation type="unfinished"></translation> + <translation>Tee sessioonist ikoon töölauale ...</translation> </message> <message> <location filename="../../src/sessionbutton.cpp" line="162"/> @@ -3650,14 +3729,16 @@ Kasuta x2goclient programmi peidetuna? </translation> <message> <location filename="../../src/sessionexplorer.cpp" line="139"/> <source>Create session icon on desktop.</source> - <translation type="unfinished"></translation> + <translation>Loo sessiooni ikoon töölauale.</translation> </message> <message> <location filename="../../src/sessionexplorer.cpp" line="140"/> <source>Desktop icons can be configured not to show X2Go Client (hidden mode.) If you like to use this feature you'll need to configure login via a GPG key or GPG Smart Card. Use X2Go Client's hidden mode?</source> - <translation type="unfinished"></translation> + <translation>Töölauaikoonid võib sättida peitma x2goclient rakendust (hidden mode). Kui sa tahad seda võimalust kasutada siis säti login kasutama gpg-võtit või gpg -kaarti. + +Kasuta x2goclient programmi peidetuna? </translation> </message> <message> <location filename="../../src/sessionexplorer.cpp" line="150"/> @@ -3705,7 +3786,7 @@ Use X2Go Client's hidden mode?</source> <message> <location filename="../../src/sessionmanagedialog.cpp" line="59"/> <source>&Create session icon on desktop ...</source> - <translation type="unfinished"></translation> + <translation>&Tee sessiooni ikoon töölauale ...</translation> </message> <message> <source>&Create session icon on desktop...</source> @@ -3775,7 +3856,7 @@ Use X2Go Client's hidden mode?</source> <message> <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Try auto login (via SSH Agent or default SSH key)</source> - <translation type="unfinished"></translation> + <translation>Ürita automaatset sisselogimist (SSH-agenti või vaikimisi SSH võtit kasutades)</translation> </message> <message> <location filename="../../src/sessionwidget.cpp" line="141"/> @@ -3826,24 +3907,24 @@ Use X2Go Client's hidden mode?</source> <message> <location filename="../../src/sessionwidget.cpp" line="171"/> <source>SSH Agent or default SSH key</source> - <translation type="unfinished"></translation> + <translation>SSH-agent või vaikimisi -SSH-võti</translation> </message> <message> <location filename="../../src/sessionwidget.cpp" line="216"/> <location filename="../../src/sessionwidget.cpp" line="519"/> <source>Connect to Windows Terminal Server</source> - <translation type="unfinished"></translation> + <translation>Loo ühendus Windows terminal serveriga</translation> </message> <message> <location filename="../../src/sessionwidget.cpp" line="247"/> <source>Direct RDP connection</source> - <translation type="unfinished"></translation> + <translation>Otsene RDP ühendus</translation> </message> <message> <location filename="../../src/sessionwidget.cpp" line="328"/> <location filename="../../src/sessionwidget.cpp" line="443"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> - <translation type="unfinished"></translation> + <translation>X2Go Client-rakendus töötab 'mobiilses' viisis. Kasuta oma usb-seadme asukohamäärangut et pääseksid oma andmetele ligi ükskõik kus sa ka poleks.</translation> </message> <message> <source>ssh-agent or default ssh key</source> @@ -4006,7 +4087,7 @@ Use X2Go Client's hidden mode?</source> <message> <location filename="../../src/settingswidget.cpp" line="50"/> <source>&Clipboard mode</source> - <translation type="unfinished"></translation> + <translation>&Clipboard režiim</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="62"/> @@ -4086,12 +4167,12 @@ Use X2Go Client's hidden mode?</source> <message> <location filename="../../src/settingswidget.cpp" line="168"/> <source>Auto-detect keyboard settings</source> - <translation type="unfinished"></translation> + <translation>Määra klaviatuuri parameetrid automaatselt</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="204"/> <source>RDP client</source> - <translation type="unfinished"></translation> + <translation>RDP -klient</translation> </message> <message> <source>Auto detect keyboard settings</source> @@ -4244,12 +4325,12 @@ sound system connections through firewalls</source> <message> <location filename="../../src/sharewidget.cpp" line="101"/> <source>Use SSH port forwarding to tunnel file system connections through firewalls</source> - <translation type="unfinished"></translation> + <translation>Kasuta ssh-ühendust tulemüüride läbimiseks</translation> </message> <message> <location filename="../../src/sharewidget.cpp" line="176"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> - <translation type="unfinished"></translation> + <translation>X2Go Client-rakendus töötab 'mobiilses' viisis. Kasuta oma usb-seadme asukohamäärangut et pääseksid oma andmetele ligi ükskõik kus sa ka poleks.</translation> </message> <message> <source>Use ssh port forwarding to tunnel file system connections through firewalls</source> @@ -4291,7 +4372,7 @@ sound system connections through firewalls</source> <message> <location filename="../../src/sshmasterconnection.cpp" line="412"/> <source>SSH proxy connection error.</source> - <translation type="unfinished"></translation> + <translation>SSH vaheserveriga ühendumise viga.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="417"/> @@ -4302,83 +4383,83 @@ sound system connections through firewalls</source> <message> <location filename="../../src/sshmasterconnection.cpp" line="439"/> <source>Failed to create SSH proxy tunnel.</source> - <translation type="unfinished"></translation> + <translation>Viga SSH vaheserveri ühenduse loomisel.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="492"/> <source>Cannot initialize libssh.</source> - <translation type="unfinished"></translation> + <translation>Libssh-teegi initsialiseerimise viga.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="520"/> <source>Cannot create SSH session.</source> - <translation type="unfinished"></translation> + <translation>SSH-sessiooni loomine ei õnnestu.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="555"/> <source>Cannot connect to proxy server.</source> - <translation type="unfinished"></translation> + <translation>Vaheserveriga ühendumise viga.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="686"/> <location filename="../../src/sshmasterconnection.cpp" line="932"/> <source>Authentication failed.</source> - <translation type="unfinished"></translation> + <translation>Autentimine ebaõnnestus.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1250"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> - <translation type="unfinished"></translation> + <translation>Ei õnnestu SSH kliendiprogrammi käivitamine. Palun kontrolli oma installeerimist ja GSSA konfiguratsiooni.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1276"/> <source>Check your GSSApi configuration or choose another authentication method.</source> - <translation type="unfinished"></translation> + <translation>Kontrolli oma GSSA konfiguratsiooni või vali mõni muu atentimismeetod.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1378"/> <source>Cannot open file </source> - <translation type="unfinished"></translation> + <translation>Ei saa avada faili </translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1390"/> <source>Cannot create remote file </source> - <translation type="unfinished"></translation> + <translation>Ei saa luua serverile faili </translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1405"/> <source>Cannot write to remote file </source> - <translation type="unfinished"></translation> + <translation>Ei suuda kirjutada serveri faili </translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1536"/> <source>channel_open_forward failed.</source> - <translation type="unfinished"></translation> + <translation>channel_open_forward ebaõnnestus.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1557"/> <source>channel_open_session failed.</source> - <translation type="unfinished"></translation> + <translation>channel_open_session ebaõnnestus.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1645"/> <source>Error writing to socket.</source> - <translation type="unfinished"></translation> + <translation>Viga socket'isse kirjutamisel.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1667"/> <source>Error reading channel.</source> - <translation type="unfinished"></translation> + <translation>Kanali lugemisviga.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1701"/> <source>channel_write failed.</source> - <translation type="unfinished"></translation> + <translation>channel_write ebaõnnestus.</translation> </message> <message> <location filename="../../src/sshmasterconnection.cpp" line="1717"/> <source>Error reading from TCP socket.</source> - <translation type="unfinished"></translation> + <translation>Viga TCP socket'ist lugemisel.</translation> </message> <message> <source>Failed to create SSH proxy tunnel</source> @@ -4473,7 +4554,7 @@ sound system connections through firewalls</source> <message> <location filename="../../src/sshprocess.cpp" line="127"/> <source>Error creating socket.</source> - <translation type="unfinished"></translation> + <translation>Viga socket'i loomisel.</translation> </message> <message> <location filename="../../src/sshprocess.cpp" line="145"/> @@ -4564,7 +4645,7 @@ sound system connections through firewalls</source> <message> <location filename="../../src/ui/xsettingsui.ui" line="169"/> <source>whole display:</source> - <translation type="unfinished"></translation> + <translation>kogu ekraan:</translation> </message> </context> </TS> -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit f26edb0f1d0e693d6ee98c467ca0b8bb730d163d Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 12:48:36 2017 +0100 res/i18n/x2goclient_*.ts: go the extra mile and fix up translation files manually after the "anothertype" fix in 8e503d89ee2d03a313c3deff11f0516fce503022. --- debian/changelog | 3 +++ res/i18n/x2goclient_da.ts | 4 ++-- res/i18n/x2goclient_de.ts | 4 ++-- res/i18n/x2goclient_es.ts | 4 ++-- res/i18n/x2goclient_et.ts | 4 ++-- res/i18n/x2goclient_fi.ts | 4 ++-- res/i18n/x2goclient_fr.ts | 4 ++-- res/i18n/x2goclient_nb_no.ts | 4 ++-- res/i18n/x2goclient_nl.ts | 4 ++-- res/i18n/x2goclient_pt.ts | 4 ++-- res/i18n/x2goclient_ru.ts | 4 ++-- res/i18n/x2goclient_sv.ts | 4 ++-- res/i18n/x2goclient_tr.ts | 4 ++-- res/i18n/x2goclient_zh_tw.ts | 4 ++-- 14 files changed, 29 insertions(+), 26 deletions(-) diff --git a/debian/changelog b/debian/changelog index e01d8ce..11a4946 100644 --- a/debian/changelog +++ b/debian/changelog @@ -80,6 +80,9 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium only available on Linux, so guard new section. - res/i18n/x2goclient_et.ts: various fixups for the Estonian translation file. + - res/i18n/x2goclient_*.ts: go the extra mile and fix up translation files + manually after the "anothertype" fix in + 8e503d89ee2d03a313c3deff11f0516fce503022. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/res/i18n/x2goclient_da.ts b/res/i18n/x2goclient_da.ts index 487e6a7..e50af37 100644 --- a/res/i18n/x2goclient_da.ts +++ b/res/i18n/x2goclient_da.ts @@ -1108,7 +1108,7 @@ offentlig nøgle hash: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation type="unfinished"></translation> </message> <message> @@ -2511,7 +2511,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_de.ts b/res/i18n/x2goclient_de.ts index e2b5081..aa7ea43 100644 --- a/res/i18n/x2goclient_de.ts +++ b/res/i18n/x2goclient_de.ts @@ -1499,7 +1499,7 @@ Public key hash: </source> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation>Der Host-Key des Servers konnte nicht gefunden werden, aber ein anderer Schlüsseltyp existiert. Ein Angreifer kann den Schlüssel verändert haben, um dem Client vorzutäuschen, dass der Schlüssel nicht existiert.</translation> </message> <message> @@ -2231,7 +2231,7 @@ Möchten Sie die Verbindung abbrechen? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_es.ts b/res/i18n/x2goclient_es.ts index 892f201..cfedb89 100644 --- a/res/i18n/x2goclient_es.ts +++ b/res/i18n/x2goclient_es.ts @@ -1133,7 +1133,7 @@ Hash de su clave pública: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation>La clave de equipo para esta servidor no se encontró o se encontró otro tipo. Un atacante podría haber cambiado la clave por defecto del servidor para engañar al cliente pensando que la clave no existe todavía.</translation> </message> <message> @@ -2554,7 +2554,7 @@ Por razones de seguridad se recomienda finalizar el intento de conexión. </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_et.ts b/res/i18n/x2goclient_et.ts index 4727b70..8ec1f04 100644 --- a/res/i18n/x2goclient_et.ts +++ b/res/i18n/x2goclient_et.ts @@ -1103,7 +1103,7 @@ Tema avaliku võtme 'hash' on:</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation>Serveri võtit ei leitud, aga leidus muu võti. Mõni häkker võib olla vahetanud oletusvõtme üritades petta kaugkasutajat et viimane arvaks, et võtit veel ei ole.</translation> </message> <message> @@ -1772,7 +1772,7 @@ Kas Sa soovid ühenduse katkestada? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_fi.ts b/res/i18n/x2goclient_fi.ts index 5bee0fb..9962acb 100644 --- a/res/i18n/x2goclient_fi.ts +++ b/res/i18n/x2goclient_fi.ts @@ -1122,7 +1122,7 @@ Julkinen avain: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation>Palvelimen tunnistusavainta ei löydy mutta toisenlainen löytyy. Hyökkääjä on ehkä vaihtanut oletusavaimen uskotallakseen asiakasohjelmallesi että avainta ei vielä ole.</translation> </message> <message> @@ -1795,7 +1795,7 @@ Halutako katkaista yhteyden? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_fr.ts b/res/i18n/x2goclient_fr.ts index dfb8161..0178687 100644 --- a/res/i18n/x2goclient_fr.ts +++ b/res/i18n/x2goclient_fr.ts @@ -975,7 +975,7 @@ Public key hash: </source> <translation>Par sécurité, la tentative de connexion va être abandonnée.</translation> </message> <message> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation>La clé d'hôte de ce serveur n'a pas été reconnue mais un autre type de clef existe. Un attaquant peut avoir changé la clé par défaut du serveur pour faire croire à votre client que la clé n'existe pas encore.</translation> </message> <message> @@ -1833,7 +1833,7 @@ Voulez vous mettre fin à la connexion ? <translation>La vérification de la clef d'hôte a échoué.</translation> </message> <message> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_nb_no.ts b/res/i18n/x2goclient_nb_no.ts index cd92e31..f05f65b 100644 --- a/res/i18n/x2goclient_nb_no.ts +++ b/res/i18n/x2goclient_nb_no.ts @@ -1006,7 +1006,7 @@ Offentlig nøkkel: </translation> <translation>Av hensyn til sikkerheten vil tilkoblingen bli stoppet.</translation> </message> <message> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation>Vertsnøkkelen for denne serveren ble ikke funnet, men en annen type av nøkkel eksisterer. En angriper kan ha endret standard servernøkkel for å lure klienten din til å tro at nøkkelen ikke finnes ennå.</translation> </message> <message> @@ -2289,7 +2289,7 @@ Vil du avbryte tilkoblingen? <translation>Verifiseringen av vertsnøkkelen feilet.</translation> </message> <message> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_nl.ts b/res/i18n/x2goclient_nl.ts index bf8dfe0..58215ee 100644 --- a/res/i18n/x2goclient_nl.ts +++ b/res/i18n/x2goclient_nl.ts @@ -1123,7 +1123,7 @@ Publieke sleutel hash: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation>De host sleutel voor deze server is niet gevonden maar een ander type sleutel is aanwezig. Een aanvaller heeft mogelijk de standaard serversleutel aangepast en wil uw client misleiden door deze te laten geloven dat de sleutel niet bestaat.</translation> </message> <message> @@ -1788,7 +1788,7 @@ Wilt u de verbinding verbreken?</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_pt.ts b/res/i18n/x2goclient_pt.ts index 8f0ff33..a4091d5 100644 --- a/res/i18n/x2goclient_pt.ts +++ b/res/i18n/x2goclient_pt.ts @@ -995,7 +995,7 @@ Public key hash: </source> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation type="unfinished"></translation> </message> <message> @@ -1610,7 +1610,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_ru.ts b/res/i18n/x2goclient_ru.ts index 58c4f99..f55a0ff 100644 --- a/res/i18n/x2goclient_ru.ts +++ b/res/i18n/x2goclient_ru.ts @@ -1478,7 +1478,7 @@ Public key hash: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation type="unfinished"></translation> </message> <message> @@ -2419,7 +2419,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_sv.ts b/res/i18n/x2goclient_sv.ts index b9afdd8..7a107b0 100644 --- a/res/i18n/x2goclient_sv.ts +++ b/res/i18n/x2goclient_sv.ts @@ -1136,7 +1136,7 @@ Publik nyckel: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation>Servernyckeln för denna server hittades inte men en annan typ av nyckel finns. En angripare kan ha ändrat servernyckel för att lura klienten att nyckeln inte ännu finns.</translation> </message> <message> @@ -1804,7 +1804,7 @@ Vill du avsluta anslutningen? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_tr.ts b/res/i18n/x2goclient_tr.ts index 50af0f0..d1ff332 100644 --- a/res/i18n/x2goclient_tr.ts +++ b/res/i18n/x2goclient_tr.ts @@ -1041,7 +1041,7 @@ Açık anahtar özeti: </translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation type="unfinished"></translation> </message> <message> @@ -1788,7 +1788,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> diff --git a/res/i18n/x2goclient_zh_tw.ts b/res/i18n/x2goclient_zh_tw.ts index c6d3f2b..af7240d 100644 --- a/res/i18n/x2goclient_zh_tw.ts +++ b/res/i18n/x2goclient_zh_tw.ts @@ -1077,7 +1077,7 @@ Public key hash: </source> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="144"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet.</source> <translation type="unfinished"></translation> </message> <message> @@ -2398,7 +2398,7 @@ Do you want to terminate the connection? </message> <message> <location filename="../../src/onmainwindow.cpp" line="3090"/> - <source>The host key for this server was not found but anothertype of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. + <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit b116007cae66b9397a3af1482d3cc8ad3034c45c Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 15:05:17 2017 +0100 {src/{configdialog,x2goutils}.cpp,res/i18n/x2goclient_*.ts}: change XQuartz project homepage references, adapt translations. --- debian/changelog | 2 ++ res/i18n/x2goclient_da.ts | 10 ++++------ res/i18n/x2goclient_de.ts | 20 ++++++++------------ res/i18n/x2goclient_es.ts | 20 ++++++++------------ res/i18n/x2goclient_et.ts | 18 +++++++----------- res/i18n/x2goclient_fi.ts | 20 ++++++++------------ res/i18n/x2goclient_fr.ts | 20 ++++++++------------ res/i18n/x2goclient_nb_no.ts | 20 ++++++++------------ res/i18n/x2goclient_nl.ts | 20 ++++++++------------ res/i18n/x2goclient_pt.ts | 10 ++++------ res/i18n/x2goclient_ru.ts | 10 ++++------ res/i18n/x2goclient_sv.ts | 16 +++++++--------- res/i18n/x2goclient_tr.ts | 10 ++++------ res/i18n/x2goclient_zh_tw.ts | 10 ++++------ src/configdialog.cpp | 11 +++++------ src/x2goutils.cpp | 4 ++-- 16 files changed, 91 insertions(+), 130 deletions(-) diff --git a/debian/changelog b/debian/changelog index 42246d1..3a77edd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -95,6 +95,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - src/onmainwindow.cpp: make the "not loading translator" message non-translatable, as it doesn't make a lot of sense to actually translate it. + - {src/{configdialog,x2goutils}.cpp,res/i18n/x2goclient_*.ts}: change + XQuartz project homepage references, adapt translations. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/res/i18n/x2goclient_da.ts b/res/i18n/x2goclient_da.ts index 046d73a..8f81727 100644 --- a/res/i18n/x2goclient_da.ts +++ b/res/i18n/x2goclient_da.ts @@ -341,14 +341,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -356,7 +354,7 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> <translation type="unfinished"></translation> </message> <message> @@ -3505,7 +3503,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. diff --git a/res/i18n/x2goclient_de.ts b/res/i18n/x2goclient_de.ts index fa86157..5c2223c 100644 --- a/res/i18n/x2goclient_de.ts +++ b/res/i18n/x2goclient_de.ts @@ -504,14 +504,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>Sie verwenden XQuartz (X-Window-System-Server für OS X) in der Version </translation> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> + <translation>Sie verwenden XQuartz (X-Window-System-Server für OS X) in der Version %1.</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -519,10 +517,8 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation>. - -Diese Version verursacht Probleme mit X-Anwendungen, wenn 24-Bit-Farbtiefe gesetzt sind. +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> + <translation>Diese Version verursacht Probleme mit X-Anwendungen, wenn 24-Bit-Farbtiefe gesetzt sind. Sie sollten Ihre X11-Umgebung aktualisieren. MacPorts-Benutzer gehen bitte gemäß der folgenden Anleitung vor: @@ -530,7 +526,7 @@ MacPorts-Benutzer gehen bitte gemäß der folgenden Anleitung vor: Benutzer, die XQuartz über das Installationspaket installiert haben, können aktualisierte Versionen hier herunterladen: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="578"/> @@ -4267,7 +4263,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. @@ -4281,7 +4277,7 @@ Nach erfolgreicher Installation befolgen Sie bitte die vom Port-Utility angezeigte Anleitung, um den Server automatisch zu laden und zu starten. Alle anderen Benutzer beziehen und installieren XQuartz bitte von: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Starten Sie anschließend X2GoClient neu, und wählen Sie den passenden Pfad zur X11-Anwendung in den allgemeinen X2GoClient-Einstellungen. diff --git a/res/i18n/x2goclient_es.ts b/res/i18n/x2goclient_es.ts index 33e8c2c..7a3a1db 100644 --- a/res/i18n/x2goclient_es.ts +++ b/res/i18n/x2goclient_es.ts @@ -360,14 +360,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>Estás usando la versión de XQuartz (Servidor X Window de OS X) </translation> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> + <translation>Estás usando la versión de XQuartz (Servidor X Window de OS X) %1.</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -375,10 +373,8 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation>. - -Esta versión causa problemas con aplicaciones X en modo de color de 24bits. +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> + <translation>Esta versión causa problemas con aplicaciones X en modo de color de 24bits. Deberías actualizar tu sistema X11. Los usuarios de MacPorts deben seguir las siguientes indicaciones: @@ -386,7 +382,7 @@ Los usuarios de MacPorts deben seguir las siguientes indicaciones: Los usuarios que han instalado XQuartz vía el paquete instalador pueden encontrar versiones acutlizadas: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="578"/> @@ -3762,7 +3758,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. @@ -3776,7 +3772,7 @@ Cuando se haya realizado la instalación con éxito debes seguir las instruccion mostradas por la utilidad del port para auto iniciar/cargar el servidor. Para el resto de usuarios, hay que descargar e instalar XQuartz desde: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Una vez hecho esto se debe reiniciar el cliente X2Go y elegir la ruta correcta hacia la aplicación X11 in los ajustes generales del cliente X2Go. diff --git a/res/i18n/x2goclient_et.ts b/res/i18n/x2goclient_et.ts index 7e72101..5c1e125 100644 --- a/res/i18n/x2goclient_et.ts +++ b/res/i18n/x2goclient_et.ts @@ -344,14 +344,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>Sa kasutad XQuartz (X Window System Server for OS X) versiooni </translation> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> + <translation>Sa kasutad XQuartz (X Window System Server for OS X) versiooni %1.</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -359,10 +357,8 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation>. - -See versioon põhjustab probleeme X aplikatsioonides 24 biti värviesitus reziimis. +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> + <translation>See versioon põhjustab probleeme X aplikatsioonides 24 biti värviesitus reziimis. Sa peaksid värskendama oma X11 taristut. MacPorts kasutajad palun järgige alljärgnevaid juhiseid: @@ -370,7 +366,7 @@ MacPorts kasutajad palun järgige alljärgnevaid juhiseid: Kasutajad kes installeerisid XQuartz'i kasutades 'installer package' leiavad uuendatud versiooni: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="578"/> @@ -3569,7 +3565,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. diff --git a/res/i18n/x2goclient_fi.ts b/res/i18n/x2goclient_fi.ts index 3834656..04ac924 100644 --- a/res/i18n/x2goclient_fi.ts +++ b/res/i18n/x2goclient_fi.ts @@ -360,14 +360,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>Käytät XQuartz (X Window System Server for OS X) versiota </translation> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> + <translation>Käytät XQuartz (X Window System Server for OS X) versiota %1.</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -375,10 +373,8 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation>. - -Tämä version aiheuttaa ongelmia X sovellusten kanssa 24 bitin moodissa. +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> + <translation>Tämä version aiheuttaa ongelmia X sovellusten kanssa 24 bitin moodissa. Sinun pitää päivitttää X11 ohjelmasi. MacPorts käyttäjät seuratkaa täältä löytyviä ohjeita: @@ -386,7 +382,7 @@ MacPorts käyttäjät seuratkaa täältä löytyviä ohjeita: Ne käyttäjät jotka ovat asentaneet XQuartz-ohjelman asennuspaketista voivat hakea tuoreen version täältä: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="578"/> @@ -3743,7 +3739,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. @@ -3757,7 +3753,7 @@ Kun asennus valmis, seuraa ohjeita jotka tulostuvat portilla joka käynnistää/lataa palvelimen. Kaikki muut käyttäjät, nouda ja asenna XQuartz täältä: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Seuraavaksi, käynnistä X2Go-asiakasohjelma ja valitse oikea polku jolla pääset X11-sovellukseen X2Go-ohjelman asetuksilla. diff --git a/res/i18n/x2goclient_fr.ts b/res/i18n/x2goclient_fr.ts index 5b64f4c..2894c49 100644 --- a/res/i18n/x2goclient_fr.ts +++ b/res/i18n/x2goclient_fr.ts @@ -369,13 +369,11 @@ <translation>La version de votre XQuartz est trop ancienne.</translation> </message> <message> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>Vous utilisez XQuartz (Serveur de Système X Window pour OS X) version </translation> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> + <translation>Vous utilisez XQuartz (Serveur de Système X Window pour OS X) version %1.</translation> </message> <message> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -383,10 +381,8 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation>. - -Cette version provoque des problèmes avec les applications X en mode couleur 24bit. +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> + <translation>Cette version provoque des problèmes avec les applications X en mode couleur 24bit. Vous devriez mettre à jour votre environnement X11. Utilisateurs de MacPorts, veuillez suivre les instructions sur : @@ -394,7 +390,7 @@ Utilisateurs de MacPorts, veuillez suivre les instructions sur : Les utilisateurs qui ont installé XQuartz par le paquet d'installation peuvent trouver des versions mises à jour sur : -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> <source>No valid XQuartz application selected.</source> @@ -2734,7 +2730,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. @@ -2751,7 +2747,7 @@ pour le démarrage et le chargement automatiques du serveur. Pour tous les autres utilisateurs : téléchargez et installez XQuartz à partir de : -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Puis redémarrez X2Go Client et spécifiez le chemin correct de l'application X11 dans les réglages dans les préférences générales de X2Go Client. diff --git a/res/i18n/x2goclient_nb_no.ts b/res/i18n/x2goclient_nb_no.ts index 14d632b..707ad82 100644 --- a/res/i18n/x2goclient_nb_no.ts +++ b/res/i18n/x2goclient_nb_no.ts @@ -370,13 +370,11 @@ <translation>Din XQuartz versjon er for gammel.</translation> </message> <message> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>Du benytter XQuartz (OS X X Window System Server) versjon </translation> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> + <translation>Du benytter XQuartz (OS X X Window System Server) versjon %1.</translation> </message> <message> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -384,10 +382,8 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation>. - -Denne versjonen lager problemer med X-program som kjører med 24bit fargemodus. +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> + <translation>Denne versjonen lager problemer med X-program som kjører med 24bit fargemodus. Du burde oppgradere ditt X11 oppsett. MacPorts brukere, vennligst følg denne beskrivelsen: @@ -395,7 +391,7 @@ MacPorts brukere, vennligst følg denne beskrivelsen: Brukere som har installert XQuartz via installasjonspakke kan finne oppdaterte versjoner på: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> <source>No valid XQuartz application selected.</source> @@ -3192,7 +3188,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. @@ -3206,7 +3202,7 @@ Etter installasjon, vennligst følg beskrivelsen som kommer fra port-verktøyet for å autostarte/starte serveren. Alle andre brukere henter XQuartz fra: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Etterpå, restart X2Go klienten og velg korrekt plassering for X11-programmet i X2Go sin generelle innstillinger. diff --git a/res/i18n/x2goclient_nl.ts b/res/i18n/x2goclient_nl.ts index f6023ea..31daae0 100644 --- a/res/i18n/x2goclient_nl.ts +++ b/res/i18n/x2goclient_nl.ts @@ -360,14 +360,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>U gebruikt de XQuartz (X-Window Server voor OS X) versie </translation> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> + <translation>U gebruikt de XQuartz (X-Window Server voor OS X) versie %1.</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -375,10 +373,8 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> - <translation>. - -Deze versie veroorzaakt problemen met X applicaties in 24bit kleuren modus. +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> + <translation>Deze versie veroorzaakt problemen met X applicaties in 24bit kleuren modus. U moet uw X11 omgeving updaten. MacPorts gebruikers kunnen de stappen doorlopen die beschreven zijn op: @@ -386,7 +382,7 @@ MacPorts gebruikers kunnen de stappen doorlopen die beschreven zijn op: Gebruikers die XQuartz geinstalleerd hebben via een installatie bestand kunnen de nieuwste versie downloaden via: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="578"/> @@ -3696,7 +3692,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. @@ -3710,7 +3706,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. diff --git a/res/i18n/x2goclient_pt.ts b/res/i18n/x2goclient_pt.ts index 262f3d1..fe4c1e4 100644 --- a/res/i18n/x2goclient_pt.ts +++ b/res/i18n/x2goclient_pt.ts @@ -322,14 +322,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -337,7 +335,7 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> <translation type="unfinished"></translation> </message> <message> @@ -2972,7 +2970,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. diff --git a/res/i18n/x2goclient_ru.ts b/res/i18n/x2goclient_ru.ts index 0434ebf..2b0b5ca 100644 --- a/res/i18n/x2goclient_ru.ts +++ b/res/i18n/x2goclient_ru.ts @@ -492,14 +492,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -507,7 +505,7 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> <translation type="unfinished"></translation> </message> <message> @@ -3927,7 +3925,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. diff --git a/res/i18n/x2goclient_sv.ts b/res/i18n/x2goclient_sv.ts index 9330a72..281c7cd 100644 --- a/res/i18n/x2goclient_sv.ts +++ b/res/i18n/x2goclient_sv.ts @@ -361,14 +361,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> - <translation>Du använder XQuartz (X Window System Server for OS X) version </translation> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> + <translation>Du använder XQuartz (X Window System Server for OS X) version %1.</translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -376,7 +374,7 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> <translation>. Denna version orsakar problem med X-applikationer i 24-bitars färg. @@ -387,7 +385,7 @@ MacPorts-användare, följ denna instruktion: Användare som har installera XQuartz via installationspaketet kan hitta uppdaterade versioner här: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></translation> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="578"/> @@ -3812,7 +3810,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. @@ -3826,7 +3824,7 @@ Var vänlig följ instruktionerna från port-verktyget för att autostarta servern. Alla andra användare, var vänlig hämta och installera XQuartz från: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Starta sedan om X2Go-klient och välj korrekt sökväg till X11-applikationen i inställningara för X2Go-klient. diff --git a/res/i18n/x2goclient_tr.ts b/res/i18n/x2goclient_tr.ts index 3625e3d..6267008 100644 --- a/res/i18n/x2goclient_tr.ts +++ b/res/i18n/x2goclient_tr.ts @@ -344,14 +344,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -359,7 +357,7 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> <translation type="unfinished"></translation> </message> <message> @@ -3474,7 +3472,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. diff --git a/res/i18n/x2goclient_zh_tw.ts b/res/i18n/x2goclient_zh_tw.ts index 2bea357..cdb1d1a 100644 --- a/res/i18n/x2goclient_zh_tw.ts +++ b/res/i18n/x2goclient_zh_tw.ts @@ -344,14 +344,12 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="549"/> - <source>Your are using XQuartz (X Window System Server for OS X) version </source> + <source>Your are using XQuartz (X Window System Server for OS X) version %1.</source> <translation type="unfinished"></translation> </message> <message> <location filename="../../src/configdialog.cpp" line="551"/> - <source>. - -This version causes problems with X applications in 24bit color mode. + <source>This version causes problems with X applications in 24bit color mode. You should update your X11 environment. MacPorts users please follow the steps outlined on: @@ -359,7 +357,7 @@ MacPorts users please follow the steps outlined on: Users who have installed XQuartz via the installer package can find updated versions on: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center></source> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></source> <translation type="unfinished"></translation> </message> <message> @@ -3345,7 +3343,7 @@ Upon successful installation, please follow the instructions printed by the port utility to autostart/load the server. All other users, please obtain and install XQuartz from: -<center><a href="https://xquartz.macosforge.org/">https://xquartz.macosforge.org/</a></center> +<center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center> Afterwards, restart X2Go Client and select the correct path to the X11 application in the general X2Go Client settings. diff --git a/src/configdialog.cpp b/src/configdialog.cpp index d44dd2d..991e030 100644 --- a/src/configdialog.cpp +++ b/src/configdialog.cpp @@ -546,10 +546,9 @@ void ConfigDialog::slot_findXDarwin () void ConfigDialog::printXDarwinVersionWarning (QString version) { show_RichText_WarningMsgBox (tr ("Your XQuartz version is too old."), - tr ("Your are using XQuartz (X Window System Server for OS X) version ") - + version + - tr (".\n\n" - "This version causes problems with X applications in 24bit " + tr ("Your are using XQuartz (X Window System Server for OS X) version %1.").arg (version) + + "\n\n" + + tr ("This version causes problems with X applications in 24bit " "color mode.\n" "You should update your X11 environment.\n\n" @@ -562,8 +561,8 @@ void ConfigDialog::printXDarwinVersionWarning (QString version) "Users who have installed XQuartz via the installer package\n" "can find updated versions on:\n" - "<center><a href=\"https://xquartz.macosforge.org/\">" - "https://xquartz.macosforge.org/" + "<center><a href=\"https://www.xquartz.org/\">" + "https://www.xquartz.org/" "</a></center>")); } diff --git a/src/x2goutils.cpp b/src/x2goutils.cpp index 79c0700..35a5992 100644 --- a/src/x2goutils.cpp +++ b/src/x2goutils.cpp @@ -196,8 +196,8 @@ void show_XQuartz_generic_error (const QString &main_error, const QString &addit "All other users, please obtain and install XQuartz from:\n" - "<center><a href=\"https://xquartz.macosforge.org/\">" - "https://xquartz.macosforge.org/" + "<center><a href=\"https://www.xquartz.org/\">" + "https://www.xquartz.org/" "</a></center>\n\n" "Afterwards, restart X2Go Client and select the correct path\n" -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 85056d923095f25859d8bc404d1869db6a1a6890 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 13:36:33 2017 +0100 {src/printdialog.cpp,res/i18n/x2goclient_*.ts}: drop spurious left-over parenthesis in warning message and adapt translations. --- debian/changelog | 2 ++ res/i18n/x2goclient_da.ts | 2 +- res/i18n/x2goclient_de.ts | 2 +- res/i18n/x2goclient_es.ts | 2 +- res/i18n/x2goclient_et.ts | 2 +- res/i18n/x2goclient_fi.ts | 2 +- res/i18n/x2goclient_fr.ts | 2 +- res/i18n/x2goclient_nb_no.ts | 3 ++- res/i18n/x2goclient_nl.ts | 5 +++-- res/i18n/x2goclient_pt.ts | 2 +- res/i18n/x2goclient_ru.ts | 2 +- res/i18n/x2goclient_sv.ts | 5 +++-- res/i18n/x2goclient_tr.ts | 2 +- res/i18n/x2goclient_zh_tw.ts | 2 +- src/printdialog.cpp | 4 ++-- 15 files changed, 22 insertions(+), 17 deletions(-) diff --git a/debian/changelog b/debian/changelog index e0603ef..a929815 100644 --- a/debian/changelog +++ b/debian/changelog @@ -90,6 +90,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium use correct plural forms in translations and split string up in a translation-friendly form. I'll leave translators to handle this beast, as languages are unique in the number of plural forms and the like. + - {src/printdialog.cpp,res/i18n/x2goclient_*.ts}: drop spurious left-over + parenthesis in warning message and adapt translations. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/res/i18n/x2goclient_da.ts b/res/i18n/x2goclient_da.ts index b4036cb..046d73a 100644 --- a/res/i18n/x2goclient_da.ts +++ b/res/i18n/x2goclient_da.ts @@ -3156,7 +3156,7 @@ du kan installere sshd med </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished"></translation> </message> <message> diff --git a/res/i18n/x2goclient_de.ts b/res/i18n/x2goclient_de.ts index d12f045..fa86157 100644 --- a/res/i18n/x2goclient_de.ts +++ b/res/i18n/x2goclient_de.ts @@ -3895,7 +3895,7 @@ Bitte installieren Sie dort eine neuere Version des X2GoServer-Pakets.</translat </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation>Über die Clienteinstellungen (Menü -> Einstellungen -> Konfiguration) können Sie den Dialog wieder einblenden.</translation> </message> <message> diff --git a/res/i18n/x2goclient_es.ts b/res/i18n/x2goclient_es.ts index cea6fba..33e8c2c 100644 --- a/res/i18n/x2goclient_es.ts +++ b/res/i18n/x2goclient_es.ts @@ -3395,7 +3395,7 @@ puedes instalar sshd con </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation>Puedes reactivar este diálogo dentro de las preferencia del cliente X2Go (Menú -> Opciones -> Preferencias)</translation> </message> <message> diff --git a/res/i18n/x2goclient_et.ts b/res/i18n/x2goclient_et.ts index d21891a..7e72101 100644 --- a/res/i18n/x2goclient_et.ts +++ b/res/i18n/x2goclient_et.ts @@ -3196,7 +3196,7 @@ võid installeerida selle kasutades käsku </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation>Sa võid selle dialoogi uuesti taastada X2Go Client-Seadete menüüs. Kasuta menüüs: Valikud -> Seaded)</translation> </message> <message> diff --git a/res/i18n/x2goclient_fi.ts b/res/i18n/x2goclient_fi.ts index 6ceda75..3834656 100644 --- a/res/i18n/x2goclient_fi.ts +++ b/res/i18n/x2goclient_fi.ts @@ -3370,7 +3370,7 @@ voit asentaa sshd komennolla </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation>Voit palauttaa takaisin tämän vaihtoehdon käyttäen X2Go asiakasohjelman asetuksia. Se onnistuu päävalikon toiminnnolla: Valinnat -> Asetukset)</translation> </message> <message> diff --git a/res/i18n/x2goclient_fr.ts b/res/i18n/x2goclient_fr.ts index b8e4f44..5b64f4c 100644 --- a/res/i18n/x2goclient_fr.ts +++ b/res/i18n/x2goclient_fr.ts @@ -2444,7 +2444,7 @@ Veuillez rapporter le bug sur : <translation>Vous avez désactivé la fenêtre de dialogue d'impression de X2Go Client.</translation> </message> <message> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translatorcomment>bizarre cette parenthèse toute seule</translatorcomment> <translation>Vous pouvez réactiver cette fenêtre de dialogue en utilisant la fenêtre des préférences de X2Go Client. Pour ce faire, suivez ce chemin dans la barre de menu : Options -> Préférences)</translation> </message> diff --git a/res/i18n/x2goclient_nb_no.ts b/res/i18n/x2goclient_nb_no.ts index 95d7d48..14d632b 100644 --- a/res/i18n/x2goclient_nb_no.ts +++ b/res/i18n/x2goclient_nb_no.ts @@ -2904,7 +2904,8 @@ Please report a bug on: <translation type="obsolete">Du kan reaktivere denne dialogen ved å benytte X2Go Client innstillingene (Innstillinger -> Innstillinger)</translation> </message> <message> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <comment>Please adapt this to the new message, note that it has changed.</comment> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished">Du kan reaktivere denne dialogen ved å benytte X2Go Client innstillingene (Innstillinger -> Innstillinger)</translation> </message> </context> diff --git a/res/i18n/x2goclient_nl.ts b/res/i18n/x2goclient_nl.ts index 34575fe..f6023ea 100644 --- a/res/i18n/x2goclient_nl.ts +++ b/res/i18n/x2goclient_nl.ts @@ -3336,8 +3336,9 @@ u kunt sshd installeren met </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> - <translation>U kunt deze dialoog opnieuw activeren via de X2Go Client instellingen dialoog (Menu -> Opties -> Instellingen)</translation> + <comment>Please adapt this to the new message. Note that it has changed.</comment> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> + <translation type="unfinished">U kunt deze dialoog opnieuw activeren via de X2Go Client instellingen dialoog (Menu -> Opties -> Instellingen)</translation> </message> <message> <source>You've deactivated the x2go client printing dialog.</source> diff --git a/res/i18n/x2goclient_pt.ts b/res/i18n/x2goclient_pt.ts index 65ef3fe..262f3d1 100644 --- a/res/i18n/x2goclient_pt.ts +++ b/res/i18n/x2goclient_pt.ts @@ -2646,7 +2646,7 @@ used for exporting folders and printers.</source> </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished"></translation> </message> </context> diff --git a/res/i18n/x2goclient_ru.ts b/res/i18n/x2goclient_ru.ts index d8827ae..0434ebf 100644 --- a/res/i18n/x2goclient_ru.ts +++ b/res/i18n/x2goclient_ru.ts @@ -3574,7 +3574,7 @@ Please update your x2goserver package.</source> </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished"></translation> </message> <message> diff --git a/res/i18n/x2goclient_sv.ts b/res/i18n/x2goclient_sv.ts index 5e61f38..9330a72 100644 --- a/res/i18n/x2goclient_sv.ts +++ b/res/i18n/x2goclient_sv.ts @@ -3421,8 +3421,9 @@ du kan installera sshd med (Debian/Ubuntu) </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> - <translation>Du kan återaktivera denna dialog via X2Go-klientens inställningar (Meny -> Alternativ -> Inställningar)</translation> + <comment>Please adapt this to the new message. Note that it has changed.</comment> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> + <translation type="unfinished">Du kan återaktivera denna dialog via X2Go-klientens inställningar (Meny -> Alternativ -> Inställningar)</translation> </message> <message> <source>You've deactivated the x2go client printing dialog.</source> diff --git a/res/i18n/x2goclient_tr.ts b/res/i18n/x2goclient_tr.ts index 2d2b8da..3625e3d 100644 --- a/res/i18n/x2goclient_tr.ts +++ b/res/i18n/x2goclient_tr.ts @@ -3125,7 +3125,7 @@ açmakta başarısız oldu.</translation> </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished"></translation> </message> <message> diff --git a/res/i18n/x2goclient_zh_tw.ts b/res/i18n/x2goclient_zh_tw.ts index 230d430..2bea357 100644 --- a/res/i18n/x2goclient_zh_tw.ts +++ b/res/i18n/x2goclient_zh_tw.ts @@ -2998,7 +2998,7 @@ you can install sshd with </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings)</source> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished"></translation> </message> <message> diff --git a/src/printdialog.cpp b/src/printdialog.cpp index b412bbc..d998b87 100644 --- a/src/printdialog.cpp +++ b/src/printdialog.cpp @@ -63,6 +63,6 @@ void PrintDialog::slot_dlgShowEnabled ( bool enable ) tr ( "You may reactivate this dialog " "using the X2Go Client settings " "dialog. To do so, follow this path " - "in the menu bar: Options -> " - "Settings)" ) ); + "in the menu bar: Options -> " + "Settings" ) ); } -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 4525afe53cf43fe3fd37870d41f4a79366bbdbd4 Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 13:39:12 2017 +0100 src/onmainwindow.cpp: make the "not loading translator" message non-translatable, as it doesn't make a lot of sense to actually translate it. --- debian/changelog | 3 +++ src/onmainwindow.cpp | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index a929815..42246d1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -92,6 +92,9 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium as languages are unique in the number of plural forms and the like. - {src/printdialog.cpp,res/i18n/x2goclient_*.ts}: drop spurious left-over parenthesis in warning message and adapt translations. + - src/onmainwindow.cpp: make the "not loading translator" message + non-translatable, as it doesn't make a lot of sense to actually + translate it. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 02bb3e6..dd6fa87 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -607,7 +607,7 @@ bool ONMainWindow::get_translator (QString file_name_start, QTranslator **transl for (QStringList::const_iterator it = ui_languages.constBegin (); it != ui_languages.constEnd (); ++it) { /* Respect English locales. Don't try to load any translation, because we do not ship nop-English translations. */ if ((*it).startsWith ("en")) { - x2goWarningf (1) << tr ("English language requested, not loading translator."); + x2goWarningf (1) << "English language requested, not loading translator."; break; } else { -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 610e9b26163cffb8967e78cacab772e01364a3d8 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 03:39:59 2017 +0100 src/pulsemanager.{cpp,h}: make get_* () functions const. --- debian/changelog | 1 + src/pulsemanager.cpp | 10 +++++----- src/pulsemanager.h | 10 +++++----- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/debian/changelog b/debian/changelog index 3a77edd..14ea9c5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -97,6 +97,7 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium translate it. - {src/{configdialog,x2goutils}.cpp,res/i18n/x2goclient_*.ts}: change XQuartz project homepage references, adapt translations. + - src/pulsemanager.{cpp,h}: make get_* () functions const. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index c050e01..b941bf7 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -838,23 +838,23 @@ void PulseManager::shutdown () { loop.exec (); } -std::uint16_t PulseManager::get_pulse_port () { +std::uint16_t PulseManager::get_pulse_port () const { return (pulse_port_); } -std::uint16_t PulseManager::get_esd_port () { +std::uint16_t PulseManager::get_esd_port () const { return (esd_port_); } -bool PulseManager::get_record () { +bool PulseManager::get_record () const { return (record_); } -bool PulseManager::get_playback () { +bool PulseManager::get_playback () const { return (playback_); } -QDir PulseManager::get_pulse_dir () { +QDir PulseManager::get_pulse_dir () const { return (pulse_dir_); } diff --git a/src/pulsemanager.h b/src/pulsemanager.h index e579b0f..c85bd85 100644 --- a/src/pulsemanager.h +++ b/src/pulsemanager.h @@ -49,11 +49,11 @@ class PulseManager: public QObject { QProcess::ProcessState state (); - std::uint16_t get_pulse_port (); - std::uint16_t get_esd_port (); - bool get_record (); - bool get_playback (); - QDir get_pulse_dir (); + std::uint16_t get_pulse_port () const; + std::uint16_t get_esd_port () const; + bool get_record () const; + bool get_playback () const; + QDir get_pulse_dir () const; bool set_pulse_port (std::uint16_t pulse_port); bool set_esd_port (std::uint16_t esd_port); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 3030702728bb27d5f2e6e0b83b5ff04782f7cfdb Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 04:53:19 2017 +0100 src/pulsemanager.{cpp,h}: add new pulse_version_valid_ boolean class member variable, set it correctly and use it whenever the version is accessed. --- debian/changelog | 3 +++ src/pulsemanager.cpp | 17 +++++++++++++++-- src/pulsemanager.h | 1 + 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index aee212b..c2830d7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -99,6 +99,9 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium XQuartz project homepage references, adapt translations. - src/pulsemanager.{cpp,h}: make get_* () functions const. - src/pulsemanager.{cpp,h}: make is_server_running () const. + - src/pulsemanager.{cpp,h}: add new pulse_version_valid_ boolean class + member variable, set it correctly and use it whenever the version is + accessed. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index a5c164c..5805099 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -43,6 +43,7 @@ PulseManager::PulseManager () : app_dir_ (QApplication::applicationDirPath ()), pulse_version_minor_ (0), pulse_version_micro_ (0), pulse_version_misc_ (""), + pulse_version_valid_ (false), record_ (true), playback_ (true), debug_ (false), @@ -272,6 +273,10 @@ void PulseManager::start_osx () { << "-F" << QDir::toNativeSeparators (pulse_dir_.absolutePath () + "/config.pa"); if (!system_pulse_) { + if (!(pulse_version_valid_)) { + x2goDebug << "PulseAudio version number was not fetched successfully, data is invalid. Continuing anyway."; + } + server_args_ << "-p" << QDir::toNativeSeparators (QDir (app_dir_ + "/../Frameworks/pulse-" @@ -303,6 +308,11 @@ void PulseManager::start_win () { */ #ifdef Q_OS_WIN server_args_ = QStringList (); + + if (!(pulse_version_valid_)) { + x2goDebug << "PulseAudio version number was not fetched successfully, data is invalid. Continuing anyway."; + } + server_args_ << "--exit-idle-time=-1" << "-n" << "-F" << QDir::toNativeSeparators (QDir (pulse_dir_.absolutePath () + "/config.pa").absolutePath ()) @@ -511,13 +521,16 @@ void PulseManager::fetch_pulseaudio_version () { show_RichText_ErrorMsgBox (tr ("Error fetching PulseAudio version number!"), tr ("Unable to convert micro version number string to integer."), true); - abort (); + stop_processing = true; } } /* Misc version part will be set to the trailing string. */ if (found) { pulse_version_misc_ = tmp_remaining_str; + + pulse_version_valid_ = true; + break; } } @@ -607,7 +620,7 @@ bool PulseManager::generate_server_config () { * Tanu Kaskinen recommended we specify the absolute path instead. * The absolute path works with at least 5.0 and 6.0. */ - if (pulse_version_major_ > 2) { + if ((!(pulse_version_valid_)) || (pulse_version_major_ > 2)) { QString clean_pulse_dir = pulse_dir_.absolutePath (); #ifdef Q_OS_WIN diff --git a/src/pulsemanager.h b/src/pulsemanager.h index 38cc837..5c852ed 100644 --- a/src/pulsemanager.h +++ b/src/pulsemanager.h @@ -119,6 +119,7 @@ class PulseManager: public QObject { std::uint32_t pulse_version_minor_; std::uint32_t pulse_version_micro_; QString pulse_version_misc_; + bool pulse_version_valid_; bool record_; bool playback_; -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 6606f4bafee53ac5293d52366aa41e15ae1c6759 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 04:55:27 2017 +0100 src/pulsemanager.cpp: make fetch_pulseaudio_version () more resilient. Instead of aborting hard when the version number could not be detected, break out of the loops only. We can make stuff work, even if the version is unknown. Or just continue without PA support as such. --- debian/changelog | 4 ++++ src/pulsemanager.cpp | 25 +++++++++++++------------ 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/debian/changelog b/debian/changelog index c2830d7..e6a1392 100644 --- a/debian/changelog +++ b/debian/changelog @@ -102,6 +102,10 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - src/pulsemanager.{cpp,h}: add new pulse_version_valid_ boolean class member variable, set it correctly and use it whenever the version is accessed. + - src/pulsemanager.cpp: make fetch_pulseaudio_version () more resilient. + Instead of aborting hard when the version number could not be detected, + break out of the loops only. We can make stuff work, even if the version + is unknown. Or just continue without PA support as such. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index 5805099..6442b19 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -365,6 +365,8 @@ void PulseManager::fetch_pulseaudio_version () { tmp_server.setWorkingDirectory (server_working_dir_); tmp_server.start (server_binary_, args); + bool stop_processing = false; + /* Wait until the process exited again. */ if (tmp_server.waitForFinished ()) { /* Read stdout and split it up on newlines. */ @@ -373,7 +375,7 @@ void PulseManager::fetch_pulseaudio_version () { QStringList stdout_list (stdout_data.split ("\n")); bool found = false; - for (QStringList::const_iterator cit = stdout_list.begin (); cit != stdout_list.end (); ++cit) { + for (QStringList::const_iterator cit = stdout_list.begin (); (cit != stdout_list.end ()) && (!stop_processing); ++cit) { /* Remove trailing whitespace, mostly carriage returns on Windows. */ QString tmp_str (*cit); tmp_str = tmp_str.trimmed (); @@ -390,7 +392,7 @@ void PulseManager::fetch_pulseaudio_version () { bool numbers_skip[3] = { false, false, false }; QString tmp_remaining_str = QString (""); QString numbers[3] = { }; - for (QString::const_iterator cit = tmp_str.begin (); cit != tmp_str.end (); ++cit) { + for (QString::const_iterator cit = tmp_str.begin (); (cit != tmp_str.end ()) && (!stop_processing); ++cit) { if (!(numbers_finished[0])) { if (((*cit) >= '0') && ((*cit) <= '9')) { numbers[0].append (*cit); @@ -418,7 +420,7 @@ void PulseManager::fetch_pulseaudio_version () { tr ("Unexpected character found when parsing version string for major version number") + ": '" + QString (*cit) + "'.", true); - abort (); + stop_processing = true; } } else if ((!(numbers_finished[1])) && (!(numbers_skip[1]))) { @@ -443,7 +445,7 @@ void PulseManager::fetch_pulseaudio_version () { tr ("Unexpected character found when parsing version string for minor version number") + ": '" + QString (*cit) + "'.", true); - abort (); + stop_processing = true; } } else if ((!(numbers_finished[2])) && (!(numbers_skip[2]))) { @@ -461,7 +463,7 @@ void PulseManager::fetch_pulseaudio_version () { tr ("Unexpected character found when parsing version string for micro version number") + ": '" + QString (*cit) + "'.", true); - abort (); + stop_processing = true; } } else { @@ -476,7 +478,7 @@ void PulseManager::fetch_pulseaudio_version () { tr ("Supposed to skip major version number. " "Something is wrong."), true); - abort (); + stop_processing = true; } /* not skipping and ((met period or dash) or (have something to convert and met EOL)) */ @@ -489,7 +491,7 @@ void PulseManager::fetch_pulseaudio_version () { show_RichText_ErrorMsgBox (tr ("Error fetching PulseAudio version number!"), tr ("Unable to convert major version number string to integer."), true); - abort (); + stop_processing = true; } else { /* First number is enough to satisfy the "found" criterion. */ @@ -507,7 +509,7 @@ void PulseManager::fetch_pulseaudio_version () { show_RichText_ErrorMsgBox (tr ("Error fetching PulseAudio version number!"), tr ("Unable to convert minor version number string to integer."), true); - abort (); + stop_processing = true; } } @@ -531,6 +533,7 @@ void PulseManager::fetch_pulseaudio_version () { pulse_version_valid_ = true; + stop_processing = true; break; } } @@ -541,19 +544,17 @@ void PulseManager::fetch_pulseaudio_version () { } if (!found) { - x2goErrorf (19) << "Unable to fetch PulseAudio version - unexpected format. Exiting."; + x2goErrorf (19) << "Unable to fetch PulseAudio version - unexpected format."; show_RichText_ErrorMsgBox (tr ("Error fetching PulseAudio version number!"), tr ("Unexpected format encountered."), true); - abort (); } } else { - x2goErrorf (18) << "Unable to start PulseAudio to fetch its version number. Exiting."; + x2goErrorf (18) << "Unable to start PulseAudio to fetch its version number."; show_RichText_ErrorMsgBox (tr ("Error fetching PulseAudio version number!"), tr ("Unable to start PulseAudio binary."), true); - abort (); } } -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 54efae521a3ac02fc5064fc064f3592ec19f8f64 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 04:57:50 2017 +0100 src/pulsemanager.{cpp,h}: add show_startup_warning () for both PA server and (debug) startup sound playback. --- debian/changelog | 2 ++ src/pulsemanager.cpp | 20 ++++++++++++++++++++ src/pulsemanager.h | 2 ++ 3 files changed, 24 insertions(+) diff --git a/debian/changelog b/debian/changelog index e6a1392..321e641 100644 --- a/debian/changelog +++ b/debian/changelog @@ -106,6 +106,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium Instead of aborting hard when the version number could not be detected, break out of the loops only. We can make stuff work, even if the version is unknown. Or just continue without PA support as such. + - src/pulsemanager.{cpp,h}: add show_startup_warning () for both PA server + and (debug) startup sound playback. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index 6442b19..67d78b4 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -931,3 +931,23 @@ void PulseManager::restart () { QProcess::ProcessState PulseManager::state () { return (state_); } + +void PulseManager::show_startup_warning (bool play_startup_sound) const { + QString main_text, informative_text; + + if (!(play_startup_sound)) { + main_text = tr ("Unable to play startup sound."); + } + else { + main_text = tr ("PulseAudio failed to start!"); + informative_text = tr ("Sound support will not be available.") + "\n\n"; + } + + informative_text += tr ("If you downloaded the bundled, pre-compiled version from the official home page " + "or the upstream Linux packages, please report a bug on:\n" + "<center><a href=\"https://wiki.x2go.org/doku.php/wiki:bugs\">" + "https://wiki.x2go.org/doku.php/wiki:bugs" + "</a></center>\n"); + + show_RichText_WarningMsgBox (main_text, informative_text, true); +} diff --git a/src/pulsemanager.h b/src/pulsemanager.h index 5c852ed..c9359d7 100644 --- a/src/pulsemanager.h +++ b/src/pulsemanager.h @@ -90,6 +90,8 @@ class PulseManager: public QObject { bool is_server_running () const; + void show_startup_warning (bool play_startup_sound = false) const; + private slots: void slot_on_pulse_finished (int exit_code); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 9609888276207da5cbdf62df29aeaf7b9cd19753 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 05:03:45 2017 +0100 src/pulsemanager.cpp: check server_binary_ before using it and jump over code that assumes the PA server binary to be available. --- debian/changelog | 2 ++ src/pulsemanager.cpp | 52 +++++++++++++++++++++++++++++----------------------- 2 files changed, 31 insertions(+), 23 deletions(-) diff --git a/debian/changelog b/debian/changelog index 321e641..2685967 100644 --- a/debian/changelog +++ b/debian/changelog @@ -108,6 +108,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium is unknown. Or just continue without PA support as such. - src/pulsemanager.{cpp,h}: add show_startup_warning () for both PA server and (debug) startup sound playback. + - src/pulsemanager.cpp: check server_binary_ before using it and jump over + code that assumes the PA server binary to be available. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index 67d78b4..29bf439 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -135,11 +135,13 @@ PulseManager::PulseManager () : app_dir_ (QApplication::applicationDirPath ()), abort (); } - QFileInfo tmp_file_info = QFileInfo (server_binary_); - server_working_dir_ = tmp_file_info.canonicalPath (); + if (!(server_binary_.isEmpty ())) { + QFileInfo tmp_file_info = QFileInfo (server_binary_); + server_working_dir_ = tmp_file_info.canonicalPath (); - x2goDebug << "Found PA binary as " << server_binary_; - x2goDebug << "Corresponding working dir: " << server_working_dir_; + x2goDebug << "Found PA binary as " << server_binary_; + x2goDebug << "Corresponding working dir: " << server_working_dir_; + } #elif defined (Q_OS_WIN) server_working_dir_ = QString (app_dir_ + "/pulse/"); @@ -182,7 +184,9 @@ PulseManager::PulseManager () : app_dir_ (QApplication::applicationDirPath ()), buf = ptr = NULL; #endif // defined (Q_OS_DARWIN) - fetch_pulseaudio_version (); + if (!(server_binary_.isEmpty ())) { + fetch_pulseaudio_version (); + } } PulseManager::~PulseManager () { @@ -223,35 +227,37 @@ void PulseManager::start_generic () { pulse_server_->setProcessEnvironment (env_); pulse_server_->setWorkingDirectory (server_working_dir_); - pulse_server_->start (server_binary_, server_args_); + if (!(server_binary_.isEmpty ())) { + pulse_server_->start (server_binary_, server_args_); - /* - * We may wait here, because PulseManager runs in a separate thread. - * Otherwise, we'd better use signals and slots to not block the main thread. - */ - if (pulse_server_->waitForStarted (-1)) { - x2goDebug << "pulse started with arguments " << server_args_ << "- waiting for it to finish..."; - state_ = QProcess::Running; + /* + * We may wait here, because PulseManager runs in a separate thread. + * Otherwise, we'd better use signals and slots to not block the main thread. + */ + if (pulse_server_->waitForStarted (-1)) { + x2goDebug << "pulse started with arguments " << server_args_ << "- waiting for it to finish..."; + state_ = QProcess::Running; - connect (pulse_server_, SIGNAL (finished (int)), - this, SLOT (slot_on_pulse_finished (int))); + connect (pulse_server_, SIGNAL (finished (int)), + this, SLOT (slot_on_pulse_finished (int))); - env_.insert ("PULSE_SERVER", "127.0.0.1:" + QString::number (pulse_port_)); + env_.insert ("PULSE_SERVER", "127.0.0.1:" + QString::number (pulse_port_)); - QString clean_pulse_dir = pulse_dir_.absolutePath (); + QString clean_pulse_dir = pulse_dir_.absolutePath (); #ifdef Q_OS_WIN - clean_pulse_dir = wapiShortFileName (clean_pulse_dir); + clean_pulse_dir = wapiShortFileName (clean_pulse_dir); #endif /* defined (Q_OS_WIN) */ - QString tmp_auth_cookie = QDir::toNativeSeparators (clean_pulse_dir + "/.pulse-cookie"); + QString tmp_auth_cookie = QDir::toNativeSeparators (clean_pulse_dir + "/.pulse-cookie"); - env_.insert ("PULSE_COOKIE", tmp_auth_cookie); + env_.insert ("PULSE_COOKIE", tmp_auth_cookie); - if (debug_) { - // Give PA a little time to come up. - QTimer::singleShot (3000, this, SLOT (slot_play_startup_sound ())); + if (debug_) { + // Give PA a little time to come up. + QTimer::singleShot (3000, this, SLOT (slot_play_startup_sound ())); + } } } else { -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 7ce4e35e79b389d8a80e8c55e4aed31f3a087f17 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 03:41:07 2017 +0100 src/pulsemanager.{cpp,h}: make is_server_running () const. --- debian/changelog | 1 + src/pulsemanager.cpp | 2 +- src/pulsemanager.h | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 14ea9c5..aee212b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -98,6 +98,7 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - {src/{configdialog,x2goutils}.cpp,res/i18n/x2goclient_*.ts}: change XQuartz project homepage references, adapt translations. - src/pulsemanager.{cpp,h}: make get_* () functions const. + - src/pulsemanager.{cpp,h}: make is_server_running () const. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index b941bf7..a5c164c 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -813,7 +813,7 @@ void PulseManager::slot_on_pulse_finished (int exit_code) { emit (sig_pulse_server_terminated ()); } -bool PulseManager::is_server_running () { +bool PulseManager::is_server_running () const { if (pulse_server_) return (pulse_server_->state () == QProcess::Running); else diff --git a/src/pulsemanager.h b/src/pulsemanager.h index c85bd85..38cc837 100644 --- a/src/pulsemanager.h +++ b/src/pulsemanager.h @@ -88,7 +88,7 @@ class PulseManager: public QObject { void shutdown (); - bool is_server_running (); + bool is_server_running () const; private slots: -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 6792724a01bf1ed0c54230eb63b78d656eb9c21a Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 06:35:52 2017 +0100 src/x2ogutils.h: guard UNUSED macro definition. --- debian/changelog | 1 + src/x2goutils.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/debian/changelog b/debian/changelog index 101079f..d0bb1ff 100644 --- a/debian/changelog +++ b/debian/changelog @@ -119,6 +119,7 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium files, coming up next. - res/i18n/x2goclient_*.ts: regenerate translation files and fix up some SSH and PulseManager messages manually, where possible. + - src/x2ogutils.h: guard UNUSED macro definition. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/x2goutils.h b/src/x2goutils.h index 41099e2..68684f0 100644 --- a/src/x2goutils.h +++ b/src/x2goutils.h @@ -23,7 +23,9 @@ #include <QFont> #include <QMessageBox> +#ifndef UNUSED #define UNUSED(x) do { (void) x; } while (0) +#endif QString expandHome (QString path); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit cdad7f8de655ba5233f665054c53fdf73a665347 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 06:02:56 2017 +0100 res/i18n/x2goclient_*.ts: regenerate translation files and fix up some SSH and PulseManager messages manually, where possible. --- debian/changelog | 2 + res/i18n/x2goclient_da.ts | 1137 +++++++++++++++++++-------------------- res/i18n/x2goclient_de.ts | 1125 ++++++++++++++++++++------------------- res/i18n/x2goclient_es.ts | 1132 ++++++++++++++++++++------------------- res/i18n/x2goclient_et.ts | 1199 +++++++++++++++++++++++------------------- res/i18n/x2goclient_fi.ts | 1123 ++++++++++++++++++++------------------- res/i18n/x2goclient_fr.ts | 78 ++- res/i18n/x2goclient_nb_no.ts | 91 +++- res/i18n/x2goclient_nl.ts | 1135 ++++++++++++++++++++------------------- res/i18n/x2goclient_pt.ts | 1139 +++++++++++++++++++-------------------- res/i18n/x2goclient_ru.ts | 1138 +++++++++++++++++++-------------------- res/i18n/x2goclient_sv.ts | 1126 ++++++++++++++++++++------------------- res/i18n/x2goclient_tr.ts | 1136 +++++++++++++++++++-------------------- res/i18n/x2goclient_zh_tw.ts | 1136 +++++++++++++++++++-------------------- 14 files changed, 6628 insertions(+), 6069 deletions(-) diff --git a/debian/changelog b/debian/changelog index e4f1d21..101079f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -117,6 +117,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - src/pulsemanager.cpp: deduplicate warning/error messages - make use of show_startup_warning (). This does imply changes to the translation files, coming up next. + - res/i18n/x2goclient_*.ts: regenerate translation files and fix up some + SSH and PulseManager messages manually, where possible. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/res/i18n/x2goclient_da.ts b/res/i18n/x2goclient_da.ts index 8f81727..6b3ecd8 100644 --- a/res/i18n/x2goclient_da.ts +++ b/res/i18n/x2goclient_da.ts @@ -358,12 +358,12 @@ can find updated versions on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -403,8 +403,8 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Avanceret indstillinger</translation> </message> @@ -454,17 +454,17 @@ Some standard installation locations may be: <translation type="obsolete">Der blev ikke fundet en X11 applikation i den specificerede sti</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>&Forbindelse</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation>&Input/Output</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation>&Medie</translation> </message> @@ -1287,7 +1287,7 @@ Please upgrade to PulseAudio.</source> </message> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>us</translation> </message> @@ -1302,28 +1302,28 @@ Please upgrade to PulseAudio.</source> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>forbinder</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Internet browser</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>Email klient</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation>OpenOffice.org</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Terminal</translation> </message> @@ -1332,12 +1332,12 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Starter x2goclient i flyttebar tilstand... data filsti er:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Indstillinger ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Support ...</translation> </message> @@ -1350,13 +1350,13 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Startede x2goclient.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation>Kan ikke åbne oversætter:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation>Oversætter:</translation> </message> @@ -1365,73 +1365,73 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Installeret.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Del mappe...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Suspender</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Afbryd</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Genoptag</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>Løsriv X2Go vinduet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Minimere værktøjslinie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Session:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Afslut</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Afslut</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Ny session ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> @@ -1440,7 +1440,7 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Sessionshåndtering...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> @@ -1457,13 +1457,13 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">&forbindelses test...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Vis værktøjslinie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>Om Qt</translation> </message> @@ -1473,168 +1473,168 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Session</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Indstillinger</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Hjælp</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Login:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Fejl</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>Handling fejlede</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Kodeord er ændret</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>Forkert kodeord!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Forbinder til broker</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Autentifikation</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Gendan</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation>Ikke forbundet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Multimedia</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Udvikling</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Undervisning</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Spil</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Grafik</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Netværk</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Kontor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Indstillinger</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>System</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Værktøj</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Andet</translation> </message> @@ -1651,9 +1651,9 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Lukket x2goclient.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Venligst undersøg LDAP indstillinger</translation> </message> @@ -1685,7 +1685,7 @@ Slå skjult tilstand til?</translation> <translation type="obsolete">X2Go Link til session</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation>Ingen X2Go sessioner Fundet, Lukker.</translation> </message> @@ -1694,8 +1694,8 @@ Slå skjult tilstand til?</translation> <translation type="obsolete">Ugyldig værdi for "--clipboard" argumentet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>SSH Fejl</translation> </message> @@ -1735,7 +1735,7 @@ Venligst forsprøg din system administrater i at give dig adgang til SSH service <translation type="obsolete">SSH daemon fejlede i at åbne programmet's offentlig vært's nøgle. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>SSH daemon fejlede i at åbne programmet's offentlig nøgle til brug for at eksporter mapper og printer.</translation> @@ -1755,38 +1755,38 @@ autoriseret_nøgler filen.</translation> <translation type="obsolete">Er du sikker på at du vil slette denne session?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP forbindelse</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Forbindelse til lokalt skrivebord</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> på </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation>Starter forbindelse til server:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation>til</translation> </message> @@ -1799,12 +1799,12 @@ autoriseret_nøgler filen.</translation> <translation type="obsolete">Kunne ikke finde en SSH forbindelse.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Indtast kodeord for at dekryptere en nøgle</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>Værts nøgle for serveren er ændret. @@ -1823,7 +1823,7 @@ Den er nu: </translation> <translation type="obsolete">Kunne ikke finde kendt host fil. Hvis du accepterer serverens host nøgle, vil filen automatisk blive skabt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Serveren er ukendt. Stoler du på denne værts nøgle? @@ -1834,7 +1834,7 @@ Offentlig nøgle hash: </translation> <translation type="obsolete">Værts nøgle bekræftelse fejlede</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Godkendelses kode:</translation> </message> @@ -1850,20 +1850,18 @@ Af sikkerheds grunde anbefaler vi du stopper forbindelsen. Vil du afslutte forbindelsen? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>Nej</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Hvis du acceptere den nye vært nøgle, er sikkerheden på din forbindelse muligt blevet kompromitteret. @@ -1879,7 +1877,7 @@ Af sikkerhedsmæssige årsager, er det anbefalet at du stopper forbindelsen. Vil du afslutte forbindelsen?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation>Godkendelse Fejlede:</translation> </message> @@ -1888,7 +1886,7 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete">Godkendelse fejlede</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Indtast kodeord til SSH proxy</translation> </message> @@ -1898,37 +1896,37 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete"><b>Forbindelsen mislykkedes</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Forkert kodeord!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation>Forbindelse Fejlede: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation>Forkert kodeord.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>ukendt</translation> </message> @@ -1941,41 +1939,41 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete">Server er ikke tilgængelig</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Vælg session:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>kører</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>suspenderet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Skrivebord</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>enkelt applikation</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>skygge session</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Information</translation> </message> @@ -1984,21 +1982,20 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete">Intet tilgængeligt skrivebord fundet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Filtrer</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Vælg skrivebord:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Advarsel</translation> </message> @@ -2007,60 +2004,59 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete">Din nuværende farvedybde er anderledes end din x2go sessions farvedybde. Dette kan skabe problemer med at genoptage sessionen og i de fleste tilfælde <b>vil du miste din session</b> og være nødt til at starte en ny! det anbefales kraftigt at skifte farvedybden på dit Skærmbillede til </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24 eller 32</translation> + <translation type="obsolete">24 eller 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete"> bit og genstart din X server før du genoptager din x2go session.<br>Vil du fortsætte alligevel?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>suspenderer</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>afbryder</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>Forkert Kodeord!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Ny session er startet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Session genoptaget</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>Ikke i stand til at lave mappe:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>Kunne ikke skrive filen:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation>Nødudgang.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Venter på at proxy afslutter.</translation> </message> @@ -2069,14 +2065,14 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete">Fejlede med at afslutte proxy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Forkerte parameter:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Hjælp</translation> </message> @@ -2089,13 +2085,13 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete">Denne mulighed er ikke til tilgængelig i denne version</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translatorcomment>Opdaterings Log</translatorcomment> <translation>Ændringslog</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Git Information</translation> </message> @@ -2108,8 +2104,8 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete">Kunne ikke skrive fil:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>Tilkobl X2Go vindue</translation> </message> @@ -2124,29 +2120,29 @@ Vil du afslutte forbindelsen?</translation> <translation type="obsolete">Kunne ikke oprette SSL Tunnel:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>Afsluttet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>starter</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>fortsætter</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Forbindelse fik timeout, afbryder</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>afbryder</translation> </message> @@ -2157,20 +2153,20 @@ Unsaved documents will be lost</source> Ugemte dokumenter vil gå tabt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Session</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Skærmbillede</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>Skabelsestid</translation> </message> @@ -2183,7 +2179,7 @@ Ugemte dokumenter vil gå tabt</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (filen kan ikke åbnes)</translation> </message> @@ -2248,7 +2244,7 @@ Ugemte dokumenter vil gå tabt</translation> <translation type="obsolete">Kan ikke åbne nøgle:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Support</translation> </message> @@ -2277,7 +2273,7 @@ Ugemte dokumenter vil gå tabt</translation> <translation type="obsolete">Intet gyldigt kort fundet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Kort er ikke konfigureret.</translation> </message> @@ -2286,7 +2282,7 @@ Ugemte dokumenter vil gå tabt</translation> <translation type="obsolete">Denne kort er ukendt af X2Go systemet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Ikke i stand til at lave fil: </translation> </message> @@ -2309,8 +2305,8 @@ Please check your installation</source> Undersøg venligst din installation</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Kunne ikke udføre handling: </translation> </message> @@ -2331,12 +2327,12 @@ Venligst opdater til en nyere version af x2goserver pakken</translation> <translation type="obsolete">Kunne ikke skrive :</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1252</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>ISO8859-1</translation> </message> @@ -2345,7 +2341,7 @@ Venligst opdater til en nyere version af x2goserver pakken</translation> <translation type="obsolete">Fejl ved hentning af vindue geomatri (vinduet lukkede)?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>X2Go Session</translation> </message> @@ -2354,34 +2350,34 @@ Venligst opdater til en nyere version af x2goserver pakken</translation> <translation type="obsolete">Ugyldig værdi for "speed" argumentet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Kodeord:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>Tastatur layout:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>Annuller</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>Sessions ID:<br>Server:<br>Brugernavn:<br>Skærmbillede:<br>Skabelsestid:<br>Status:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Applikationer...</translation> </message> @@ -2391,105 +2387,100 @@ Venligst opdater til en nyere version af x2goserver pakken</translation> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> - <source>English language requested, not loading translator.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -2498,17 +2489,17 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -2516,290 +2507,288 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> - <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> - <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2808,87 +2797,87 @@ If the sftp-server binary is installed on your system, please report a bug menti <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2897,7 +2886,7 @@ These features require a running and functioning SSH server on your computer. <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2905,7 +2894,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2913,14 +2902,14 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -2928,7 +2917,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -2936,182 +2925,201 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>Afbryd</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Vis detaljer</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Fortsæt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Ny</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Fuld adgang</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Kun synlig</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Status</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Kommando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Type</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>Klient IP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>Sessions ID</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Bruger</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Kun mine skrivebord</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation type="unfinished"></translation> @@ -3125,12 +3133,12 @@ du kan installere sshd med <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Gendan værktøjslinie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> Klik på denne knap <br> for at gendanne værktøjslinien </b><br></translation> </message> @@ -3357,106 +3365,90 @@ f.eks: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> - <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> - <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> - <source>Sound support will not be available. - -If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -3768,25 +3760,30 @@ Use X2Go Client's hidden mode?</source> <translation>&Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Vært:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Login:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>Brug RSA/DSA nøgle til ssh forbindelse:</translation> </message> @@ -3795,78 +3792,83 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Prøv automatisk login (ssh-agent eller standard ssh nøgle)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Kerberos 5 (GSSAPI) autentificering</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Delegation af GSSAPI legitimations oplysninger til serveren</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>Brug Proxy Server til SSH-forbindelse</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Proxy server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>Samme login som på X2Go Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>Samme kodeord som på X2Go Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>RSA/DSA nøgle:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> <source>ssh-agent or default ssh key</source> <translation type="obsolete">ssh-agent eller standard ssh nøgle</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Type:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>&Sessions type</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Sessions type:</translation> </message> @@ -3875,45 +3877,46 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Forbind til Windows terminal server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Forbind til lokalt skrivebord</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>Brugerdefineret skrivebord</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Enkelt applikation</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Udgivet applikationer</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Kommando:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Avancerede indstillinger...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Sti til Program</translation> </message> @@ -3922,56 +3925,57 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Direkt RDP Forbindelse</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>RDP port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Åben billede</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Billeder</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Åben nøglefil</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Alle filer</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Fejl</translation> </message> @@ -3980,25 +3984,30 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">x2go klienten kører i bærbar tilstand. Du bør bruge en sti på din usb enhed så du kan få adgang til dine data uanset hvor du er</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>XDMCP server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>rdesktop kommandolinie parametre:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Ny session</translation> </message> @@ -4192,16 +4201,23 @@ lydsystemets forbindelse igennem firewalls</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Yderligere paramentre:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Kommandolinje:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>us</translation> </message> @@ -4210,8 +4226,8 @@ lydsystemets forbindelse igennem firewalls</translation> <translation type="obsolete">pc105/us</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>kodeord</translation> </message> @@ -4312,94 +4328,96 @@ lydsystemets forbindelse igennem firewalls</translation> <translation type="obsolete">SSH proxy forbindelses fejl</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>SSH proxy forbindelses fejl:</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> - <source>channel_open_forward failed.</source> - <translation type="unfinished"></translation> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>%1 fejlede.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> - <source>channel_open_session failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> - <source>channel_write failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation type="unfinished"></translation> </message> @@ -4452,8 +4470,8 @@ lydsystemets forbindelse igennem firewalls</translation> <translation type="obsolete">Kan ikke skrive til fjern fil</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>kan ikke forbinde til</translation> </message> @@ -4466,9 +4484,8 @@ lydsystemets forbindelse igennem firewalls</translation> <translation type="obsolete">channel_open_sesion fejlede</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> - <translation>channel_request_exec fejlede</translation> + <translation type="obsolete">channel_request_exec fejlede</translation> </message> <message> <source>error writing to socket</source> diff --git a/res/i18n/x2goclient_de.ts b/res/i18n/x2goclient_de.ts index 5c2223c..c49d42a 100644 --- a/res/i18n/x2goclient_de.ts +++ b/res/i18n/x2goclient_de.ts @@ -465,8 +465,8 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Erweiterte Einstellungen</translation> </message> @@ -529,12 +529,12 @@ können aktualisierte Versionen hier herunterladen: <center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation>Keine gültige XQuartz-Anwendung ausgewählt.</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -551,17 +551,17 @@ Bitte versuchen Sie es erneut. <center><b>/Programme/MacPorts/X11.app</b></center></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>&Verbindung</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation>E&in-/Ausgabe</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation>&Medien</translation> </message> @@ -1499,9 +1499,13 @@ Public key hash: </source> <translation>Der Host-Key des Servers konnte nicht gefunden werden, aber ein anderer Schlüsseltyp existiert. Ein Angreifer kann den Schlüssel verändert haben, um dem Client vorzutäuschen, dass der Schlüssel nicht existiert.</translation> </message> <message> - <location filename="../../src/httpbrokerclient.cpp" line="170"/> <source>Could not find known hosts file.If you accept the host key here, the file will be automatically created.</source> - <translation>Die „Known Hosts“-Datei konnte nicht gefunden werden. Wenn Sie den Host-Key hier akzeptieren, dann wird die Datei automatisch erstellt.</translation> + <translation type="obsolete">Die „Known Hosts“-Datei konnte nicht gefunden werden. Wenn Sie den Host-Key hier akzeptieren, dann wird die Datei automatisch erstellt.</translation> + </message> + <message> + <location filename="../../src/httpbrokerclient.cpp" line="170"/> + <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> + <translation type="unfinished">Die „Known Hosts“-Datei konnte nicht gefunden werden. Wenn Sie den Host-Key hier akzeptieren, dann wird die Datei automatisch erstellt.</translation> </message> <message> <location filename="../../src/httpbrokerclient.cpp" line="179"/> @@ -1684,7 +1688,7 @@ Bitte auf PulseAudio aktualisieren.</translation> <name>ONMainWindow</name> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>de</translation> </message> @@ -1693,30 +1697,30 @@ Bitte auf PulseAudio aktualisieren.</translation> <translation type="obsolete">pc105/de</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Support ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Sitzung:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Beenden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Strg+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Beenden</translation> </message> @@ -1725,7 +1729,7 @@ Bitte auf PulseAudio aktualisieren.</translation> <translation type="obsolete">&Neue Sitzung ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Strg+N</translation> </message> @@ -1734,7 +1738,7 @@ Bitte auf PulseAudio aktualisieren.</translation> <translation type="obsolete">Sitzungsverwaltung...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Strg+E</translation> </message> @@ -1743,7 +1747,7 @@ Bitte auf PulseAudio aktualisieren.</translation> <translation type="obsolete">LDAP &Konfiguration ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Werkzeugleiste wieder anzeigen</translation> </message> @@ -1752,12 +1756,12 @@ Bitte auf PulseAudio aktualisieren.</translation> <translation type="obsolete">Über X2GoClient</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>Über Qt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Sitzung</translation> </message> @@ -1767,22 +1771,22 @@ Bitte auf PulseAudio aktualisieren.</translation> <translation type="obsolete">Strg +Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Sitzung</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Bestätigungscode:</translation> </message> @@ -1798,8 +1802,8 @@ Aus Sicherheitsgründen ist es angeraten, die Verbindung zu beenden. Möchten Sie die Verbindung abbrechen?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Wenn Sie den neuen Host-Key akzeptieren, kann das die Sicherheit Ihrer Verbindung gefährden. @@ -1815,36 +1819,36 @@ Aus Sicherheitsgründen ist es angeraten, die Verbindung zu beenden. Möchten Sie die Verbindung abbrechen?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Neue Sitzung gestartet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Sitzung fortgesetzt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>Ordner kann nicht erstellt werden: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>Datei kann nicht geschrieben werden: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation>Notbeendung.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Darauf warten, dass der Proxy sich beendet.</translation> </message> @@ -1857,14 +1861,14 @@ Möchten Sie die Verbindung abbrechen?</translation> <translation type="obsolete">unerwarteter Wert "--clipboard"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Falscher Parameter: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Hilfe</translation> </message> @@ -1877,12 +1881,12 @@ Möchten Sie die Verbindung abbrechen?</translation> <translation type="obsolete">Option in diesem Build nicht verfügbar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation>Changelog</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Git-Info</translation> </message> @@ -1895,7 +1899,7 @@ Möchten Sie die Verbindung abbrechen?</translation> <translation type="obsolete">Schlüssel kann nicht geöffnet werden:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Smartcard nicht konfiguriert.</translation> </message> @@ -1904,29 +1908,29 @@ Möchten Sie die Verbindung abbrechen?</translation> <translation type="obsolete">Fehler beim Ermitteln der Fenstergeometrie. (Fenster geschlossen?)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Passwort:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>Tastaturlayout:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>Abbrechen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Anwendungen...</translation> </message> @@ -1935,120 +1939,120 @@ Möchten Sie die Verbindung abbrechen?</translation> <translation type="obsolete">Ungültige Antwort vom Session-Broker</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Fehler</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> auf </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Benutzername:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Wähle Sitzung:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Fortfahren</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Anhalten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Beenden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Neu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Display</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Status</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Server</translation> </message> @@ -2057,20 +2061,20 @@ Möchten Sie die Verbindung abbrechen?</translation> <translation type="obsolete">Startzeit</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>Client-IP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>aktiv</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>angehalten</translation> </message> @@ -2089,17 +2093,16 @@ Möchten Sie die Verbindung abbrechen?</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Warnung</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>verbinde</translation> </message> @@ -2109,101 +2112,100 @@ Möchten Sie die Verbindung abbrechen?</translation> <translation>X2GoClient wird gestartet ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation>Portabler X2GoClient wird gestartet. Datenverzeichnis ist: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation>Über X2GoClient</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation>X2GoClient wurde gestartet.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation> gefunden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> <source>English language requested, not loading translator.</source> <translatorcomment>Sounds like something you wouldn't want translated.</translatorcomment> - <translation>English language requested, not loading translator.</translation> + <translation type="obsolete">English language requested, not loading translator.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation>Kann Übersetzer nicht laden (nicht fatal): </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation>Versuche eine Sprache niedrigerer Präferenz zu laden, falls vorhanden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation>Sitzungsverwaltung ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation>&Desktopsymbol erzeugen ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation>&Kennwort für Session-Broker setzen ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation>&Verbindungstest ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation>Ordner freigeben ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation>Klick mit der linken Maustaste, um das Fenster zu verstecken und wiederherzustellen. Klick mit der rechten Maustaste zeigt das Kontextmenü.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation>X2GoClient wird geschlossen ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation>Alle Hooks, die beim Beenden von X2GoClient abgearbeitet werden sollten, wurden abgearbeitet.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation>Broker-Authentisierung fehlgeschlagen!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation>Verbindungsfehler: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation>Konnte keine SSH Verbindung finden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -2216,17 +2218,17 @@ Möchten Sie die Verbindung abbrechen? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation>Host-Key-Überprüfung fehlgeschlagen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -2237,142 +2239,138 @@ Möchten Sie die Verbindung abbrechen? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Die „Known Hosts“-Datei konnte nicht gefunden werden. Wenn Sie den Host-Key hier akzeptieren, dann wird die Datei automatisch erstellt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation>Authentisierung fehlgeschlagen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation><b>Verbindung fehlgeschlagen.</b> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation>Es konnte kein Server gefunden werden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation>Server nicht verfügbar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation>Kein freigegebener Desktop gefunden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation>Die aktuell verwendete Farbtiefe unterscheidet sich von der der wiederherzustellenden Sitzung. Der Versuch, die Sitzung fortzuführen kann zu Fehlern führen, inbesondere dem <b>Verlust der ganzen Sitzung</b>. Um Fehler zu vermeiden wird empfohlen, die aktuelle Farbtiefe auf </translation> + <translation type="obsolete">Die aktuell verwendete Farbtiefe unterscheidet sich von der der wiederherzustellenden Sitzung. Der Versuch, die Sitzung fortzuführen kann zu Fehlern führen, inbesondere dem <b>Verlust der ganzen Sitzung</b>. Um Fehler zu vermeiden wird empfohlen, die aktuelle Farbtiefe auf </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation> bit zu ändern und den verwendeten X.Org-Server neu zu starten, bevor Sie sich mit der Sitzung verbinden.<br />Trotzdem versuchen, die Sitzung fortzuführen?</translation> + <translation type="obsolete"> bit zu ändern und den verwendeten X.Org-Server neu zu starten, bevor Sie sich mit der Sitzung verbinden.<br />Trotzdem versuchen, die Sitzung fortzuführen?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation>Kann keinen SSH-Tunnel für den Start der X2Go-Sitzung (NX) erstellen: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation>Kann keinen SSH-Tunnel für Audiodaten erstellen: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation>konnte nicht gestartet werden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation>Das bedeutet sehr wahrscheinlich, dass die ausführbare Datei nicht verfügbar ist. Der aktuelle Suchpfad lautet: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation>lieferte einen von null abweichenden Exit-Code zurück oder ist auf andere Weise abgestürzt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation>Ausführung fehlgeschlagen, der Exit-Code lautete: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation>startete nicht rechtzeitig.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation>Dieser Fehler sollte nie auftreten.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation>hat eine Schreiboperation nicht akzeptiert.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation>Es läuft vermutlich nicht richtig, oder ist zwischendurch abgestürzt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation>Kann nicht von xmodmap lesen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation>ist ein unbekannter Fehler während des Starts oder während der Ausführung aufgetreten.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation>trat ein undefinierter Fehler auf.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> @@ -2381,81 +2379,91 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. Bitte melden Sie den Fehler wie auf der <a href="http://wiki.x2go.org/doku.php/wiki:bugs">Wikiseite zur Fehlerberichterstattung</a> beschrieben.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation>Der Proxy hat sich nicht nach 3 Sekunden beendet. Proxy wird nun zwangsbeendet.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation>Schließe den X2GoClient, weil er im versteckten Modus gestartet wurde.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation>Schließe den X2GoClient, weil der Parameter --close-disconnect angegeben wurde.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>starte</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>aktiviere</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Zeitüberschreitung, breche ab</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>breche ab</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation>Datei konnte nicht angelegt oder zum Anhängen geöffnet werden: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation>Kann Dateirechte nicht ändern: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation>Dies ist ein Fehler, weil sshd sich weigern würde, so eine Datei zu verwenden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation>Kann Verzeichnisrechte nicht ändern: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation>Dies ist ein Fehler, weil sshd sich weigern würde, so ein Verzeichnis zu verwenden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation>Kann das sftp-server-Binary nicht finden. Es ist weder im Paket, noch im $PATH, noch in zusätzlichen Verzeichnissen enthalten.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2469,82 +2477,82 @@ Falls das sftp-server-Binary auf Ihrem System installiert ist, melden Sie den Fe </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation>Fehler bei der Auswahl des SSH-Key-Typs</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation>Unbekannter SSH-Key ausgewählt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation>Anwendung wird beendet.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation>Fehler beim Erstellen des Basisverzeichnisses für den SSH-Key</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation>Kann SSH-Key-Basisverzeichnis '%1' nicht anlegen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation>Fehler beim Start von ssh-keygen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation>Kann das ssh-keygen-Binary nicht starten.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation>ssh-keygen ist abgestürzt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation>Das ssh-keygen-Binary ist abgestürzt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation>Programmfehler, ssh-keygen betreffend</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation>Das ssh-keygen-Binary wurde nicht sauber beendet.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation>Es wurde vermutlich mit unbekannten Parametern aufgerufen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation>Kann die neu erstellte %1-Public-Host-Key-Datei nicht öffnen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation>Die %1-Public-Host-Key-Datei ist leer.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2557,7 +2565,7 @@ Diese Funktionen setzen einen gestarteten und funktionstüchtigen SSH-Server auf </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2568,7 +2576,7 @@ Wenn Sie diese Fehlermeldung sehen, senden Sie bitte einen Fehlerbericht: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2578,15 +2586,15 @@ Please report a bug on: Bitte senden Sie einen Fehlerbericht:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -2597,7 +2605,7 @@ Wenn Sie diese Fehlermeldung sehen, senden Sie bitte einen Fehlerbericht: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -2608,7 +2616,7 @@ Bitte senden Sie einen Fehlerbericht: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation>Der SSH-Dienst konnte die authorized_keys-Datei @@ -2619,7 +2627,7 @@ der Anwendung nicht öffnen.</translation> <translation type="obsolete"><b>Sitzungs ID:<br>Server:<br>Login:<br>Display:<br>Startzeit:<br>Status:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>Abbruch</translation> </message> @@ -2628,7 +2636,7 @@ der Anwendung nicht öffnen.</translation> <translation type="obsolete">Zeige Details</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (kann Datei nicht öffnen)</translation> </message> @@ -2673,7 +2681,7 @@ der Anwendung nicht öffnen.</translation> <translation type="obsolete">Liste aller Packmethoden:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Support</translation> </message> @@ -2686,7 +2694,7 @@ der Anwendung nicht öffnen.</translation> <translation type="obsolete">Bitte überprüfen Sie die LDAP Einstellungen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation>LDAP enthält keinen X2GoServer </translation> </message> @@ -2705,17 +2713,17 @@ der Anwendung nicht öffnen.</translation> <translation type="obsolete">es konnte kein Server gefunden werden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>Sitzungs-ID</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>anhalten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>beende</translation> </message> @@ -2770,7 +2778,7 @@ der Anwendung nicht öffnen.</translation> <translation type="obsolete"><b>X2GoClient V. 2.0.1</b><br> (C. 2006-2007 Oleksandr Shneyder, Heinz-Markus Graesing)<br><br>Ein Client für den Zugriff auf die serverbasierende Anwendungsumgebung X2Go. Mit Hilfe dieser Anwendung können Sie Sitzungen eines X2GoServers starten, stoppen, laufende Sitzungen fortführen oder anhalten und verschiedene Sitzungskonfigurationen verwalten. Die Authentifizierung kann über LDAP erfolgen und das Programm kann im Vo [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>Falsches Passwort!</b><br><br></translation> </message> @@ -2807,7 +2815,7 @@ der Anwendung nicht öffnen.</translation> <translation type="obsolete">Usage: x2goclient [Options] Options: --help Print this message --help-pack Print availabel pack methods --no-menu Hide menu bar --maximize Start maximized --add-to-known-hosts Add RSA key fingerprint to .ssh/known_hosts if authenticity of server can't be established --ldap=<host:port:dn> Start with LDAP Support [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Datei konnte nicht erzeugt werden: </translation> </message> @@ -2820,7 +2828,7 @@ der Anwendung nicht öffnen.</translation> <translation type="obsolete">Diese Karte ist dem X2Go-System unbekannt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Konfiguration ...</translation> </message> @@ -2859,23 +2867,20 @@ Please check your settings</source> <translation type="obsolete">Die aktuell verwendete Farbtiefe unterscheidet sich von der der wiederherzustellenden Sitzung. Der Versuch, die Sitzung fortzuführen kann zu Fehlern führen, inbesondere dem <b>Verlust der ganzen Sitzung</b>. Um Fehler zu vermeiden wird empfohlen, die aktuelle Farbtiefe auf </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24 oder 32</translation> + <translation type="obsolete">24 oder 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete"> bit zu ändern und den verwendeten X-server neu zu starten, bevor Sie sich mit der Sitzung verbinden. Trotzdem versuchen die Sitzung fortzuführen?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>Nein</translation> </message> @@ -2892,42 +2897,42 @@ Please check your settings</source> <translation type="obsolete"></b><br> (C. 2006-2008 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br><br>Ein Client für den Zugriff auf die serverbasierende Anwendungsumgebung X2Go. Mit Hilfe dieser Anwendung können Sie Sitzungen eines X2GoServers starten, stoppen, laufende Sitzungen fortführen oder anhalten und verschiedene Sitzungskonfigurationen verwalten. Die Authentifizierung kann über LDAP erfolgen und das Programm kan [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Eingabeaufforderung</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>unbekannt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Befehl</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Typ</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Desktopumgebung</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>Anwendung</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>Shadow Session</translation> </message> @@ -2936,8 +2941,8 @@ Please check your settings</source> <translation type="obsolete"><br>Fehler in der Sudo Konfiguration</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Befehl konnte nicht ausgeführt werden: </translation> </message> @@ -2947,17 +2952,17 @@ Please check your settings</source> <translation>X2Go Client</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Webbrowser</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>E-Mail-Programm</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Neue Sitzung ...</translation> </message> @@ -2966,8 +2971,8 @@ Please check your settings</source> <translation type="obsolete">Sitzungsverwaltung...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Zeige Werkzeugleiste</translation> </message> @@ -2976,9 +2981,9 @@ Please check your settings</source> <translation type="obsolete">Über X2GoClient</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Bitte überprüfen Sie die LDAP Einstellungen</translation> </message> @@ -2991,16 +2996,16 @@ Please check your settings</source> <translation type="obsolete">Sind Sie sicher, dass Sie die Sitzung löschen wollen?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Falsches Passwort!</b><br><br></translation> </message> @@ -3009,15 +3014,15 @@ Please check your settings</source> <translation type="obsolete">es konnte kein Server gefunden werden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <oldsource>Active connection</oldsource> <translation>Nicht verbunden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>Startzeit</translation> </message> @@ -3026,22 +3031,22 @@ Please check your settings</source> <translation type="obsolete">Ordner kann nicht erzeugt werden:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Bitte Kennwort eingeben, um den Schlüssel zu öffnen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation>Keine X2Go Sitzung gefunden, Programm wird geschlossen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation>Verbindung mit Server wird gestartet: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation> auf </translation> </message> @@ -3054,7 +3059,7 @@ Please check your settings</source> <translation type="obsolete">Konnte keine SSH Verbindung finden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>Host-Key des Servers hat sich geändert. @@ -3073,7 +3078,7 @@ Er lautet jetzt: </translation> <translation type="obsolete">Die ,,Known Host''-Datei konnte nicht gefunden werden. Wenn Sie den Host-Key hier akzeptieren, dann wird die Datei automatisch erstellt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Der Server ist unbekannt. Vertrauen Sie diesem Host-Key? @@ -3084,7 +3089,7 @@ Hash des öffentlichen Schlüssels: </translation> <translation type="obsolete">Die Überprüfung des Host-Keys schlug fehl</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation>Anmeldung fehlgeschlagen: </translation> </message> @@ -3093,23 +3098,23 @@ Hash des öffentlichen Schlüssels: </translation> <translation type="obsolete">Anmeldung fehlgeschlagen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Kennwort für SSH Proxy eingeben</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation>Verbindung fehlgeschlagen: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation> - Falsches Kennwort.</translation> </message> @@ -3128,17 +3133,17 @@ Hash des öffentlichen Schlüssels: </translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>Sitzungs-ID:<br>Server:<br>Login:<br>Display:<br>Startzeit:<br>Status:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Ordner freigeben...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Zeige Details</translation> </message> @@ -3175,13 +3180,13 @@ Bitte installieren sie eine neuere Version von x2goserver</translation> <translation type="obsolete">X2Go Client ist gestartet.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation>Kann Übersetzer nicht laden: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation>Übersetzung: </translation> </message> @@ -3198,82 +3203,82 @@ Bitte installieren sie eine neuere Version von x2goserver</translation> <translation type="obsolete">&Verbindungstest...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>Operation fehlgeschlagen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Das Kennwort wurde geändert</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>Falsches Kennwort!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Authentifizierung</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Wiederherstellen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Unterhaltungsmedien</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Entwicklung</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Bildung</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Spiele</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Grafik</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Internet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Büroprogramme</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Einstellungen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>Systemwerkzeuge</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Dienstprogramme</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Sonstige</translation> </message> @@ -3315,24 +3320,24 @@ Wollen Sie den versteckten Modus nutzen?</translation> <translation type="obsolete">Keine X2Go-Sitzungen gefunden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP-Verbindung</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>Fenster abkoppeln</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>Fenster einbetten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>Beendet</translation> </message> @@ -3352,18 +3357,18 @@ Please check your installation</source> Bitte überprüfen Sie Ihre Installation</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>X2Go-Sitzung</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Symbole verstecken</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> @@ -3450,13 +3455,13 @@ Bitte melden Sie den Fehler über: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation>Die Druck- und/oder Dateifreigabe in den Sitzungseinstellungen zu deaktivieren, wird diese Meldung verschwinden lassen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation>Der SSH-Daemon konnte seinen öffentlichen Host-Schlüssel nicht öffnen.</translation> </message> @@ -3523,8 +3528,8 @@ Wenn Sie selbst der Systemadministrator sind, führen Sie bitte folgenden Befehl </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>SSH-Fehler</translation> </message> @@ -3554,7 +3559,7 @@ service on your computer.</source> <translation type="obsolete">Der SSH-Dienst konnte den öffentlichen Host-Schlüssel der Anwendung nicht öffnen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>Der SSH-Dienst konnte den für Datei- und Druckfreigaben benötigten @@ -3566,7 +3571,7 @@ authoized_keys file.</source> <translation type="obsolete">Der SSH-Dienst konnte die autorized_keys-Datei der Anwendung nicht öffnen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> zum Wiederherstellen <br> der Werkzeugleiste <br> hier klicken </b><br></translation> </message> @@ -3583,36 +3588,55 @@ Sie können SSHD über folgenden Befehl installieren: <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Zugriff auf lokalen Desktop</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Hinweis</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Filter</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Desktopauswahl:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation>Die Sitzung wird beendet. Sind Sie sicher? Ungespeicherte Dokumente gehen verloren.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> @@ -3621,86 +3645,86 @@ Ungespeicherte Dokumente gehen verloren.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation> (Datei existiert nicht)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation> (Verzeichnis existiert nicht)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation>Unerwarteter Wert für Parameter "--link".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation>Unerwarteter Wert für Parameter "--clipboard".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation>Unerwarteter Wert für Parameter "--sound".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation>Unerwarteter Wert für Parameter "--geometry".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation>Unerwarteter Wert für Parameter "--set-kbd".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation>Unerwarteter Wert für Parameter "--ldap".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation>Unerwarteter Wert für Parameter "--ldap1".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation>Unerwarteter Wert für Parameter "--ldap2".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation>Unerwarteter Wert für Parameter "--pack".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation>Liste aller Packmethoden:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation>Packmethoden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation>Option in diesem Build nicht verfügbar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation>Verzeichnis kann nicht erstellt werden:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation>Schlüssel kann nicht geöffnet werden: </translation> </message> @@ -3709,77 +3733,77 @@ Ungespeicherte Dokumente gehen verloren.</translation> <translation type="obsolete"><br> (C) 2005-2016 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation><br>X2GoPlugin-Modus wurde gefördert durch <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation><br>Dies ist ein Client für den Zugriff auf die netzwerkbasierte Anwendungsumgebung X2Go. Mit Hilfe dieser Anwendung können Sie Verbindungen zu einem X2GoServer starten, stoppen, laufende Sitzungen fortführen oder anhalten und verschiedene Sitzungskonfigurationen verwalten. Die Authentifizierung kann über LDAP erfolgen und das Programm kann im Vollbildmodus (als Ersatz für XDM) gestartet werden. Weitere Informationen erhalten Sie auf <a href="http://www [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation><b>X2GoClient V. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation>Bitte überprüfen Sie die LDAP-Einstellungen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation>Bitte überprüfen Sie, ob das Paket, das "scdaemon" bereitstellt, installiert ist. Der aktuelle Suchpfad lautet: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation>ist bis jetzt noch nicht gestartet.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation>Kann nicht von scdaemon lesen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation>Keine gültige Karte gefunden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation>Das X2Go-System kennt diese Karte nicht.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation>X.Org-Server lässt sich nicht starten. Bitte überprüfen Sie Ihre Installation.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation>Der gewählte Server unterstützt keinen Dateisystemexport via SSH-Tunnel. Bitte installieren Sie dort eine neuere Version des X2GoServer-Pakets.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation>Kann keinen SSH-Tunnel für die Druck- und Dateifreigabe erstellen: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation>Lesefehler: @@ -3791,32 +3815,32 @@ Bitte installieren Sie dort eine neuere Version des X2GoServer-Pakets.</translat <translation type="obsolete">Schreibfehler:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation>Fehler beim Ermitteln der Fenstergeometrie. (Haben Sie das Fenster geschlossen?)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation>Unerwarteter Wert für Parameter "speed"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation>Anwendungen...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Nur betrachten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Benutzer</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> @@ -3825,24 +3849,24 @@ Bitte installieren Sie dort eine neuere Version des X2GoServer-Pakets.</translat <translation type="obsolete">Kein freigegebener Desktop gefunden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Vollzugriff</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Nur eigene Desktops</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Neu verbinden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Verbinden mit Broker</translation> </message> @@ -3859,12 +3883,12 @@ Bitte installieren Sie dort eine neuere Version des X2GoServer-Pakets.</translat <translation type="obsolete"><br>Ein Client für den Zugriff auf die serverbasierende Anwendungsumgebung X2Go. Mit Hilfe dieser Anwendung können Sie Sitzungen eines X2GoServers starten, stoppen, laufende Sitzungen fortführen oder anhalten und verschiedene Sitzungskonfigurationen verwalten. Die Authentifizierung kann über LDAP erfolgen und das Programm kann im Vollbildmodus (als Ersatz für XDM) gestartet werden. Weitere Informationen erhalten SIe auf x2go.org. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1252</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>ISO8859-1</translation> </message> @@ -4099,112 +4123,114 @@ Beispiel: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation>Kann das PulseAudio-Binary nicht finden. Es ist weder im Paket, noch im $PATH, noch in zusätzlichen Verzeichnissen enthalten.</translation> + <translation type="obsolete">Kann das PulseAudio-Binary nicht finden. Es ist weder im Paket, noch im $PATH, noch in zusätzlichen Verzeichnissen enthalten.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Wenn Sie das Installationspaket mit der vorkompilierten Version von der offiziellen Homepage heruntergeladen haben, senden Sie bitte einen Fehlerbericht: + <translation type="obsolete">Wenn Sie das Installationspaket mit der vorkompilierten Version von der offiziellen Homepage heruntergeladen haben, senden Sie bitte einen Fehlerbericht: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation>Konnte keinen Puffer anlegen, um das aktuelle Arbeitsverzeichnis zu bestimmen!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation>getcwd() schlug fehl!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation>PulseAudio konnte nicht gestartet werden!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> <source>Sound support will not be available. If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Sound-Unterstützung wird nicht verfügbar sein. + <translation type="obsolete">Sound-Unterstützung wird nicht verfügbar sein. Wenn Sie das Installationspaket mit der vorkompilierten Version von der offiziellen Homepage heruntergeladen haben, senden Sie bitte einen Fehlerbericht: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation>Konnte Versionsnummer von PulseAudio nicht ermitteln!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation>Beim Parsen des Versionsstrings wurde auf der Suche nach der Hauptversionsnummer ein unerwartetes Zeichen entdeckt</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation>Beim Parsen des Versionsstrings wurde auf der Suche nach der Unterversionsnummer ein unerwartetes Zeichen entdeckt</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation>Beim Parsen des Versionsstrings wurde auf der Suche nach der Unter-Unterversionsnummer ein unerwartetes Zeichen entdeckt</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation>Hauptversionsnummer soll übersprungen werden. Irgendetwas ist hier falsch.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation>Kann Hauptversionsnummernstring nicht in Ganzzahl wandeln.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation>Kann Unterversionsnummernstring nicht in Ganzzahl wandeln.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation>Kann Unter-Unterversionsnummernstring nicht in Ganzzahl wandeln.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation>Auf unerwartetes Format gestoßen.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation>PulseAudio-Binary konnte nicht gestartet werden.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation>Kann Start-Ton nicht abspielen.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation>Sound-Unterstützung wird nicht verfügbar sein.</translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -4583,25 +4609,25 @@ Wollen Sie den versteckten Modus verwenden?</translation> <translation>&Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Host:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Login:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH-Port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>RSA-/DSA-Schlüssel verwenden (ssh):</translation> </message> @@ -4610,48 +4636,48 @@ Wollen Sie den versteckten Modus verwenden?</translation> <translation type="obsolete">Anmeldung über voreingestellten SSH-Schlüssel oder ssh-agent</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Kerberos5 (GSSAPI) Authentifizierung</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Übertragung der GSSAPI-Legitimation auf den Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>Proxy-Server für SSH-Verbindung verwenden</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Proxy-Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>Gleiche Anmeldung wie für X2Go-Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>Gleiches Kennwort wie für X2Go-Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>RSA/DSA-Schlüssel:</translation> </message> @@ -4660,22 +4686,22 @@ Wollen Sie den versteckten Modus verwenden?</translation> <translation type="obsolete">SSH-Agent oder SSH-Standardschlüssel</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Typ:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>&Sitzungsart</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Sitzungsart:</translation> </message> @@ -4684,35 +4710,35 @@ Wollen Sie den versteckten Modus verwenden?</translation> <translation type="obsolete">Verbindung mit Windows Terminalserver herstellen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>Andere Desktopumgebung</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Anwendung</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Veröffentlichte Anwendungen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Befehl:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Erweiterte Einstellungen...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Pfad zum Programm</translation> </message> @@ -4721,95 +4747,112 @@ Wollen Sie den versteckten Modus verwenden?</translation> <translation type="obsolete">Direkte RDP Verbindung</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>RDP port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Öffne Bild</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Bilder</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Öffne Schlüssel</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation>Anmeldung über voreingestellten SSH-Schlüssel oder ssh-agent</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation>SSH-Agent oder SSH-Standardschlüssel</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation>Verbindung mit Windows Terminalserver herstellen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation>Direkte RDP-Verbindung</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Alle Dateien</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation>X2Go Client wird gerade als portable Anwendung ausgeführt. Sie sollten einen Pfad auf dem USB-Medium wählen, um von überall aus auf Ihre Daten zugreifen zu können.</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>rdesktop Kommandozeilenoptionen:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Neue Sitzung</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Zugriff auf lokalen Desktop</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>XDMCP-Server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Fehler</translation> </message> @@ -5007,16 +5050,23 @@ sound system connections through firewalls</source> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Zusätzliche Parameter:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Kommandozeile:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>de</translation> </message> @@ -5025,8 +5075,8 @@ sound system connections through firewalls</source> <translation type="obsolete">pc105/de</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>Kennwort</translation> </message> @@ -5127,94 +5177,108 @@ sound system connections through firewalls</source> <translation type="obsolete">Verbindungsfehler SSH-Proxy</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation>SSH-Proxy-Verbindungsfehler.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>SSH-Proxy Verbindungsfehler: </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation>Aufbau des SSH-Proxy-Tunnels fehlgeschlagen.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation>Kann libssh nicht initialisieren.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation>Kann SSH-Sitzung nicht erstellen.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation>Verbindung zu Proxy-Server nicht möglich.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation>Authentisierung fehlgeschlagen.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation>Konnte den SSH-Client nicht starten. Bitte überprüfen Sie Ihre Installation und die GSSApi-Konfiguration.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation>Überprüfen Sie die GSSApi-Konfiguration oder wählen Sie eine andere Authentisierungsmethode.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation>Kann Datei nicht öffnen </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation>Kann entfernte Datei nicht anlegen </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation>Kann in entfernte Datei nicht schreiben </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>%1 schlug fehl.</translation> + </message> + <message> <source>channel_open_forward failed.</source> - <translation>channel_open_forward schlug fehl.</translation> + <translation type="obsolete">channel_open_forward schlug fehl.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> <source>channel_open_session failed.</source> - <translation>channel_open_session schlug fehl.</translation> + <translation type="obsolete">channel_open_session schlug fehl.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation>Fehler beim Schreiben auf Socket.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation>Kann nicht aus Channel lesen.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> <source>channel_write failed.</source> - <translation>channel_write schlug fehl.</translation> + <translation type="obsolete">channel_write schlug fehl.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation>Konnte nicht von TCP-Socket lesen.</translation> </message> @@ -5267,8 +5331,8 @@ sound system connections through firewalls</source> <translation type="obsolete">Kann entfernte Datei nicht schreiben </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>Kann Verbindung nicht herstellen zu </translation> </message> @@ -5281,9 +5345,8 @@ sound system connections through firewalls</source> <translation type="obsolete">channel_open_session schlug fehl</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> - <translation>channel_request_exec schlug fehl</translation> + <translation type="obsolete">channel_request_exec schlug fehl</translation> </message> <message> <source>error writing to socket</source> diff --git a/res/i18n/x2goclient_es.ts b/res/i18n/x2goclient_es.ts index 7a3a1db..6f29973 100644 --- a/res/i18n/x2goclient_es.ts +++ b/res/i18n/x2goclient_es.ts @@ -385,12 +385,12 @@ pueden encontrar versiones acutlizadas: <center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation>No se ha elegido una aplicaciones XQuartz válida.</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -436,8 +436,8 @@ Algunas localizaciones habituales pueden ser: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Opciones avanzadas</translation> </message> @@ -487,17 +487,17 @@ Algunas localizaciones habituales pueden ser: <translation type="obsolete">No se encontró una aplicación X11 válida en la ruta seleccionada</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>&Conexión</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation>Entrada/Sal&ida</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation>&Medios</translation> </message> @@ -1318,7 +1318,7 @@ Por favor actualiza a PulseAudio.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>es</translation> </message> @@ -1333,28 +1333,28 @@ Por favor actualiza a PulseAudio.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>conectando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Navegador web</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>Cliente de correo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation>OpenOffice.org</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Terminal</translation> </message> @@ -1363,12 +1363,12 @@ Por favor actualiza a PulseAudio.</translation> <translation type="obsolete">Iniciando x2goclint en modo portable... el directorio de los datos es: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Preferencias ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Soporte ...</translation> </message> @@ -1381,13 +1381,13 @@ Por favor actualiza a PulseAudio.</translation> <translation type="obsolete">Cliente X2Go iniciado.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation>No se puede cargar el traductor: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation>Traductor: </translation> </message> @@ -1396,73 +1396,73 @@ Por favor actualiza a PulseAudio.</translation> <translation type="obsolete"> instalado.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Compartir carpeta...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Suspender</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Terminar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Reconectar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>Abrir nueva ventana X2Go</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Minimizar barra de herramientas</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Sesión:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Salir</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Ctrl+S</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Salir</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Nueva sesión ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> @@ -1471,7 +1471,7 @@ Por favor actualiza a PulseAudio.</translation> <translation type="obsolete">Gestión de sesiones...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> @@ -1488,13 +1488,13 @@ Por favor actualiza a PulseAudio.</translation> <translation type="obsolete">Test de &conectividad...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Mostrar barra de herramientas</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>Sobre Qt</translation> </message> @@ -1504,168 +1504,168 @@ Por favor actualiza a PulseAudio.</translation> <translation type="obsolete">Ctrl+S</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Sesión</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Opciones</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Ayuda</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Usuario:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Error</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>Falló la operación</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Contraseña cambiada</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>¡Contraseña errónea!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Conectando al broker</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Autenticación</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Restaurar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation>No conectado</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Multimedia</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Desarrollo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Educación</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Juegos</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Gráficos</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Redes</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Oficina</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Ajustes</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>Sistema</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Utilidades</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Otros</translation> </message> @@ -1682,9 +1682,9 @@ Por favor actualiza a PulseAudio.</translation> <translation type="obsolete">x2goclient finalizado.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Comprueba los datos de conexión LDAP</translation> </message> @@ -1716,7 +1716,7 @@ Use x2goclient hidden mode?</source> <translation type="obsolete">Enlace a la sesión X2Go </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation>No se han encontrado sesiones X2Go.</translation> </message> @@ -1725,8 +1725,8 @@ Use x2goclient hidden mode?</source> <translation type="obsolete">valor erróneo para el argumento "--clipboard"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>Error de SSH</translation> </message> @@ -1768,7 +1768,7 @@ SSH en tu ordenador.</translation> <translation type="obsolete">El demonio SSH falló al abrir la clave pública del host de la aplicación.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>El demonio SSH falló al abrir la clave pública del host de la aplicación @@ -1788,38 +1788,38 @@ authoized_keys file.</source> <translation type="obsolete">¿Eliminar esta sesión?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>Conexión RDP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Conectar al escritorio local</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> on </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation>Iniciando conección con el servidor: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation> a </translation> </message> @@ -1832,12 +1832,12 @@ authoized_keys file.</source> <translation type="obsolete">No se pudo encontrar la conexión SSH.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Introduce la frase de paso para desencriptar la clave</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>La clave del servidor ha cambiado. @@ -1856,7 +1856,7 @@ Ahora es: </translation> <translation type="obsolete">No se encontró el archivos de claves en este equipo. Si aceptas se creará en nuevo archivo de claves</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Este servidor es desconocido. ¿Confiar en su clave? @@ -1867,7 +1867,7 @@ Hash de su clave pública: </translation> <translation type="obsolete">Falló la comprobación de la clave del equipo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Código de verificación:</translation> </message> @@ -1884,20 +1884,18 @@ Por razones de seguridad se recomienda finalizar la conexión. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Si</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>No</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Si aceptas la nueva clave de seguridad para tu conexión la seguridad en la conexión podría comprometerse. @@ -1913,7 +1911,7 @@ Por razones de seguridad se recomienda finalizar la conexión. ¿Finalizar la conexión?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation>Fallo en la autenticación: </translation> </message> @@ -1922,7 +1920,7 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete">Falló la autenticación</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Introduce la contraseña para el proxy SSH</translation> </message> @@ -1932,37 +1930,37 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete"><b>Error en la conexión</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Contraseña incorrecta</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation>Fallo en la conexión: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation> - Contraseña incorrecta.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>desconocido</translation> </message> @@ -1975,41 +1973,41 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete">Servidor no disponible</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Seleccionar sesión:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>activa</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>suspendida</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Escritorio</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>aplicación</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>sesión tipo shadow</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Información</translation> </message> @@ -2018,21 +2016,20 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete">No se encontró ningún escritorio al que conectarse</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Filtro</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Elige escritorio:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Atención</translation> </message> @@ -2041,60 +2038,59 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete">Tu profundidad de color actual es diferente de la profundidad de color de tu sesión de x2go. ¡Esto suele provocar problemas en la reconección y en la mayoría de los casos <b>perderás la sesión</b> y tendrás que iniciar una nueva! Te recomendamos cambiar la profundidad de color de tu pantalla a </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24 o 32</translation> + <translation type="obsolete">24 o 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete"> bit y reiniciar tu servidor X antes de reconectar a esta sesión x2go. <br>¿Recuperar esta sesión?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>suspendiendo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>terminando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>¡Contraseña incorrecta!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Iniciada nueva sesión</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Sesión suspendida</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>No se ha podido crear la carpeta: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>No se ha podido guardar el archivo: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation>Salida de emergencia.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Esperando a la salida del proxy.</translation> </message> @@ -2103,14 +2099,14 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete">Error, finalizando el proxy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Parámetro incorrecto: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Ayuda</translation> </message> @@ -2123,12 +2119,12 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete">La opción no está disponible en esta versión</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation>Registro de cambios</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Información Git</translation> </message> @@ -2141,8 +2137,8 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete">No se ha podido guardar el archivo:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>Añadir ventana X2Go</translation> </message> @@ -2157,17 +2153,17 @@ Por razones de seguridad se recomienda finalizar la conexión. <translation type="obsolete">No fue posible crear el tunel SSL:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>Finalizada</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>iniciando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translatorcomment>Not sure if trying to connect to a resumed session or the running session is being resumed. @@ -2176,14 +2172,14 @@ Current translation is for trying to connect a resumed session. If not wil be be <translation>restaurando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Tiempo de conexión finalizado. Cancelando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>cancelando</translation> </message> @@ -2194,20 +2190,20 @@ Unsaved documents will be lost</source> Los documentos no guardados se perderán</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Sesión</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Monitor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translatorcomment>Not sure if "creation time" means the date the session was created</translatorcomment> <translation>Sesión creada en</translation> @@ -2220,7 +2216,7 @@ Los documentos no guardados se perderán</translation> :</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (no se puede abrir el archivo)</translation> </message> @@ -2285,7 +2281,7 @@ Los documentos no guardados se perderán</translation> <translation type="obsolete">No se puede abrir la clave: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Soporte</translation> </message> @@ -2314,7 +2310,7 @@ Los documentos no guardados se perderán</translation> <translation type="obsolete">No se encontró una semart card válida</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Tarjeta no configurada.</translation> </message> @@ -2323,7 +2319,7 @@ Los documentos no guardados se perderán</translation> <translation type="obsolete">El sistema C2Go no reconocoe esta smart card</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Impoble crear el archivo: </translation> </message> @@ -2346,8 +2342,8 @@ Please check your installation</source> Comprueba la instalación del sistema</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Imposible ejecutar el comando: </translation> </message> @@ -2368,12 +2364,12 @@ Actualiza el paquete x2goserver en el servidor</translation> <translation type="obsolete">Imposible escribir:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1252</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>ISO8859-1</translation> </message> @@ -2382,7 +2378,7 @@ Actualiza el paquete x2goserver en el servidor</translation> <translation type="obsolete">Fallo al obtener el tamaño de la ventana (¿está la ventana cerrada?)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>Sesión X2Go</translation> </message> @@ -2391,34 +2387,34 @@ Actualiza el paquete x2goserver en el servidor</translation> <translation type="obsolete">valor incorrecto para el argumento "velocidad"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Contraseña:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>Tipo de teclado:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>Cancelar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>ID de Sesión:<br>Servidor:<br>Nombre de usuario:<br>Monitor:<br>Sesión creada en:<br>Estado:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Aplicaciones...</translation> </message> @@ -2428,105 +2424,104 @@ Actualiza el paquete x2goserver en el servidor</translation> <translation>Iniciando cliente X2Go...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation>Iniciando cliente X2Go en modo portable. La carpeta de datos es: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation>Acerca del cliente X2Go</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation>Cliente X2Go iniciado.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation> encontrado.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> <source>English language requested, not loading translator.</source> - <translation>Lenguaje Inglés solicitado. No se carga el traductor.</translation> + <translation type="obsolete">Lenguaje Inglés solicitado. No se carga el traductor.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation>Error no fatal: no se puede cargar el traductor: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation>Intentando cargar el lenguaje con la menor preferencia si existe.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation>Mantenimiento de sesión ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation>&Crear icono de sesión en el escritorio ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation>&Establecer contraseña para el broker ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation>Test de &conectividad ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation>Carpeta compartida ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation>Clic para ocultar o restaurar la ventana. Clic con el botón derecho para mostrar el menú contextual.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation>Cerrando el cliente X2Go ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation>Cliente X2Go finalizado. Cerrando vínculos.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation>¡Falló la autenticación del broker!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation>no se encontró el Servido X2Go en el entorno LDAP </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation>Error en la conexión: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation>No se pudo encontrar la conexión SSH.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -2539,17 +2534,17 @@ Por razones de seguridad se recomienda finalizar el intento de conexión. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation>Falló la verificación de la clave del equipo.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -2560,142 +2555,157 @@ Por razones de seguridad se recomienda finalizar la conexión. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>No se ha encontrado el archivo know-hosts. Si aceptas el archivo se creará automáticamente.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation>Falló la autenticación.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation><b>Error en la conexión</b> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation>Servidor no disponible.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation>Servidor no disponible.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation>No se encontró ningún escritorio al que conectarse.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation>Tu profundidad de color actual es diferente de la profundidad de color de tu sesión de x2go. ¡Esto suele provocar problemas en la reconección y en la mayoría de los casos <b>perderás la sesión</b> y tendrás que iniciar una nueva! Te recomendamos cambiar la profundidad de color de tu pantalla a </translation> + <translation type="obsolete">Tu profundidad de color actual es diferente de la profundidad de color de tu sesión de x2go. ¡Esto suele provocar problemas en la reconección y en la mayoría de los casos <b>perderás la sesión</b> y tendrás que iniciar una nueva! Te recomendamos cambiar la profundidad de color de tu pantalla a </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation> bits y reiniciar tu servidor X.Org antes de reconectar a esta sesión X2Go.<br />¿Recuperar esta sesión?</translation> + <translation type="obsolete"> bits y reiniciar tu servidor X.Org antes de reconectar a esta sesión X2Go.<br />¿Recuperar esta sesión?</translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation>No ha sido posible crear el túnel SSH para iniciar la sesión (NX): </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation>No fue posible crear el tunel SSL para los datos de sonido: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation>falló el inicio.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation>Habitualmente esto significa que el ejecutable no está disponible. La ruta actual de búsqueda es: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation>devuelve un código de salida distinto de cero o de error en otro caso.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation>Falló la ejecución, el código de salida fue: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation>no pudo empezar a tiempo.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation>Este error no debería haber pasado.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation>no se aceptó la operación de escritura.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation>Probablemente no se está ejectuando correctamente o hubo un fallo en medio.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation>Imposible leer desde xmodmap.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation>se encontró un error desconocido durante el inicio o la ejecución.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation>se ha producido un error no definido.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> @@ -2704,32 +2714,42 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. Rellena un informe de error en <a href="http://wiki.x2go.org/doku.php/wiki:bugs">la página de notificación de errores</a>.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation>El proxy no finalizó después de 3 segundos. Finalizando el proxy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation>Finalizando el cliente X2Go porque empezó en modo oculto.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation>Finalizando el cliente X2Go porque se pasó el parámetro --close-disconnect.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation>¿Seguro que quieres finalizar la sesión? Los documentos no guardados se perderán.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> @@ -2738,121 +2758,121 @@ Los documentos no guardados se perderán.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation> (el archivo no existe)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation> (la carpeta no existe)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation>Valor incorrecto para el argumento "--link".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation>Valor incorrecto para el argumento "--clipboard".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation>Valor incorrecto para el argumento "--sound".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation>Valor incorrecto para el argumento "--geometry".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation>Valor incorrecto para el argumento "--set-kdb".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation>Valor incorrecto para el argumento "--ldap".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation>Valor incorrecto para el argumento "--ldap1".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation>Valor incorrecto para el argumento "--ldap2".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation>Valor incorrecto para el argumento "--pack".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation>Métodos de empaquetado disponibles:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation>Métodos de empaquetado</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation>La opción no está disponible en esta versión.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation>No se ha podido crear la carpeta:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation><br>(C) 2005-2017 de <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation>Fallo al crear o añadir al archivo: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation>Fallo al cambiar los permisos de acceso al archivo: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation>Este es un error porque el sshd impide el acceso al archivo.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation>Imposible cambiar los permisos del directorio: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation>Este error se ha producido porque el servicio sshd no permite el acceso al directorio.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation>Imposible encontrar el ejecutable del servidor sftp. No se encuentra el que viene incluído ni en otros directorios $PATH.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2865,91 +2885,99 @@ Si el ejecutable del servidro sftp está instalado en tu sistema, por favor repo </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation>Error de tipo de clave SSH</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation>Clave SSH desconocida.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation>Finalizadon aplicación.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation>Error al crear la clave SSH en el directorio predeterminado</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation>Fallo al crear la calve SSH en el directorio: '%1'.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation>fallo al ejecutar ssh-keygen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation>Fallo al ejecutar ssh-keygen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation>fallo durante la ejecución de ssh-keygen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation>fallo durante la ejecución de ssh-keygen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation>fallo durante la ejecución de ssh-keygen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation>La ejecución de ssh-keygen finalizó de manera anormal.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation>probablemente fue llamado sin argumentos.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> + <source>Unable to open newly generated %1 public host key file.</source> + <translation type="unfinished">Fallo al abrir el nuevo archivo de clave pública %1 generada en el lado del servidor remoto.</translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="10596"/> + <source>%1 public host key file empty.</source> + <translation type="unfinished">archivo de clave pública %1 en el lado del servidor remoto vacío.</translation> + </message> + <message> <source>Unable to open newly generated %1 public host key file.</source> <comment>%1 in this context will be replaced with the SSH key type (e.g., "RSA", "DSA" or the like.) Please make sure that the translation is correct in this regard. Also, please include the "host" part, to make clear that we're not talking about client keys here.</comment> - <translation>Fallo al abrir el nuevo archivo de clave pública %1 generada en el lado del servidor remoto.</translation> + <translation type="obsolete">Fallo al abrir el nuevo archivo de clave pública %1 generada en el lado del servidor remoto.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> <source>%1 public host key file empty.</source> <comment>%1 in this context will be replaced with the SSH key type (e.g., "RSA", "DSA" or the like.) Please make sure that the translation is correct in this regard. Also, please include the "host" part, to make clear that we're not talking about client keys here.</comment> - <translation>archivo de clave pública %1 en el lado del servidor remoto vacío.</translation> + <translation type="obsolete">archivo de clave pública %1 en el lado del servidor remoto vacío.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation>No se puede abrir la clave: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2962,7 +2990,7 @@ Estas características requieren la ejecución y el funcionamiento de un servido </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2973,7 +3001,7 @@ Si ves este mensaje, repórtalo como un bug en: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2984,14 +3012,14 @@ Por favor, reporta el bug en: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -3002,7 +3030,7 @@ Si ves este mensaje, por favor repórtalo en: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -3017,77 +3045,77 @@ Por favor reporta el bug en: <translation type="obsolete"><br>(C) 2005-2016 de <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation><br>El modo X2GoPlugin fue patrocinado por <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation><br>Cliente para usar con el sistema de acceso remoto X2Go. Este cliente es capaz de conectar con él/los servidor/es X2Go y iniciar, parar, guardar y terminar (si están en ejecucion) sesiones de escritorio. El Cliente X2Go almacena diferentes conexiones a servidores y puede recuperar de manera automática datos de autenticación desde directorios LDAP. Además puede usarse como un sistema de inicio de sesión a pantalla completa (reemplazando a gestores de inicio d [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation><b>Cliente X2Go v. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation>Comprueba los datos de conexión LDAP.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation>Comprueba si el paquete que provee "scdaemon" está instalado. La carpeta de búsqueda actual es: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation>no se pudo empezar todavía.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation>Imposible leer desde scdaemon.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation>No se encontró una tarjeta válida.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation>El sistema X2Go no reconocoe esta smart card.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation>No se puede iniciar el servidor X.Org. Comprueba la instalación del sistema.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation>El servidor remoto no soporta exportar el sistema de archivos a través del tunel SSH. Actualiza el paquete x2goserver en el servidor.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation>No ha sido posible crear el túnel SSH para las carpetas compartidas y la impresión remota: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation>No ha sido posible leer: @@ -3100,92 +3128,92 @@ Actualiza el paquete x2goserver en el servidor.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation>Fallo al obtener el tamaño de la ventana (¿Has cerrado la ventana?)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation>Valor incorrecto para el argumento "velocidad"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation>Aplicaciones...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>Cancelar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Mostrar detalles</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Desconectar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Nueva</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Acceso completo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Sólo ver</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Estado</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Comando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Tipo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Servidor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>IP del cliente</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>ID de la Sesión</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Usuario</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Sólo mis escritorios</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> @@ -3274,13 +3302,13 @@ Por favor, reporta el error en: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation>Desactivando la impresión remota o la compartición de archivos en los ajustes de la sesión eliminará este mensaje.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation>El demonio SSH falló al abrir su clave pública del equipo.</translation> </message> @@ -3347,7 +3375,7 @@ Si tu eres el administrador del equipo ejecuta: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation>El demonio SSH falló al abrir el archivo @@ -3362,12 +3390,12 @@ puedes instalar sshd con <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Restaurar barra de herramientas</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> Haz clic en este botón <br> para restaurar la barra de herramientas </b><br></translation> </message> @@ -3594,116 +3622,119 @@ Ejemplo: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation>No se ha encontrado el ejecutable de PulseAudio. Ni el incorpodado ni en el $PATH local.</translation> + <translation type="obsolete">No se ha encontrado el ejecutable de PulseAudio. Ni el incorpodado ni en el $PATH local.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Si has descargado el paquete pre compilado desde la web oficial, por favor reporta el bug en: + <translation type="obsolete">Si has descargado el paquete pre compilado desde la web oficial, por favor reporta el bug en: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation>¡Fallo al obtener el directorio actual!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation>¡falló getcwd()!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation>¡No se pudo iniciar PulseAudio!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> <source>Sound support will not be available. If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>El soporte de sonido no está disponible + <translation type="obsolete">El soporte de sonido no está disponible Si has descargado el paquete pre compilado desde la web oficial, por favor reporta el bug en: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation>¡Error obteniendo la versión de PulseAudio!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation>Se encontró un carácter inexperado al analizar el número de versión mayor</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation>Se encontró un carácter inexperado al analizar el número de versión menor</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation>Se encontró un carácter inexperado al analizar el número de versión micro</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation>Se intentó saltar el número de versión. Algo está mal.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation>Fallo al convertir la versión mayor de texto a entero.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation>Fallo al convertir la versión menor de texto a entero.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation>Fallo al convertir la versión micro de texto a entero.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation>Formato inexperado.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation>Fallo al iniciar PulseAudio.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation>Fallo al lanzar el sonido de inicio.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation>El soporte de sonido no está disponible.</translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> + <comment>Make sure to include the "Linux packages" part.</comment> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Si has descargado el paquete pre compilado desde la web oficial, por favor reporta el bug en: + <translation type="unfinished">Si has descargado el paquete pre compilado desde la web oficial, por favor reporta el bug en: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> @@ -4039,25 +4070,30 @@ Use X2Go Client's hidden mode?</source> <translation>&Servidor</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Host:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Usuario:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>Puerto SSH:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>Usar claves RSA/DSA para la conexión ssh:</translation> </message> @@ -4066,78 +4102,83 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Intentar auto inicio de sesión (a través del agente ssh o de la clave ssh por defecto)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Autenticación Kerberos 5 (GSSAPI)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Delegación de credenciales GSSAPI al servidor</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>Usar servidor Proxy para la conexión SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Servidor Proxy</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>Mismos datos de inicio de sesión que en el servidor X2Go</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>Misma contraseña que el servidor X2Go</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>Clave RSA/DSA:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation>El cliente X2Go está ejecutándose en modo portable. Deberías usar una ruta hacia tu dispositivo USB donde poder usar tus datos en cualquier lugari.</translation> </message> <message> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> <source>ssh-agent or default ssh key</source> <translation type="obsolete">agente ssh o clave ssh por defecto</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Tipo:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Puerto:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>Tipo de &sesión</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Tipo de sesión:</translation> </message> @@ -4146,45 +4187,46 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Conectar a Windows Terminal Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Conectar al escritorio local</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>Escritorio personalizado</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Aplicación</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Aplicaciones publicadas</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Comando:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Opciones avanzadas...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Ruta al ejecutable</translation> </message> @@ -4193,56 +4235,57 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Conexión RDP directa</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>Puerto RDP:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Abrir imagen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Imágenes</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Archivo con la clave open</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation>Intentar auto inicio de sesión (a través del agente SSH o de la clave SSH por defecto)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation>Agente SSH o clave SSH por defecto</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation>Conectar a Windows Terminal Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation>Conexión RDP directa</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Todos los archivos</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Error</translation> </message> @@ -4251,25 +4294,30 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">el cliente x2go está ejecutándose en modo portable. Debería usar una ruta hacia tu dispositivo usb donde poder usar tus datos dondequiera estés</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Servidor:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>Servidor XDMCP:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>opciones de línea de comando para rdesktop:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Nueva sesión</translation> </message> @@ -4463,16 +4511,23 @@ el sonido en conexiones a través de firewalls</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Parámetros adicionales:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Línea de comando:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>es</translation> </message> @@ -4481,8 +4536,8 @@ el sonido en conexiones a través de firewalls</translation> <translation type="obsolete">pc105/es</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>contraseña</translation> </message> @@ -4583,94 +4638,108 @@ el sonido en conexiones a través de firewalls</translation> <translation type="obsolete">Error en la conexión con el proxy SSH</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation>Error en la conexión con el proxy SSH.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>Error en la conexión con el proxy SSH: </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation>Fallo al crear el tunel SSH.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation>No se puede inicializar libssh.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation>No se puede crear la sesión SSH.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation>No hay conexión con el servidor proxy.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation>Falló la autenticación.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation>Fallo al iniciar el cliente SSH. Por favor comprueba tu instalación y la configuración GSSApi.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation>Comprueba tu configuración GSSApi o elije otro método de autenticación.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation>No se puede abrir el archivo </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation>No se puede crear el archivo remoto </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation>No se puede escribir en el archivo remoto </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>error en %1.</translation> + </message> + <message> <source>channel_open_forward failed.</source> - <translation>error en channel_open_forward.</translation> + <translation type="obsolete">error en channel_open_forward.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> <source>channel_open_session failed.</source> - <translation>error en channel_open_session.</translation> + <translation type="obsolete">error en channel_open_session.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation>Error escribiendo en el socket.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation>Error leyendo el canal.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> <source>channel_write failed.</source> - <translation>error en channel_write.</translation> + <translation type="obsolete">error en channel_write.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation>Error leyendo el socket TCP.</translation> </message> @@ -4723,8 +4792,8 @@ el sonido en conexiones a través de firewalls</translation> <translation type="obsolete">No se puede escribir en el archivo remoto</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>no se puede conectar a </translation> </message> @@ -4737,9 +4806,8 @@ el sonido en conexiones a través de firewalls</translation> <translation type="obsolete">error en channel_open_session</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> - <translation>error en channel_request_exec</translation> + <translation type="obsolete">error en channel_request_exec</translation> </message> <message> <source>error writing to socket</source> diff --git a/res/i18n/x2goclient_et.ts b/res/i18n/x2goclient_et.ts index 5c1e125..37a2fdd 100644 --- a/res/i18n/x2goclient_et.ts +++ b/res/i18n/x2goclient_et.ts @@ -369,13 +369,12 @@ leiavad uuendatud versiooni: <center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation>Ühtegi lubatud XQuartz programmi ei ole valitud.</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> - <comment>You probably should be trying to translate that, although I don't know how OS X calls "Applications" and "Utilities" in Estonian.</comment> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -415,8 +414,8 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Täpsemad valikud</translation> </message> @@ -466,17 +465,17 @@ Some standard installation locations may be: <translation type="obsolete">Valitud asukohast ei leita toimivat X11-rakendust</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>&Ühendus</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation>&Sisend/Väljund</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation>&Media</translation> </message> @@ -716,7 +715,6 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/folderexplorer.cpp" line="81"/> - <comment>Missing translation?</comment> <source>Rename Folder ...</source> <translation type="unfinished"></translation> </message> @@ -994,7 +992,6 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/help.cpp" line="156"/> - <comment>You should probably translate that string, even if it is inconveniently long...</comment> <source>Does not ask for user credentials during session broker authentication. This can be useful if you are using an HTTP(S) session broker without authentication. If you run an HTTP(S) server without authentication, but with user-specific profiles, then put the user name into the broker URL (refer to --broker-url.) The user name then will be extracted from the broker URL and be sent to the session broker. The client's behavior is undefined if this flag is used for non-HTT [...] <translation type="unfinished"></translation> </message> @@ -1283,7 +1280,7 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>us</translation> </message> @@ -1298,28 +1295,28 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>ühendan</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Veebilehitseja</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>E-mail kliendiprogramm</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation>OpenOffice.org</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Terminal</translation> </message> @@ -1328,12 +1325,12 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <translation type="obsolete">Käivitan x2goclient-i 'mobiilses' olekus... Andmekataloog on:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Seaded...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Tugi...</translation> </message> @@ -1346,13 +1343,13 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <translation type="obsolete">X2Go klient on käivitatud.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation>Translaatori laadimine ei õnnestu:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation>Translaator:</translation> </message> @@ -1361,78 +1358,78 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <translation type="obsolete">installeeritud.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Jaga kataloog...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Rakendused...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Peata</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Sulge</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Ühenda uuesti</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>Haagi X2Go akent.lahti ;-)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Minimiseeri töövahendid</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Sessioon:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Lõpeta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Lõpeta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Uus sessioon...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> @@ -1441,7 +1438,7 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <translation type="obsolete">Sessiooni haldamine...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> @@ -1458,13 +1455,13 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <translation type="obsolete">&Ühenduse test...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Näita töövahendite riba</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>Qt andmed</translation> </message> @@ -1479,295 +1476,293 @@ Palun uuenda kasutamaks PulseAudio-t.</translation> <translation>X2Go Client käivitub...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation>Käivitan X2Go Client-i 'mobiilses' olekus... Andmekataloog on: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation>Teave X2Go Client kohta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation>X2Go Client on käivitatud.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation> leitud.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> - <comment>You're right, that should probably not be a translatable string at all. I think I added it for the case that we decide to add an English translation (think American vs. British vs. Australian vs. New Zealand vs ... English) of X2Go Client as well, but it doesn't make too much sense.</comment> <source>English language requested, not loading translator.</source> - <translation>Inglise keel on nõutud, translaatorit ei laeta.</translation> + <comment>You're right, that should probably not be a translatable string at all. I think I added it for the case that we decide to add an English translation (think American vs. British vs. Australian vs. New Zealand vs ... English) of X2Go Client as well, but it doesn't make too much sense.</comment> + <translation type="obsolete">Inglise keel on nõutud, translaatorit ei laeta.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation>Ei suuda laadida translaatorit: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation>Üritame laadida keelt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation>Sessiooni haldamine ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation>&Tee sessiooni ikoon töölauale ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation>&Anna 'broker'-i salasõna ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation>&Ühenduvuse test ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Sessioon</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Valikud</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Abi</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Logi sisse:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Viga</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>Toiming ebaõnnestus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Salasõna on vahetatud</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>Vale salasõna!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Ühendume 'broker'-iga</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Autentimine</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Taasta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation>Ei ole ühendatud</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Multimeedia</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Arendus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Õpetus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Mäng</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Graafika</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Võrk</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Office</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Seaded</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>Süsteem</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Abiprogramm</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Muu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation>Jaga kataloogi ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation>Vasak hiire nupp peidab või taastab akna. Parem nupp näitab menüüd.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation>Sulgen X2Go Client'i ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation>Lõpetanud X2Go Client suleb konksusid.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation>Brokeri autentimine ebaõnnestus!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation>X2Go Serverit ei leia LDAP-st </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation>Ühenduse viga: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation>Ei leia SSH-ühendust.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> - <comment>Seems the be missing the "eavesdropping" part?</comment> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? </source> - <translation type="unfinished">See võib olla 'man-in-the-middle' rünnaku tunnus. + <comment>Seems the be missing the "eavesdropping" part?</comment> + <translation type="obsolete">See võib olla 'man-in-the-middle' rünnaku tunnus. Tusvalisuse kaalutlustel on soovitatav katkestada ühendus. Kas Sa soovid ühenduse katkestada? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation>Võtme kontroll ebaõnnestus.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -1778,142 +1773,169 @@ Kas Sa soovid ühenduse katkestada? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Ei leidu tuntud võtmete faili (known_host). Kui kinnitad selle serveri võtme, moodustame automaatselt ka tuntud võtmete faili.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation>Autentimine ebaõnnestus.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation><b>Ühendus ebaõnnestus</b> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation>Ühtegi serverit ei leidu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation>Server pole kättesaadav.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation>Ühtegi ligipääsetavat töölauda ei ledu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation>Su praegune värvieraldus on erinev kui x2go sessioonil. See võib põhjustada probleeme taasühendamisel ja enamusel juhtudest <b>ühendus kaob</b> ja sa pead alustama uuesti. On kindlasti soovitatav et sa muudaks oma ekraani värvieralduseks </translation> + <translation type="obsolete">Su praegune värvieraldus on erinev kui x2go sessioonil. See võib põhjustada probleeme taasühendamisel ja enamusel juhtudest <b>ühendus kaob</b> ja sa pead alustama uuesti. On kindlasti soovitatav et sa muudaks oma ekraani värvieralduseks </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation> bitid ja käivitaksid X-serveri uuesti enne kui Sa ühendud uuesti selle x2go sessiooniga<br>Kas soovid vaatamata sllele jätkata?</translation> + <translation type="obsolete"> bitid ja käivitaksid X-serveri uuesti enne kui Sa ühendud uuesti selle x2go sessiooniga<br>Kas soovid vaatamata sllele jätkata?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> + <source>This can be an indication of a man-in-the-middle attack. +Somebody might be eavesdropping on you. +For security reasons, it is recommended to stop the connection attempt. +Do you want to terminate the connection? +</source> + <translation type="unfinished">See võib olla 'man-in-the-middle' rünnaku tunnus. +Tusvalisuse kaalutlustel on soovitatav katkestada ühendus. +Kas Sa soovid ühenduse katkestada? +</translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation>Ei suuda luua SSH tunnelit X2Go sessiooni (NX) käivitamiseks: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation>Ei suuda luua SSH tunnelit audio jaoks: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation>käivitamine ebaõnnestus.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation>Ilmselt ei ole programm kättesaadav. Otsitakse kataloogist: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation>saadi mittenulline lõpetuskood või programm lõpetas mingil muul põhjusel töö.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation>Käivitamine ebaõnnestus. Vea kood on: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation>ei käivitunud mõistliku aja jooksul.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation>Sellist viga ei tohiks juhtuda.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation>ei lubanud kirjutamist.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation>See ilmselt ei tööta enam korrektselt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation>Ei suuda lugeda xmodmap'ist.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation>käivitamisel juhtus tundmatu viga.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation>ilmnes tundmatu viga.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> @@ -1922,32 +1944,42 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. Teata veast <a href="http://wiki.x2go.org/doku.php/wiki:bugs">"bugs wiki page"</a>.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation>Proxy ei lõpetanud 3 sekundi jooksul. Proxy tapetakse.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation>Sulen X2Go Cliendi kuna see oli käivitatud peidetud reziimis.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation>Sulen X2Go Cliendi kuna oli antud --close-disconnect parameeter.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation>kas oled kindel et tahad sulgeda? Avatud failid ei salvestu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> @@ -1956,100 +1988,105 @@ Avatud failid ei salvestu.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation> (faili ei leidu)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation> (kataloogi ei leidu)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation>Vale väärtus parameetril "--link".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation>Vale väärtus parameetril "--clipboard".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation>Vale väärtus parameetril "--sound".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation>Vale väärtus parameetril "--geometry".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation>Vale väärtus parameetril "--set-kbd".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation>Vale väärtus parameetril "--ldap".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation>Vale väärtus parameetril "--ldap1".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation>Vale väärtus parameetril "--ldap2".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation>Vale väärtus parameetril "--pack".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation><b>(C) 2005-2017 <b>tublid</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="8512"/> + <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation>Ei suuda luua ega lisada faili: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation>Ei suuda muuta õigusi failile: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation>See on viga kuna sshd võib keelduda sellisest failist.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation>Ei suuda muuta õigusi kataloogile: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation>See on viga kuna sshd võib keelduda sellisest kataloogist.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation>Ei leia sftp-server programmi. Seda kas ei ole või ei leidu teda'$PATH ega lisakataloogides.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2062,82 +2099,82 @@ Kui Teie sftp-server on siiski juba installeeritud, palun teavitage sellisest ve </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation>SSH võtme tüübi valimise viga</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation>Valiti tundmatu SSH võti.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation>Programmi töö katkestamine.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation>SSH võtme baaskataloogi loomise viga</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation>Ei suuda luua SSH võtme baaskataloogi '%1'.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation>ssh-keygen käivitamise viga</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation>Ei suuda käivitada ssh-keygen programmi.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation>ssh-keygen jooksis kinni</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation>Ssh-keygen jooksis kinni.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation>ssh-keygen programmi viga</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation>Ssh-keygen ei lõpetanud korrektselt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation>Tundub et see oli käivitatud tundmatute parameetritega.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation>Ei õnnestu avada äsja genereeritud %1 avaliku võtme faili.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation>%1 public host key on tühi.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2150,7 +2187,7 @@ Need vajavad toimimiseks funktsioneerivat SSH serverit. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2161,7 +2198,7 @@ Kui Te näete seda teadet, teavitage palun: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2172,15 +2209,15 @@ Palun teata veast: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -2191,7 +2228,7 @@ Kui Te näete seda teadet, teavitage palun: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -2202,7 +2239,7 @@ Palun teata veast: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation>SSH daemon ei suuda avada @@ -2221,9 +2258,9 @@ rakenduse 'authorized_keys' faili.</translation> <translation type="obsolete">X2Goclient on suletud.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Palun kontrolli LDAP-sätteid</translation> </message> @@ -2252,7 +2289,7 @@ Kasuta x2goclient programmi peidetuna? </translation> <translation type="obsolete">X2Go viit sessioonile</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation>X2Go -sessioone ei leidunud, suleme. </translation> </message> @@ -2261,38 +2298,38 @@ Kasuta x2goclient programmi peidetuna? </translation> <translation type="obsolete">Kas oled kindel, et tahad kustutada selle sessiooni?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP -ühendus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Ühendus lokaalsele töölauale</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> sees </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation>Ühenduse loomine serveriga: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation> => </translation> </message> @@ -2305,12 +2342,12 @@ Kasuta x2goclient programmi peidetuna? </translation> <translation type="obsolete">Ei leia SSH-ühendust.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Anna võtme salasõna</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>Serveri avalik võti on muutunud. @@ -2321,131 +2358,125 @@ See on nüüd:</translation> <translation type="obsolete">Vigane argumendi "--clipboard" väärtus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Abi</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation>Võimalikud pakkimisviisid:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation>Pakkimisviisid</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation>See parameeter ei ole selles versioonis võimalik.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation>Ei suuda luua kataloogi:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation>Ei leia võtit: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation><br>X2Go Plugin mode sai sponsoreeeritud <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a> poolt<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> - <comment>Will be shown in the GUI help dialog - are you sure you want to leave that untranslated?</comment> - <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation><b>X2Go Client v. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation>Palun kontrolli LDAP-sätteid.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation>Kontrolli kas "scdaemon" toetav lisamoodul on paigaldatud. Otsimiste on: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation>ei ole veel käivitunud.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation>Ei suuda lugeda scdaemon'ist.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation>Ei leia toimivat kaarti.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation>X2Go ei tunne seda kaarti.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation>Ei suuda käivitada X.Org Serverit. Palun kontrolli oma installeeringut.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation>Serveril puudub SSH tunneli kaudu failisüsteemi eksportimise tugi. Palun uuenda x2goserverit.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation>Ei suuda luua SSH tunnelit failide jagamiseks või pronteri jagamiseks: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation>Ei suuda lugeda: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation>Ei suuda määrata akna suurust. (Kas Te sulgesite akna?)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation>"speed" argumendil on vale väärtus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation>Rakendused ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> @@ -2454,19 +2485,19 @@ Palun uuenda x2goserverit.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation>Sessioonis keelatud Kaugprintimine ja/või failide jagamine kirjutab selle üle.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation>SSH daemon ei suuda avada oma avalikku võtit.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>SSH Viga</translation> </message> @@ -2507,7 +2538,7 @@ SSH service Sinu arvutisse.</translation> <translation type="obsolete">SSH daemon ei suuda avada rakenduse avalikku võtit.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>SSH daemon ei suuda avada rakenduse avalikku võtit @@ -2532,7 +2563,7 @@ rakenduse 'authorized_keys' faili.</translation> <translation type="obsolete">Ei leidu tuntud võtmete faili (known_host). Kui kinnitad selle serveri võtme, moodustame automaatselt ka tuntud võtmete faili</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Tundmatu server. Kas Sa usaldad tema võtit.? @@ -2547,7 +2578,7 @@ Tema avaliku võtme 'hash' on:</translation> <translation type="obsolete">Kui programm töötab näita ikooni tegumiribal</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Kontrollkood:</translation> </message> @@ -2563,20 +2594,18 @@ Kas Sa soovid ühenduse katkestada? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Jah</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>Ei</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Kui sa kinnitad uue võtme võib Su ühendus muutuda ebaturvaliseks. @@ -2593,7 +2622,7 @@ Kas Sa soovid ühenduse katkestada? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation>Autentimine ebaõnnestus:</translation> </message> @@ -2602,7 +2631,7 @@ Kas Sa soovid ühenduse katkestada? <translation type="obsolete">Autentimine ebaõnnestus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Anna SSH proxy salasõna</translation> </message> @@ -2613,37 +2642,37 @@ Kas Sa soovid ühenduse katkestada? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Vale salasõna!</b><br /><br /></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation>Yhendus ebaõnnestus: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation>- Vale salasõna.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>tundmatu</translation> </message> @@ -2658,41 +2687,41 @@ Kas Sa soovid ühenduse katkestada? <translation type="obsolete">Server ei ole kättesaadav</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Vali sessioon:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>töötab</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>peatatud</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Töölaud</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>rakendus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>Varisessioon</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Info</translation> </message> @@ -2701,21 +2730,20 @@ Kas Sa soovid ühenduse katkestada? <translation type="obsolete">Ühtegi ligipääsetavat töölauda ei ledu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Valik</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Vali töölaud:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Hoiatus</translation> </message> @@ -2724,56 +2752,55 @@ Kas Sa soovid ühenduse katkestada? <translation type="obsolete">Su praegune värvieraldus on erinev kui x2go sessioonil. See võib põhjustada probleeme taasühendamisel ja enamusel juhtudest <b>ühendus kaob</b> ja Sa pead alustama uuesti. On kindlasti soovitatavet sa muudaksoma ekraani värvieralduseks </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24 või 32 </translation> + <translation type="obsolete">24 või 32 </translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete"> bitti ja käivitaksid X-serveri uuesti enne kui Sa ühendud uuesti selle x2go sessiooniga<br>Kas soovid jätkata vaatamata sllele?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>peatame</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>katkestame</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>Vale salasõna!</b><br><br> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Uus sessioon on käivitatud</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Sessioon jätkub</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>Kataloogi loomine ei õnnestu: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>Ei õnnestu kirjutamine faili: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>Ühendu X2GO aknaga</translation> </message> @@ -2788,12 +2815,12 @@ Kas Sa soovid ühenduse katkestada? <translation type="obsolete">Ei suuda luua SSL Tunnelit:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation>Hädaväljapääs.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Ootame kuni proxy lõpetab.</translation> </message> @@ -2802,29 +2829,29 @@ Kas Sa soovid ühenduse katkestada? <translation type="obsolete">Ebaõnnestus, tapame proxy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>Lõpetatud</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>Käivitub</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>jätkab</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Ühendus aegus, katkestame</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>katkestame</translation> </message> @@ -2835,20 +2862,20 @@ Unsaved documents will be lost</source> Avatud failid ei salvestu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Sessioon</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Ekraan</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>Loomisaeg</translation> </message> @@ -2861,7 +2888,7 @@ Avatud failid ei salvestu</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (ei saa avada faili)</translation> </message> @@ -2906,9 +2933,9 @@ Avatud failid ei salvestu</translation> <translation type="obsolete">vale väärtus parameetril "--pack"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Vale parameeter: </translation> </message> @@ -2929,12 +2956,12 @@ Avatud failid ei salvestu</translation> <translation type="obsolete">See seade ei ole võimalik selles versioonis</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation>Muutuste nimekiri</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Git'i info</translation> </message> @@ -2951,7 +2978,7 @@ Avatud failid ei salvestu</translation> <translation type="obsolete">Võtme avamine ei õnnestu: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Abi</translation> </message> @@ -2980,7 +3007,7 @@ Avatud failid ei salvestu</translation> <translation type="obsolete">Ei leia toimivat kaarti</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Kaart on puudulikult konfigureeritud.</translation> </message> @@ -2989,7 +3016,7 @@ Avatud failid ei salvestu</translation> <translation type="obsolete">X2Go ei tunne seda kaarti</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Ei suuda luua faili:</translation> </message> @@ -3011,8 +3038,8 @@ Please check your installation</source> Palun kontrolli oma installeeringut</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Ei suuda käivitada:</translation> </message> @@ -3035,12 +3062,12 @@ Uuenda x2goserver uuema vastu</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1252</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>ISO8859-1</translation> </message> @@ -3049,7 +3076,7 @@ Uuenda x2goserver uuema vastu</translation> <translation type="obsolete">Akna geomeetriliste parameetrite lugemine ei õnnestu (Kas aken on äkki suletud)?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>X2Go Sessioon</translation> </message> @@ -3058,99 +3085,99 @@ Uuenda x2goserver uuema vastu</translation> <translation type="obsolete">argumendil "speed" on vale väärtus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Salasõna:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>Klaviatuuri asetus:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>Loobu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>Sessiooni ID:<br>Server:<br>Kasutajatunnus:<br>Ekraan:<br>Loomisaeg:<br>Olek:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>Katkesta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Näita täpsemalt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Jätka</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Uus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Kõik õigused</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Ainult vaatlemine</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Olek</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Käsk</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Tüüp</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>Kliendi IP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>Sessiooni ID</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Kasutaja</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Ainult oma töölauad</translation> </message> @@ -3163,12 +3190,12 @@ võid installeerida selle kasutades käsku <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Taasta tegumiriba</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><b><b> Vajuta seda nuppu <b> et tööriistariba oleks jälle nähtav </b><br></translation> </message> @@ -3395,121 +3422,143 @@ Näiteks: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation>Ei leidu PulseAudio moodulit. Ei leidu ei $PATH ega ka lisakataloogidest.</translation> + <translation type="obsolete">Ei leidu PulseAudio moodulit. Ei leidu ei $PATH ega ka lisakataloogidest.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: + <translation type="obsolete">Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation>Could not allocate buffer for getting current working directory!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation>getcwd() ebaõnnestus!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> + <source>Unexpected character found when parsing version string for minor version number</source> + <translation type="unfinished">Tundmatu sümbol peamises keskmises versiooninumbris</translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="454"/> + <source>Unexpected character found when parsing version string for micro version number</source> + <translation type="unfinished">Tundmatu sümbol tagumises versiooninumbris</translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="469"/> + <source>Supposed to skip major version number. Something is wrong.</source> + <translation type="unfinished">Pean vahele jätma peamise versiooninumbri. Midagi on valesti.</translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation>"PulseAusio" käivitumine ebaõnnestus!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation>Heli ei ole võimalik.</translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <comment>Missing at least the upstream Linux packages part, really also "bundled" and "pre-compiled". If the package came from anywhere else, downstream developers are responsible for it...</comment> + <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: +<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> +</source> + <translation type="unfinished">Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: +<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> +</translation> + </message> + <message> <source>Sound support will not be available. If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation type="unfinished">Heli ei ole võimalik. + <translation type="obsolete">Heli ei ole võimalik. Kui laadisid alla ametlikult kodulehelt siis palun teavita: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation>Viga PulseAudio versiooninumbri leidmisel!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation>Tundmatu sümbol versiooninumbris</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> - <comment>I've changed this to "peamises keskmises versiooninumbris" from the original "peamises.keskmises.versiooninumbris"; please make sure it's correct.</comment> <source>Unexpected character found when parsing version string for minor version number</source> - <translation type="unfinished">Tundmatu sümbol peamises keskmises versiooninumbris</translation> + <comment>I've changed this to "peamises keskmises versiooninumbris" from the original "peamises.keskmises.versiooninumbris"; please make sure it's correct.</comment> + <translation type="obsolete">Tundmatu sümbol peamises keskmises versiooninumbris</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> - <comment>I've changed this to "tagumises versiooninumbris" from the original "tagumises.versiooninumbris"; please make sure it's correct.</comment> <source>Unexpected character found when parsing version string for micro version number</source> - <translation type="unfinished">Tundmatu sümbol tagumises versiooninumbris</translation> + <comment>I've changed this to "tagumises versiooninumbris" from the original "tagumises.versiooninumbris"; please make sure it's correct.</comment> + <translation type="obsolete">Tundmatu sümbol tagumises versiooninumbris</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> - <comment>I've changed this to "peamise versiooninumbri" from the original "peamise.versiooninumbri"; please make sure it's correct.</comment> <source>Supposed to skip major version number. Something is wrong.</source> - <translation type="unfinished">Pean vahele jätma peamise versiooninumbri. Midagi on valesti.</translation> + <comment>I've changed this to "peamise versiooninumbri" from the original "peamise.versiooninumbri"; please make sure it's correct.</comment> + <translation type="obsolete">Pean vahele jätma peamise versiooninumbri. Midagi on valesti.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation>Ei suuda muuta peamist versiooninumbrit täisarvuks.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation>Ei suuda muuta keskmist versiooninumbrit täisarvuks.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation>Ei suuda muuta tagumist versiooninumbrit täisarvuks.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation>Tundmatu formaat.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation>Ei suuda käivitada PulseAudio programmi.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation>Ei suuda mängida alustusheli.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> - <comment>Missing at least the upstream Linux packages part, really also "bundled" and "pre-compiled". If the package came from anywhere else, downstream developers are responsible for it...</comment> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation type="unfinished">Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: + <comment>Missing at least the upstream Linux packages part, really also "bundled" and "pre-compiled". If the package came from anywhere else, downstream developers are responsible for it...</comment> + <translation type="obsolete">Kui sa laadisid alla versiooni ametlikult kodulehelt siis palun teavita veast: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> @@ -3558,7 +3607,6 @@ järgi järgmist: </message> <message> <location filename="../../src/x2goutils.cpp" line="192"/> - <comment>Yes, I know this is a huge string and that it's only relevant for OS X/macOS users, but since we support that platform we should also do our best effort in providing translations.</comment> <source>MacPorts users, please install either the port <b>xorg-server</b> or the port <b>xorg-server-devel</b>. Upon successful installation, please follow the instructions printed @@ -3832,25 +3880,30 @@ Kasuta X2Go Client programmi peidetuna?</translation> <translation>&Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Aadress:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Login:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH .-port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>Kasuta RSA/DSA -võtit ssh -ühenduse loomiseks:</translation> </message> @@ -3859,99 +3912,105 @@ Kasuta X2Go Client programmi peidetuna?</translation> <translation type="obsolete">Ürita automaatset sisselogimist (ssh-agenti või vaikimisi ssh võtit kasutades)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation>Ürita automaatset sisselogimist (SSH-agenti või vaikimisi SSH võtit kasutades)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Kerberos 5 (GSSAPI) audentimine</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Saada GSSAPI andmed serverile</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>Kasuta vaheserverit (proxy) SSH -ühenduse loomiseks</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Vaheserver (Proxy)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>Sama kasutanimi kui X2Go -serverilgi</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>Sama salasõna kui X2Go -serverilgi</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>RSA/DSA-võti:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation>SSH-agent või vaikimisi-SSH-võti</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation>Loo ühendus Windows terminal serveriga</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation>Otsene RDP ühendus</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation>X2Go Client-rakendus töötab 'mobiilses' viisis. Kasuta oma usb-seadme asukohamäärangut et pääseksid oma andmetele ligi ükskõik kus sa ka poleks.</translation> </message> <message> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> <source>ssh-agent or default ssh key</source> <translation type="obsolete">ssh-agent või vaikimisi -ssh-võti</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Tüüp:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>&Sessiooni tüüp</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Sessiooni tüüp:</translation> </message> @@ -3960,45 +4019,46 @@ Kasuta X2Go Client programmi peidetuna?</translation> <translation type="obsolete">Loo ühendus Windows terminal serveriga</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Ühenda lokaalsele töölauale</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>Isemääratud meetod</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Üks kindel rakendus</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Lubatud rakendused</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Käsk:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Täpsemad valikud...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Programmi asukoht</translation> </message> @@ -4007,20 +4067,20 @@ Kasuta X2Go Client programmi peidetuna?</translation> <translation type="obsolete">Otsene RDP ühendus</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Ava võtmefail</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Kõik failid</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Viga</translation> </message> @@ -4029,40 +4089,45 @@ Kasuta X2Go Client programmi peidetuna?</translation> <translation type="obsolete">x2goclient-rakendus töötab 'mobiilses' viisis. Kasuta oma usb-seadme asukohamäärangut et pääseksid oma andmetele ligi ükskõik kus sa ka poleks</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>RDP-port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Ava pilt</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Pildid</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>XDMCP -server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>rdesktop -käsurea parameetrid:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Uus sessioon</translation> </message> @@ -4255,16 +4320,23 @@ sound system connections through firewalls</source> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Lisaparameetrid:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Käsurida:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>us</translation> </message> @@ -4273,8 +4345,8 @@ sound system connections through firewalls</source> <translation type="obsolete">pc105/us</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>salasõna</translation> </message> @@ -4375,96 +4447,118 @@ sound system connections through firewalls</source> <translation type="obsolete">SSH vaheserveriga ühendumise viga</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation>SSH vaheserveriga ühendumise viga.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>SSH vaheserveriga ühendumise viga:</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation>Viga SSH vaheserveri ühenduse loomisel.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation>Libssh-teegi initsialiseerimise viga.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> + <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> + <translation type="unfinished">Ei õnnestu SSH kliendiprogrammi käivitamine. Palun kontrolli oma installeerimist ja GSSApi konfiguratsiooni.</translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> + <source>Check your GSSApi configuration or choose another authentication method.</source> + <translation type="unfinished">Kontrolli oma GSSApi konfiguratsiooni või vali mõni muu atentimismeetod.</translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>%1 ebaõnnestus.</translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation>SSH-sessiooni loomine ei õnnestu.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation>Vaheserveriga ühendumise viga.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation>Autentimine ebaõnnestus.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> - <comment>I've changed "GSSA" back to "GSSApi" here - what was the reason for this change? Is it really called like that in Estonian? If yes, we'll have to revert.</comment> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> - <translation type="unfinished">Ei õnnestu SSH kliendiprogrammi käivitamine. Palun kontrolli oma installeerimist ja GSSApi konfiguratsiooni.</translation> + <comment>I've changed "GSSA" back to "GSSApi" here - what was the reason for this change? Is it really called like that in Estonian? If yes, we'll have to revert.</comment> + <translation type="obsolete">Ei õnnestu SSH kliendiprogrammi käivitamine. Palun kontrolli oma installeerimist ja GSSApi konfiguratsiooni.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> - <comment>I've changed "GSSA" back to "GSSApi" here - what was the reason for this change? Is it really called like that in Estonian? If yes, we'll have to revert.</comment> <source>Check your GSSApi configuration or choose another authentication method.</source> - <translation type="unfinished">Kontrolli oma GSSApi konfiguratsiooni või vali mõni muu atentimismeetod.</translation> + <comment>I've changed "GSSA" back to "GSSApi" here - what was the reason for this change? Is it really called like that in Estonian? If yes, we'll have to revert.</comment> + <translation type="obsolete">Kontrolli oma GSSApi konfiguratsiooni või vali mõni muu atentimismeetod.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation>Ei saa avada faili </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation>Ei saa luua serverile faili </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation>Ei suuda kirjutada serveri faili </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> <source>channel_open_forward failed.</source> - <translation>channel_open_forward ebaõnnestus.</translation> + <translation type="obsolete">channel_open_forward ebaõnnestus.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> <source>channel_open_session failed.</source> - <translation>channel_open_session ebaõnnestus.</translation> + <translation type="obsolete">channel_open_session ebaõnnestus.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation>Viga socket'isse kirjutamisel.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation>Kanali lugemisviga.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> <source>channel_write failed.</source> - <translation>channel_write ebaõnnestus.</translation> + <translation type="obsolete">channel_write ebaõnnestus.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation>Viga TCP socket'ist lugemisel.</translation> </message> @@ -4517,8 +4611,8 @@ sound system connections through firewalls</source> <translation type="obsolete">Ei suuda kirjutada serveri faili </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>ei suuda ühenduda </translation> </message> @@ -4531,9 +4625,8 @@ sound system connections through firewalls</source> <translation type="obsolete">channel_open_session ebaõnnestus</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> - <translation>channel_request_exec ebaõnnestus</translation> + <translation type="obsolete">channel_request_exec ebaõnnestus</translation> </message> <message> <source>error writing to socket</source> diff --git a/res/i18n/x2goclient_fi.ts b/res/i18n/x2goclient_fi.ts index 04ac924..b3ab21d 100644 --- a/res/i18n/x2goclient_fi.ts +++ b/res/i18n/x2goclient_fi.ts @@ -385,12 +385,12 @@ voivat hakea tuoreen version täältä: <center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation>XQuartz-sovelleusta ei ole valittu.</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -436,8 +436,8 @@ Muutama standardiasennuksia löytyy täältä: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Edistyneet toiminnot</translation> </message> @@ -487,17 +487,17 @@ Muutama standardiasennuksia löytyy täältä: <translation type="obsolete">Toimivaa X11-sovellusta ei löydy annetusta hakupolusta</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>&Yhteys</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation>&Input/Output</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation>&Media</translation> </message> @@ -1307,7 +1307,7 @@ Päivitä PulseAudioon.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>fi</translation> </message> @@ -1322,28 +1322,28 @@ Päivitä PulseAudioon.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>yhdistää</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Web-selain</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>Sähköpostiohjelma</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation>OpenOffice.org</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Pääte</translation> </message> @@ -1352,12 +1352,12 @@ Päivitä PulseAudioon.</translation> <translation type="obsolete">Käynnistää x2go-asiakasohjelman mobiiliversion...datakansio on:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Asetukset...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Neuvonta...</translation> </message> @@ -1370,13 +1370,13 @@ Päivitä PulseAudioon.</translation> <translation type="obsolete">Käynnistetty x2go-asiakasohjelma</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation>Kääntäjän käynnistys ei onnistu: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation>Kääntäjä: </translation> </message> @@ -1385,78 +1385,78 @@ Päivitä PulseAudioon.</translation> <translation type="obsolete"> asennettu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Jaa kansio...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Sovellukset...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Pysäytä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Lopeta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Uusi yhteys</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>Siirrä X2Go-ikkunaa</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Minimoi toimintopalkki</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Istunto:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Lopeta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Lopeta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Uusi istunto...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> @@ -1465,7 +1465,7 @@ Päivitä PulseAudioon.</translation> <translation type="obsolete">Istunnon hallinta...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> @@ -1482,13 +1482,13 @@ Päivitä PulseAudioon.</translation> <translation type="obsolete">&Yhteystesti...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Näytä toimintopalkki</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>Tietoja Qt:stä</translation> </message> @@ -1503,271 +1503,270 @@ Päivitä PulseAudioon.</translation> <translation>X2Go-yhteysohjelma käynnistyy...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation>X2Go-yhteysohjelma käynnistyy siirrettävässä moodissa. Datahakemisto on: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation>Tietoja X2Go-yhteysohjelmasta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation>X2Go-ohjelma käynnistyi.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation> löytyi.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> <source>English language requested, not loading translator.</source> - <translation>English language requested, not loading translator.</translation> + <translation type="obsolete">English language requested, not loading translator.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation>Ei vakavaa: kielenvaihtaja ei käynnisty: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation>Yrittää käynnistää toissijaisen kielen tiedostot, jos saatavilla.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation>Istunnon hallinta ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation>&Luo istuntokuvake työpöydälle ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation>&Aseta istuntohallinnan salasana ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation>&Yhteystesti ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Istunto</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Valinnat</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Apua</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Kirjaudu:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Virhe</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>Toiminto epäonnistui</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Salasana vaihdettu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>Väärä salasana!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Yhdistää brokeriin</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Autentikointi</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Palauta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation>Ei yhteyttä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Ääni ja video</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Ohjelmakehitys</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Ohjeet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Peli</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Grafiikka</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Verkko</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Toimisto</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Asetukset</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>Järjestelmä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Työkalu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Muuta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation>Jaa kansio ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation>Vasen klikkaus piilottaa tai palauttaa ikkunan. Oikea klikkaus näyttää toimintovalikon.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation>Suljetaan X2Go-asiakasohjelma ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation>X2Go yhteysohjelman sulkeminen valmis.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation>Istuntohallinnan tunnistautuminen epäonnistui!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation>X2Go-palvelinta ei löydy LDAP-rekisteristä </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation>Yhteydenottovirhe: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation>SSH-yhteyttä ei löytynyt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -1780,17 +1779,17 @@ Halutako katkaista yhteyden? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation>Palvelimen avaimen tarkistus epäonnistui.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -1801,142 +1800,157 @@ Halutako keskeyttää? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Tunnettujen palvelinten sijaintitiedostoa ei löydy.Jos hyväksyt palvelimen tunnistusavaimen, puuttuva tiedosto perustetaan automaattisesti.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation>Autentkointi epäonnistui.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation><b>Yhteys katksesi.</b> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation>Palvelinta ei löydy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation>Palvelimeen ei pääse.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation>Toimivaa työpöytää ei löydy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation>Työasemasi näytön väripaletti on eri kuin istunnon paletti. Tästä voi aiheutua ongelmia istunnon aikana ja useimmiten <b>istuntosi katoaa</b> ja joudut käynnistämään uuden! On erittäin suotavaa että vaihdat näyttösi väripaletin arvoon </translation> + <translation type="obsolete">Työasemasi näytön väripaletti on eri kuin istunnon paletti. Tästä voi aiheutua ongelmia istunnon aikana ja useimmiten <b>istuntosi katoaa</b> ja joudut käynnistämään uuden! On erittäin suotavaa että vaihdat näyttösi väripaletin arvoon </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation> bittiä ja käynnistät X.Org-ohjelman ennenkuin yhdistät uudelleen tähän X2Go istuntoon.<br />Haluatko kuitenkin jatkaa tätä istuntoa?</translation> + <translation type="obsolete"> bittiä ja käynnistät X.Org-ohjelman ennenkuin yhdistät uudelleen tähän X2Go istuntoon.<br />Haluatko kuitenkin jatkaa tätä istuntoa?</translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation>SSH-tunnelin avaus epäonnistui X2Go istuntoa varten / (NX) startup: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation>SSH-tunnelin avaus audiodataa varten epäonnistui: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation>ei käynnistynyt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation>Johtuu ilmeisesti siitä että ohjelma ei ole käytettävissä. Nykyinen hakupolku on: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation>palautti nollasta poikkeavan paluukoodin tai kaatui jotenkin muuten.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation>Suoritus epäonnistui, paluukoodi oli: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation>ei käynnistynyt ajoissa.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation>Tätä virhettä ei pitäsi tapahtua.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation>kirjoittaminen oli estetty.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation>Joke ei toimi oikein tai kaatui aiemmin.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation>Ei pysty lukemaan xmodmap-ista.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation>tunnistamaton virhe käynnistymisen tai suorituksen aikana.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation>tunnistamaton virhe.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> @@ -1945,32 +1959,42 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. Lähetä virheraportti kuten ohjeistettu sivulla <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation>Välityspalvelin ei sulkeutunut kolmessa sekunnissa. Se tapetaan.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation>Suljetaan X2Go-asiakasohjelma koska oli käynnistetty piilomoodissa.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation>X2Go-asiakasohjelma suljetaan koska --close-disconnect parametri oli annettu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation>Haluatko varmati sulkea tämän istunnon? Tallentamattomat tiedot katoavat.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> @@ -1979,101 +2003,101 @@ Tallentamattomat tiedot katoavat.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation> (tiedostoa ei ole)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation> (polkua ei ole)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation>Virheellinen arvo ohjaimella "--link".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation>Virheellinen arvo ohjaimella "--clipboard".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation>Virheellinen arvo ohjaimella "--sound".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation>Virheellien arvo ohjaimella "--geometry".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation>Virheellinen arvo ohjaimella "--set-kbd".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation>Virheellinen arvo ohjaimella "--ldap".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation>Virheellinen arvo ohjaimella "--ldap1".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation>Virheellinen arvo ohjaimella "--ldap2".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation>Virheellinen arvo ohjaimella "--pack".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br> Suomenkielinen versio: Martti Pitkänen, martti@aplcomp.fi<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation>Ei pysty luomaan eikä lisäämäään tiedostoon: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation>Tiedoston käyttöoikeuksien muutos ei onnistu: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation>Tämä on virhe koska sshd kieltäisi tällaisen tiedoston.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation>Hakemiston oikeuksien muutos ei onnistu: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation>Tämä on virhe koska sshd kieltäisi tällaisen hakemiston.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation>Sftp palvelinohjelmaa ei löydy. Ei sisäänrakennettua versiota, eikä löydy $PATH muuttujan avullakaan.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2086,82 +2110,82 @@ Jos sftp-server on asennettu järjestelmääsi, raportoi virheestä ja ilmoita m </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation>SSH avaintyypin valintavirhe</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation>Tunnistamanton SSH avain valittu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation>Sovellus suljetaan.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation>SSH-avaimen kotihakemistoa ei pystytty luomaan</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation>Ei pystytty luomaan SSH avaimen kotihakemistoa '%1'.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation>ssh-keygen ei käynnisty</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation>Ei pystytty käynnistämään ssh-keygen ohjelmaa.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation>ssk-keygen kaatui</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation>ssh-keygen ohjelma kaatui.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation>ssh-keygen ohjelmassa oli virhe</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation>ssh-keygen ohjelma ei sulkeutunut oikein.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation>Sitä oli mahdollsesti käytetty väärillä argumenteilla.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation>Ei pysty avaamaan juuri generoitua %1 public host key tiedostoa.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation>%1 public host key tiedosto on tyhjä.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2174,7 +2198,7 @@ Nämä toiminnot vaativat että työasemassasi on käynnissä SSH server. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2185,7 +2209,7 @@ Jos näet tämän iilmoituksen, ilmoita virheestä: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2196,15 +2220,15 @@ Ilmoita virheestä: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -2215,7 +2239,7 @@ Jos näet tämän viestin ilmoita virheestä: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -2226,7 +2250,7 @@ Ilmoita virheesta: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation>SSH prosessi ei pystynyt avaamaan sovelluksen @@ -2245,9 +2269,9 @@ authorized_keys-tiedostoa.</translation> <translation type="obsolete">X2Go-asiakasohjelman sulkeutui.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Tarkista LDAP-asetukset</translation> </message> @@ -2276,7 +2300,7 @@ Käytätkö x2go-asiakasohjelmaa piilotettuna?</translation> <translation type="obsolete">Linkki X2Go -istuntoon </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation>X2Go-istuntoa ei löytynyt, sulkeutuu.</translation> </message> @@ -2285,38 +2309,38 @@ Käytätkö x2go-asiakasohjelmaa piilotettuna?</translation> <translation type="obsolete">Haluatko varmasti poistaa tämän istunnon?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP-yhteys</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Yhteys paikalliselle näytölle</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> käyttäen </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation>Käynnistää yhteyden palvelimeen: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation> kohteeseen </translation> </message> @@ -2329,12 +2353,12 @@ Käytätkö x2go-asiakasohjelmaa piilotettuna?</translation> <translation type="obsolete">Ei löydä SSH-yhteyttä.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Anna avaimen salasana</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>Palvelimen avain vaihtui. @@ -2353,7 +2377,7 @@ Se on nyt: </translation> <translation type="obsolete">Tunnettut työasemat sisältävää tiedostoa ei ole. Jos hyväksyt yhteyden, kyseinen tiedosto luodaan</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Palvelin on tuntematon. Luotatko sen avaimeen? @@ -2368,7 +2392,7 @@ Avaimen tiiviste: </translation> <translation type="obsolete">Näytä istunon ikoni kun se on aktiivinen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Tarkistenumero:</translation> </message> @@ -2383,20 +2407,18 @@ Turvallisuuden takia on syytä katkaista yhteys. Halutko katkaista?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Kyllä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>Ei</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Jos hyväksyt uuden palvelinavaimen yhteytesti turvallisuus saattaa vaarantua. @@ -2412,7 +2434,7 @@ Turvallisuuden takia on syytä katkaista yhteys. Haluatko katkaista?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation>Autentikointi epäonnistui: </translation> </message> @@ -2421,7 +2443,7 @@ Haluatko katkaista?</translation> <translation type="obsolete">Autentikointi epäonnistui</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Anna salasana SSH-proxya varten</translation> </message> @@ -2431,37 +2453,37 @@ Haluatko katkaista?</translation> <translation type="obsolete"><b>Yhteydenotto epäonnistui</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Väärä salasana!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation>Yhteys epäonnistui: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation> - Väärä salasana.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>tuntematon</translation> </message> @@ -2476,41 +2498,41 @@ Haluatko katkaista?</translation> <translation type="obsolete">Palvelinta ei saatavilla</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Valitse istunto:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>käynnissä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>pysäytetty</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Työpöytä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>erillinen sovellus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>varjoistunto</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Tietoja</translation> </message> @@ -2519,21 +2541,20 @@ Haluatko katkaista?</translation> <translation type="obsolete">Työpöytää ei ole käytettävissä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Valinta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Valitse työpöytä:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Varoitus</translation> </message> @@ -2542,9 +2563,8 @@ Haluatko katkaista?</translation> <translation type="obsolete">Käyttämäsi värierottelu on erilainen kuin x2go-istunnon vastaava. Se saattaa aiheuttaa ongelmia kun kun yhdistät uudelleen tähän istuntoon ja useimmiten <b>istunto katoaa</b> ja joudut avaamaan uuden! On erittäin suositeltavaa että muutat värierottelun omalla näytölläsi arvoon </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>25 tai 32</translation> + <translation type="obsolete">25 tai 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> @@ -2552,47 +2572,47 @@ Haluatko katkaista?</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>pysäyttää</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>lopettaa</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>Väärä salasana!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Uusi istunto käynnistyi</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Istuntoa jatkettu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>Kansion luonti ei onnistu: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>Tiedostoon kirjoitus ei onnistu: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>Kytkeydy X2Go-ikkunaan</translation> </message> @@ -2607,12 +2627,12 @@ Haluatko katkaista?</translation> <translation type="obsolete">SSL-tunnelin avaus ei onnistu:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation>Hätäkeskeytys.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Odottaa välityspalvelimen sulkeutumista.</translation> </message> @@ -2621,29 +2641,29 @@ Haluatko katkaista?</translation> <translation type="obsolete">Epäonnistui, sulkee proxyn</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>Lopetettu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>käynnistyy</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>jatkaa</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Yhteys aikakatkaistu, keskeytyy</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>keskeytyy</translation> </message> @@ -2654,20 +2674,20 @@ Unsaved documents will be lost</source> Avoimet tiedostot eivät talletu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Istunto</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Näyttö</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>Luontiaika</translation> </message> @@ -2679,7 +2699,7 @@ Avoimet tiedostot eivät talletu</translation> :</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (tiedosto ei aukea)</translation> </message> @@ -2728,40 +2748,40 @@ Avoimet tiedostot eivät talletu</translation> <translation type="obsolete">Ohjaimella "--pack" on väärä arvo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Väärä parametri: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Ohjeet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation>Valitavissa on nämä pakkausmenetelmät:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation>Pakkausmenetelmät</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation>Vaihtoehtoa ei ole tässä versiossa.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation>Hakemiston luonti ei onnistu:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation>Avaimen haku ei onnistu: </translation> </message> @@ -2771,77 +2791,77 @@ Avoimet tiedostot eivät talletu</translation> Suomenkielinen versio: Martti Pitkänen, martti@aplcomp.fi<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation><br>X2Go Plugin moodin sponsori <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation><br>Täällä asiakasohjelmalla voidaan kirjautua X2Go-palvelimeen ja käynnistää, pysäytää, jatkaa ja lopettaa etätyöpöytä-istuntoja. X2Go-ohjelma tallettaa kaikki yhteysasetukset ja se voi automaattisesti hakea tiedot autentikointia varten LDAP-hakemistoista. Lisäksi sitä voidaan käyttää kokotuutu-pohjaisen kirjautumisnäyttönä (korvaten login-managerin kuten esim. XDM). Sivulta <a href="http://www.x2go.org">x2go.org-projektin kotisivu</a> lö [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation><b>X2Go-asiakasohjelma v. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation>Tarkisa LDAP-asetukset.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation>Tarkista onko paketti joka sisältää ohjelman "scdaemon" asennettu. Hakupolku on: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation>ei käynnistynyt vielä.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation>Ei vastausta ohjelmasta scdaemon.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation>Toimivaa kortta ei löytynyt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation>Tämä kortti ei toimi X2Go-järjestelmässä.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation>X.Org-ohjelma ei käynnisty. Tarkista installointi.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation>Etäpalvelin ei tue SSH-tunneloinnin kautta tapahtuvaa levyjakoa. Päivitä x2goserver paketti.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation>SSH-tunnelin luonti levyjakoa ja tulostusta varten ei onnistu: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation>Luku ei onnistu: @@ -2854,22 +2874,22 @@ Päivitä x2goserver paketti.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation>Näytön geometrian luku ei onnistu. (Suljitko ikkunan?)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation>Virheellinen arvo ohjaimella "speed"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation>Sovellukset ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> @@ -2958,13 +2978,13 @@ Lähetä virheraportti käyttäen: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation>Jos poistat etätulostuksen tai levyjaon istunnon asetuksista pääset eroon tästä ilmoituksesta.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation>SSH-prosessi ei pystynyt lukemaan omaa julkista avaintaan.</translation> </message> @@ -3031,8 +3051,8 @@ Voit tehdä sen itse komennolla: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>SSH-virhe</translation> </message> @@ -3075,7 +3095,7 @@ Pyydä IT -tukihenkilöä asentamaan SSH <translation type="obsolete">SSH -palvelu ei pystynyt selvittämään sovelluspalvelimen julkista avainta.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>SSH-palvelu ei pystynyt selvittämään sovelluksen julkista avainta @@ -3104,12 +3124,12 @@ authoized_keys -tiedostoa.</translation> <translation type="obsolete">Vaihtoehtoa ei tässä versiossa</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation>Muutosluettelo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Git-tietoja</translation> </message> @@ -3126,7 +3146,7 @@ authoized_keys -tiedostoa.</translation> <translation type="obsolete">Avaimen käyttöönotto ei onnistu:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Neuvonta</translation> </message> @@ -3155,7 +3175,7 @@ authoized_keys -tiedostoa.</translation> <translation type="obsolete">Toimikortti puuttuu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Toimikortin asetukset puuttuvat.</translation> </message> @@ -3164,7 +3184,7 @@ authoized_keys -tiedostoa.</translation> <translation type="obsolete">X2Go ei tunnista korttia</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Tiedoston luonti epäonnistui: </translation> </message> @@ -3187,8 +3207,8 @@ Please check your installation</source> Tarkista asennuksen oikeellisuus</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Kännistys ei onnistu: </translation> </message> @@ -3209,12 +3229,12 @@ Päivitä x2goserver palvelinohjelma</translation> <translation type="obsolete">Kirjoittaminen ei onnistu :</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1252</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>ISO8859-1</translation> </message> @@ -3223,7 +3243,7 @@ Päivitä x2goserver palvelinohjelma</translation> <translation type="obsolete">Ikkunoinnin asetusten luku ei onnistu (ikkuna suljettu)?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>X2Go Istunto</translation> </message> @@ -3232,99 +3252,99 @@ Päivitä x2goserver palvelinohjelma</translation> <translation type="obsolete">"speed" -astuksella on virheellinen arvo</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Salasana:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>Näppäimistön tyyppi:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>Peruuta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>Istunnon ID:<br>Palvelin:<br>Käyttäjätunnus:<br>Näyttö:<br>Luontiaika:<br>Tila:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>Keskeytä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Näytä yksityiskohdat</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Jatka</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Uusi</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Kaikki oikeudet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Vain katselu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Tila</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Komento</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Tyyppi</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Palvelin</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>Asiakasohjelman IP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>Isunnon ID</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Käyttäjä</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Vain omat työpöydät</translation> </message> @@ -3337,12 +3357,12 @@ voit asentaa sshd komennolla <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Palauta toimintopalkki</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> Klikkaa tätä nappulaa <br> jotta palkki näkyisi jälleen </b><br></translation> </message> @@ -3488,8 +3508,12 @@ voit asentaa sshd komennolla <translation type="obsolete">Aseta päälle asiakasohjelman tulostus.<br><br>Jos haluat tulostaa tiedoton, tarvitsen erillisen sovelluksen. Tyyppillisesti voit käyttää tätä <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Löydät lisäohjeita <a href="http://www.x2go.org/index.php?id=49">täältä</a>.</translation> </message> <message> - <location filename="../../src/printwidget.cpp" line="59"/> + <source>Please configure your client side printing settings.<br><br>If you want to print the created file, you'll need an external application. Typically you can use <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>You can find further information <a href="http://www.x2go.org/index.php?id=49">here</a [...] <comment>"and" between the first two links untranslated.</comment> + <translation type="obsolete">Aseta päälle asiakasohjelman tulostus.<br><br>Jos haluat tulostaa tiedoton, tarvitsen erillisen sovelluksen. Tyyppillisesti voit käyttää tätä <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Löydät lisäohjeita <a href="http://www.x2go.org/index.php?id=49">täältä</a>.</translation> + </message> + <message> + <location filename="../../src/printwidget.cpp" line="59"/> <source>Please configure your client side printing settings.<br><br>If you want to print the created file, you'll need an external application. Typically you can use <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>You can find further information <a href="http://www.x2go.org/index.php?id=49">here</a [...] <translation type="unfinished">Aseta päälle asiakasohjelman tulostus.<br><br>Jos haluat tulostaa tiedoton, tarvitsen erillisen sovelluksen. Tyyppillisesti voit käyttää tätä <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Löydät lisäohjeita <a href="http://www.x2go.org/index.php?id=49">täältä</a>.</tra [...] </message> @@ -3575,112 +3599,114 @@ Esimerkki: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation>PulseAudio ohjelmaa ei löydy. Se ei ole sisäänrakennettuna eikä se löydy $PATH-muuttujan avullakaan.</translation> + <translation type="obsolete">PulseAudio ohjelmaa ei löydy. Se ei ole sisäänrakennettuna eikä se löydy $PATH-muuttujan avullakaan.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Jos latasit paketin, valmiiksi käännetyn version viralliselta kotisivulta, ilmoita virheestä: + <translation type="obsolete">Jos latasit paketin, valmiiksi käännetyn version viralliselta kotisivulta, ilmoita virheestä: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation>Muistin allokonti ei onnistu kotihakemiston saavuttamiseksi!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> <source>Sound support will not be available. If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Äänen käyttö ei ole mahdollista. + <translation type="obsolete">Äänen käyttö ei ole mahdollista. Jos latasit paketista, valmiin version viralliselta kotisivulat, ilmoita virheestä: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation>Virheellinen muoto.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation>PulseAudio ei käynnisty.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation>Käynnistysääni ei toimi.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation>Äänen käyttö ei ole mahdollista.</translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -4019,25 +4045,30 @@ Käytätkö X2Go-ohjelmaa piilomoodissa?</translation> <translation>&Palvelin</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Palvelin:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Käyttäjä:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH-portti:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>Käytä RSA/DSA-avainta ssh-yhteyden luomiseen:</translation> </message> @@ -4046,99 +4077,105 @@ Käytätkö X2Go-ohjelmaa piilomoodissa?</translation> <translation type="obsolete">Yritä automaattista kirjautumista (ssh-välittäjää tai oletus-ssh-avainta käyttäen)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation>Kokeile automaattista kirjautumista (käyttäen SSH-agenttia tai SSH-oletusavainta)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Kerberos 5 (GSSAPI) autentikointi</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Anna GSSAPI-tunnistustiedot palvelimelle</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>Käytä proxy-palvelinta SSH-yhteyden luomiseen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Proxy-palvelin</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>Sama käyttäjätunnus kuin X2Go-palvelimeen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>Sama salasana kuin X2Go-palvelimeen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>RSA/DSA-avain:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation>SSH-agentti tai oletus-SSH-avain</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation>Yhistä Windows Terminal Serveriin</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation>Suora RDP-yhteys</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation>X2Go-yhteysohjelma tomii nyt siirrettävässä moodissa. Sinun pitää käyttää USB-laitteesi polkua jotta pääset käsiksi tietoihisi missä oletkin.</translation> </message> <message> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> <source>ssh-agent or default ssh key</source> <translation type="obsolete">ssh-agentti tai oletus -ssh-avain</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Tyyppi:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Portti:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>&Istuntotyyppi</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Istuntotyyppi:</translation> </message> @@ -4147,45 +4184,46 @@ Käytätkö X2Go-ohjelmaa piilomoodissa?</translation> <translation type="obsolete">Yhdista Windows terminal serveriin</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Yhdistä palvelimen omaan näyttöön</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>Muokattu työpöytä</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Erillinen sovellus</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Julkaistut sovellukset</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Komento:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Edistyneet toiminnot...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Ohjelman hakupolku</translation> </message> @@ -4194,20 +4232,20 @@ Käytätkö X2Go-ohjelmaa piilomoodissa?</translation> <translation type="obsolete">Suora RPP-yhteys</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Lue avain-tiedosto</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Kaikki tiedostot</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Virhe</translation> </message> @@ -4216,40 +4254,45 @@ Käytätkö X2Go-ohjelmaa piilomoodissa?</translation> <translation type="obsolete">x2go-asiakasohjelma on siirrettävässä moodissa. Käytä usb-laiteen hakupolkua jotta pääset joka paikasta käsiksi omiin tietoihisi</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>RDP-portti:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Avaa kuva</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Kivat</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Palvelin:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>XDMCP-palvelin:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>rdesktop-komentorivin optiot:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Uusi istunto</translation> </message> @@ -4442,16 +4485,23 @@ sound system connections through firewalls</source> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Lisäohjaimet:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Komentorivi:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>fi</translation> </message> @@ -4460,8 +4510,8 @@ sound system connections through firewalls</source> <translation type="obsolete">pc105/us</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>salasana</translation> </message> @@ -4562,94 +4612,108 @@ sound system connections through firewalls</source> <translation type="obsolete">SSH -proxyssa on yhteysvirhe</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation>SSH-välityspalvelimen yhteysvirhe.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>SSH proxyssa on yhteysvirhe:</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation>Tunnelointi SSH-välityspalvelimen kautta epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation>Libssh-kirjaston avaus epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation>SSH-istunnon luonti epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation>Ei yhteyttä välityspalvelimeen.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation>Autentikointi epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation>SSH-asiakasohjelma ei käynnisty. Tarkista asennukset ja GSSApi configurointi.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation>Tarkista GSSApi-asetukset tai valitse toinen autentikointimentelmä.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation>Tiedosto ei avaudu </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation>Tiedosto luonti palvelimeen ei onnistu </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation>Kirjoittaminen palvelimen tiedostoon ei onnistu </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>%1 epäonnistui.</translation> + </message> + <message> <source>channel_open_forward failed.</source> - <translation>channel_open_forward epäonnistui.</translation> + <translation type="obsolete">channel_open_forward epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> <source>channel_open_session failed.</source> - <translation>channel_open_session epäonnistui.</translation> + <translation type="obsolete">channel_open_session epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation>Sokettiin kirjoitus epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation>Kanavan luku epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> <source>channel_write failed.</source> - <translation>channel_write epäonnistui.</translation> + <translation type="obsolete">channel_write epäonnistui.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation>TCP-soketin luku epäonnistui.</translation> </message> @@ -4702,8 +4766,8 @@ sound system connections through firewalls</source> <translation type="obsolete">Etätiedostoon kirjoitus ei onnistu</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>yhteys ei avaudu tähän kohteeseen </translation> </message> @@ -4716,9 +4780,8 @@ sound system connections through firewalls</source> <translation type="obsolete">channel_open_session epäonnistui</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> - <translation>channel_request_exec epäonnistui</translation> + <translation type="obsolete">channel_request_exec epäonnistui</translation> </message> <message> <source>error writing to socket</source> diff --git a/res/i18n/x2goclient_fr.ts b/res/i18n/x2goclient_fr.ts index 2894c49..72db698 100644 --- a/res/i18n/x2goclient_fr.ts +++ b/res/i18n/x2goclient_fr.ts @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE TS> -<TS version="2.1" language="fr"> +<TS version="2.0" language="fr"> <context> <name>AppDialog</name> <message> @@ -670,7 +670,6 @@ Vous la trouverez peut-être dans l'un de ces emplacements standards : </message> <message> <source>Shows git information as used at compile time. [Deprecated: please use --version.]</source> - <extracomment>Please don't exclude the depcration notice.</extracomment> <translation type="unfinished">Montre les informations git utilisées au moment de la compilation.</translation> </message> <message> @@ -1386,7 +1385,7 @@ Utiliser le mode caché de X2Go Client ?</translation> </message> <message> <source>24 or 32</source> - <translation>24 ou 32</translation> + <translation type="obsolete">24 ou 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> @@ -1753,7 +1752,7 @@ utilisée pour exporter les dossiers et les imprimantes.</translation> </message> <message> <source>English language requested, not loading translator.</source> - <translation>Langue anglaise demandée, pas de traducteur à charger.</translation> + <translation type="obsolete">Langue anglaise demandée, pas de traducteur à charger.</translation> </message> <message> <source>Non-fatal: can't load translator: </source> @@ -1865,11 +1864,11 @@ Voulez-vous mettre fin à la connexion ? </message> <message> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation>La profondeur de couleur de votre serveur X est différente de celle de votre session X2Go. Cela peut pauser problème pour se reconnecter et la plupart du temps, <b>vous allez perdre la session</b>. Vous êtes fortement encouragé à changer la profondeur de couleur de couleur de votre serveur X à </translation> + <translation type="obsolete">La profondeur de couleur de votre serveur X est différente de celle de votre session X2Go. Cela peut pauser problème pour se reconnecter et la plupart du temps, <b>vous allez perdre la session</b>. Vous êtes fortement encouragé à changer la profondeur de couleur de couleur de votre serveur X à </translation> </message> <message> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation>bits et redémarrer votre serveur X avant de vous reconnecter à votre session.<br />Souhaitez-vous tout de même rétablir cette session ?</translation> + <translation type="obsolete">bits et redémarrer votre serveur X avant de vous reconnecter à votre session.<br />Souhaitez-vous tout de même rétablir cette session ?</translation> </message> <message> <source>Unable to create SSH tunnel for X2Go session (NX) startup: @@ -2424,6 +2423,30 @@ Veuillez rapporter le bug sur : <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation><br>(C) 2005-2017 par <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> + <message> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>PrintDialog</name> @@ -2596,13 +2619,13 @@ lpr -P hp_laserjet</translation> <name>PulseManager</name> <message> <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation>Executable PulseAudio introuvable. Ni empaqueté, ni trouvé dans $PATH ni dans aucun dossier supplémentaire.</translation> + <translation type="obsolete">Executable PulseAudio introuvable. Ni empaqueté, ni trouvé dans $PATH ni dans aucun dossier supplémentaire.</translation> </message> <message> <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Si vous avez téléchargé la version empaquetée, pré-compilée à partir du site officiel, veuillez rapporter un bug sur : + <translation type="obsolete">Si vous avez téléchargé la version empaquetée, pré-compilée à partir du site officiel, veuillez rapporter un bug sur : <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> @@ -2624,7 +2647,7 @@ lpr -P hp_laserjet</translation> If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>La prise en charge du son sera indisponible. + <translation type="obsolete">La prise en charge du son sera indisponible. Si vous avez téléchargé la version empaquetée, pré-compilée à partir du site officiel, veuillez rapporter un bug sur : <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> @@ -2682,6 +2705,10 @@ Si vous avez téléchargé la version empaquetée, pré-compilée à partir du s <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> + <message> + <source>Sound support will not be available.</source> + <translation>La prise en charge du son sera indisponible.</translation> + </message> </context> <context> <name>QObject</name> @@ -3105,6 +3132,18 @@ Utiliser le mode caché de X2Go Client ?</translation> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation>X2Go Client est démarré en mode portable. Vous devriez utiliser un chemin sur votre appareil USB pour pouvoir accéder à vos données où que vous soyez.</translation> </message> + <message> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SettingsWidget</name> @@ -3229,6 +3268,10 @@ Utiliser le mode caché de X2Go Client ?</translation> <source>RDP client</source> <translation>Client RDP</translation> </message> + <message> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ShareWidget</name> @@ -3305,7 +3348,7 @@ Utiliser le mode caché de X2Go Client ?</translation> </message> <message> <source>channel_request_exec failed</source> - <translation>échec de channel_request_exec</translation> + <translation type="obsolete">échec de channel_request_exec</translation> </message> <message> <source>SSH proxy connection error.</source> @@ -3353,11 +3396,11 @@ Utiliser le mode caché de X2Go Client ?</translation> </message> <message> <source>channel_open_forward failed.</source> - <translation>échec de channel_open_forward.</translation> + <translation type="obsolete">échec de channel_open_forward.</translation> </message> <message> <source>channel_open_session failed.</source> - <translation>échec de channel_open_session.</translation> + <translation type="obsolete">échec de channel_open_session.</translation> </message> <message> <source>Error writing to socket.</source> @@ -3369,12 +3412,21 @@ Utiliser le mode caché de X2Go Client ?</translation> </message> <message> <source>channel_write failed.</source> - <translation>échec de channel_write.</translation> + <translation type="obsolete">échec de channel_write.</translation> </message> <message> <source>Error reading from TCP socket.</source> <translation>Erreur de lecture à partir du socket TCP.</translation> </message> + <message> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>échec de %1.</translation> + </message> </context> <context> <name>SshProcess</name> diff --git a/res/i18n/x2goclient_nb_no.ts b/res/i18n/x2goclient_nb_no.ts index 707ad82..f23ea95 100644 --- a/res/i18n/x2goclient_nb_no.ts +++ b/res/i18n/x2goclient_nb_no.ts @@ -1602,7 +1602,7 @@ Vennligst sjekk instillingene dine</translation> </message> <message> <source>24 or 32</source> - <translation>24 eller 32</translation> + <translation type="obsolete">24 eller 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> @@ -2212,7 +2212,7 @@ authoized_keys file.</source> </message> <message> <source>English language requested, not loading translator.</source> - <translation>English language requested, not loading translator.</translation> + <translation type="obsolete">English language requested, not loading translator.</translation> </message> <message> <source>Non-fatal: can't load translator: </source> @@ -2322,11 +2322,11 @@ Vil du avbryte tilkoblingen? </message> <message> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation>Din nåværende fargedybde er forskjellig fra fargedybden i din X2Go sesjon. Dette kan skape problemer ved gjenoppkobling til denne sesjonen, og i de fleste tilfellene <b>vil du miste hele sesjonen</b>. og du må starte en ny en! Det er sterkt anbefalt å endre fargedybden på skjemen din til </translation> + <translation type="obsolete">Din nåværende fargedybde er forskjellig fra fargedybden i din X2Go sesjon. Dette kan skape problemer ved gjenoppkobling til denne sesjonen, og i de fleste tilfellene <b>vil du miste hele sesjonen</b>. og du må starte en ny en! Det er sterkt anbefalt å endre fargedybden på skjemen din til </translation> </message> <message> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation> bit og deretter restarte X.Org Server før du kobler til denne X2Go sesjonen.<br />Gjenoppta denne sesjonen uansett?</translation> + <translation type="obsolete"> bit og deretter restarte X.Org Server før du kobler til denne X2Go sesjonen.<br />Gjenoppta denne sesjonen uansett?</translation> </message> <message> <source>Unable to create SSH tunnel for X2Go session (NX) startup: @@ -2871,6 +2871,30 @@ Please report a bug on: <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation type="unfinished"><br>(C) 2005-2016 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br> {2005-2017 ?}</translation> </message> + <message> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>PrintDialog</name> @@ -2900,7 +2924,11 @@ Please report a bug on: <translation type="obsolete">Du kan reaktivere denne dialogen ved å benytte X2Go Client innstillingene (Innstillinger -> Innstillinger)</translation> </message> <message> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <comment>Please adapt this to the new message, note that it has changed.</comment> + <translation type="obsolete">Du kan reaktivere denne dialogen ved å benytte X2Go Client innstillingene (Innstillinger -> Innstillinger)</translation> + </message> + <message> <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished">Du kan reaktivere denne dialogen ved å benytte X2Go Client innstillingene (Innstillinger -> Innstillinger)</translation> </message> @@ -3063,16 +3091,6 @@ Eksempel: <context> <name>PulseManager</name> <message> - <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> - </message> - <message> - <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> <source>Could not allocate buffer for getting current working directory!</source> <translation type="unfinished"></translation> </message> @@ -3085,14 +3103,6 @@ Eksempel: <translation type="unfinished"></translation> </message> <message> - <source>Sound support will not be available. - -If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> <source>Error fetching PulseAudio version number!</source> <translation type="unfinished"></translation> </message> @@ -3137,6 +3147,10 @@ If you downloaded the bundled, pre-compiled version from the official home page, <translation type="unfinished"></translation> </message> <message> + <source>Sound support will not be available.</source> + <translation type="unfinished"></translation> + </message> + <message> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -3602,6 +3616,18 @@ Use X2Go Client's hidden mode?</source> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation type="unfinished"></translation> </message> + <message> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SettingsWidget</name> @@ -3783,6 +3809,10 @@ lydsystem forbindelser gjennom brannmurer</translation> <source>RDP client</source> <translation>RDP klient</translation> </message> + <message> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>ShareWidget</name> @@ -3932,7 +3962,7 @@ lydsystem forbindelser gjennom brannmurer</translation> </message> <message> <source>channel_request_exec failed</source> - <translation>channel_request_exec feilet</translation> + <translation type="obsolete">channel_request_exec feilet</translation> </message> <message> <source>error writing to socket</source> @@ -3996,11 +4026,11 @@ lydsystem forbindelser gjennom brannmurer</translation> </message> <message> <source>channel_open_forward failed.</source> - <translation>channel_open_forward feilet.</translation> + <translation type="obsolete">channel_open_forward feilet.</translation> </message> <message> <source>channel_open_session failed.</source> - <translation>channel_open_session feilet.</translation> + <translation type="obsolete">channel_open_session feilet.</translation> </message> <message> <source>Error writing to socket.</source> @@ -4012,12 +4042,21 @@ lydsystem forbindelser gjennom brannmurer</translation> </message> <message> <source>channel_write failed.</source> - <translation>channel_write feilet.</translation> + <translation type="obsolete">channel_write feilet.</translation> </message> <message> <source>Error reading from TCP socket.</source> <translation>Feil ved lesing av tcp sokkelen.</translation> </message> + <message> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>%1 feilet.</translation> + </message> </context> <context> <name>SshProcess</name> diff --git a/res/i18n/x2goclient_nl.ts b/res/i18n/x2goclient_nl.ts index 31daae0..63bc9d0 100644 --- a/res/i18n/x2goclient_nl.ts +++ b/res/i18n/x2goclient_nl.ts @@ -385,12 +385,12 @@ kunnen de nieuwste versie downloaden via: <center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation>Geen geschikte XQuartz applicatie geselecteerd.</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -436,8 +436,8 @@ Locaties voor installatie kunnen de volgende zijn: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Uitgebreide opties</translation> </message> @@ -488,17 +488,17 @@ Locaties voor installatie kunnen de volgende zijn: <translation type="obsolete">Geen geschikte X11 applicatie gevonden in geselecteerde pad</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>&Verbinding</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation>&Input/Output</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation>&Media</translation> </message> @@ -1304,7 +1304,7 @@ Please upgrade to PulseAudio.</source> </message> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>us</translation> </message> @@ -1315,28 +1315,28 @@ Please upgrade to PulseAudio.</source> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>verbinden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Internetbrowser</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>Email client</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation>OpenOffice.org</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Terminal</translation> </message> @@ -1345,12 +1345,12 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">x2goclient wordt gestart in portable modus... data directory is:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Instellingen ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Ondersteuning...</translation> </message> @@ -1363,13 +1363,13 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Gestart x2goclient.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation>Kan vertaler niet laden:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation>Vertaler:</translation> </message> @@ -1378,78 +1378,78 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete"> geïnstalleerd.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Gedeelde map...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Applicaties...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Onderbreken</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Beëindigen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Opnieuw verbinden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>X2Go scherm losmaken</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Taakbalk minimaliseren</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Sessie:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Afsluiten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Afsluiten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Nieuwe sessie ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> @@ -1458,7 +1458,7 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Sessiebeheer...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> @@ -1475,13 +1475,13 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">&Verbindingstest ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Taakbalk tonen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>Over Qt</translation> </message> @@ -1497,271 +1497,270 @@ Please upgrade to PulseAudio.</source> <translation>X2Go Client wordt gestart...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation>X2Go Client wordt gestart in portable modus... data directory is:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation>Over X2Go client</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation>X2Go client gestart.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation> gevonden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> <source>English language requested, not loading translator.</source> - <translation>Engelse taal gekozen, vertaling niet geladen.</translation> + <translation type="obsolete">Engelse taal gekozen, vertaling niet geladen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation>Niet fatale fout: kan vertaling niet laden: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation>Geprobeerd een taal te laden die een lagere prioriteit heeft, indien beschikbaar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation>Sessiebeheer...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation>&Sessie icoon aanmaken op bureaublad ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation>&Wachtwoord voor broker invoeren ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation>&Verbindingstest ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Sessie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Opties</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Help</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Inloggen:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Fout</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>Bewerking mislukt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Wachtwoord veranderd</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>Verkeerd wachtwoord!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Verbinden met broker</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Authenticatie</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Herstellen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation>Niet verbonden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Multimedia</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Ontwikkeling</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Educatie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Games</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Grafisch</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Netwerk</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Kantoor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Instellingen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>Systeem</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Gereedschap</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Overige</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation>Gedeelde map...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation>Linker muisknop voor verbergen/herstellen venster. Rechter muisknop om menu te tonen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation>X2Go client sluiten...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation>X2Go client afgesloten.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation>Authenticatie met broker mislukt!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation>Geen X2Go server gevonden in LDAP </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation>Verbindingsfout: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation>Kon geen SSH verbinding vinden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -1773,17 +1772,17 @@ Vanwege veiligheidsoverwegingen is het aanbevolen de verbinding te verbreken. Wilt u de verbinding verbreken?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation>Verificatie van host sleutel mislukt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -1793,142 +1792,157 @@ Vanwege veiligheidsoverwegingen is het aanbevolen om de verbinding te stoppen. Wilt u de verbinding afbreken?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Kon het known host bestand niet vinden. Als u de host sleutel accepteert zal dit bestand automatisch aangemaakt worden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation>Authenticatie mislukt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation><b>Verbinding mislukt.</b> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation>Geen server beschikbaar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation>Geen server beschikbaar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation>Geen beschikbaar bureaubladomgeving gevonden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation>Uw huidige kleurdiepte verschilt van de kleurdiepte van uw X2Go sessie. Dit kan problemen veroorzaken bij het opnieuw verbinden met deze sessie. In de meeste gevallen <b>zult u deze sessie dan ook verliezen</b> en moet u een nieuwe starten! Het is ten zeerste aanbevolen om de kleurdiepte van uw scherm aan te passen naar </translation> + <translation type="obsolete">Uw huidige kleurdiepte verschilt van de kleurdiepte van uw X2Go sessie. Dit kan problemen veroorzaken bij het opnieuw verbinden met deze sessie. In de meeste gevallen <b>zult u deze sessie dan ook verliezen</b> en moet u een nieuwe starten! Het is ten zeerste aanbevolen om de kleurdiepte van uw scherm aan te passen naar </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation> bits en uw X.Org Server te herstarten voordat u opnieuw verbinding maakt met deze X2Go sessie.<br />Deze sessie toch hervatten?</translation> + <translation type="obsolete"> bits en uw X.Org Server te herstarten voordat u opnieuw verbinding maakt met deze X2Go sessie.<br />Deze sessie toch hervatten?</translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation>SSH tunnel voor deze X2Go sessie niet mogelijk (NX) startup: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation>Opzetten SSL tunnel niet mogelijk voor audio-data: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation>Starten mislukt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation>Dit komt waarschijnlijk omdat de binary niet beschikbaar is. Het huidige pad is: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation>niet geldige exit code gegenereerd.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation>Uitvoeren mislukt, exit code was: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation>niet op tijd gestart.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation>Deze foutmelding zou niet mogen optreden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation>geen schrijf actie verwacht.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation>Draait waarschijnlijk niet correct of is inmiddels gecrashed.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation>Lezen van xmodmap niet mogelijk.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation>er is een onbekende fout opgetreden tijdens opstarten of uitvoeren.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation>een onbekende fout is opgetreden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> @@ -1937,32 +1951,42 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. U kunt deze fout melden zoals beschreven op deze <a href="http://wiki.x2go.org/doku.php/wiki:bugs">wiki pagina</a>.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation>Proxy niet afgesloten na 3 seconden. Stoppen van proxy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation>X2Go client zal worden afgesloten omdat het in de verborgen modus is gestart.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation>X2Go client zal worden afgesloten vanwege disconnect parameter.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation>Weet u zeker dat u deze sessie wilt beëindigen? Niet opgeslagen documenten zullen verloren gaan.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> @@ -1971,121 +1995,121 @@ Niet opgeslagen documenten zullen verloren gaan.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation> (bestand bestaat niet)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation> (directory bestaat niet)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation>Ongeldige waarde voor parameter "--link".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation>Ongeldige waarde voor parameter "--klembord".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation>Ongeldige waarde voor parameter "--geluid".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation>Ongeldige waarde voor parameter "--geometry".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation>Ongeldige waarde voor parameter "--set-kbd".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation>verkeerde waarde voor parameter "--ldap".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation>Ongeldige waarde voor parameter "--ldap1".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation>Ongeldige waarde voor parameter "--ldap2".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation>Ongeldige waarde voor parameter "--pack".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation>Beschikbare pack methodes:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation>Pack methodes</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation>Optie is niet beschikbaar in dit pakket.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation type="unfinished"><br>(C) 2005-2016 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br> {2005-2017 ?}</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation type="unfinished"><br>Client voor gebruik van de X2Go netwerkgebasseerde computeromgeving. Met deze client maakt u verbinding met de X2Go server(s) en kunt u desktop-sessies starten, stoppen, hervatten en (actieve sessies) beeindigen. De X2Go Client slaat verschillende serververbindingen op in, en kan automatisch authenticatie data opvragen van, LDAP directories. Verder kan de client gebruikt worden als fullscreen inlog scherm (vervanging voor inlog managers al [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2094,82 +2118,82 @@ If the sftp-server binary is installed on your system, please report a bug menti <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2178,7 +2202,7 @@ These features require a running and functioning SSH server on your computer. <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2186,7 +2210,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2194,14 +2218,14 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -2209,7 +2233,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -2217,7 +2241,7 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation>SSH daemon kon het geautoriseerde sleutelbestand van @@ -2236,9 +2260,9 @@ deze applicatie niet openen.</translation> <translation type="obsolete">x2goclient afgesloten.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Controleer aub LDAP instellingen</translation> </message> @@ -2271,7 +2295,7 @@ X2Goclient in verborgen modus gebruiken?</translation> <translation type="obsolete">X2Go link naar sessie </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation>Geen X2Go sessies gevonden, afsluiten.</translation> </message> @@ -2280,38 +2304,38 @@ X2Goclient in verborgen modus gebruiken?</translation> <translation type="obsolete">Weet u zeker dat u deze sessie wilt verwijderen?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP connectie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Connectie naar lokale desktop</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> aan </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation>Verbinden met server gestart: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation> naar </translation> </message> @@ -2324,17 +2348,17 @@ X2Goclient in verborgen modus gebruiken?</translation> <translation type="obsolete">Kon geen SSH verbinding vinden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Verificatie code:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Wachtwoordzin ingeven om sleutel te decoderen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>Host sleutel voor de server is gewijzigd. @@ -2356,20 +2380,18 @@ Wilt u de verbinding verbreken?</translation> <translation type="obsolete">Verificatie van host sleutel mislukt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>Nee</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Als u de nieuwe host sleutel accepteert kan dit de beveiliging van uw verbinding schaden. @@ -2390,14 +2412,14 @@ Wilt u de verbinding verbreken?</translation> <translation type="obsolete">Kon het known host bestand niet vinden. Als u de host sleutel accepteert zal dit bestand automatisch aangemaakt worden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Deze server is onbekend. Vertrouwt u de host sleutel? Publieke sleutel hash: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation>Authenticatie mislukt: </translation> </message> @@ -2406,7 +2428,7 @@ Publieke sleutel hash: </translation> <translation type="obsolete">Authenticatie mislukt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Wachtwoord ingeven voor SSH proxy</translation> </message> @@ -2417,37 +2439,37 @@ Publieke sleutel hash: </translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Verkeerd wachtwoord!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation>Verbinding mislukt: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation> - Verkeerd wachtwoord.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>onbekend</translation> </message> @@ -2460,41 +2482,41 @@ Publieke sleutel hash: </translation> <translation type="obsolete">Server niet beschikbaar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Selecteer sessie:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>actief</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>onderbroken</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Bureaublad</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>enkele applicatie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>schaduw sessie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Informatie</translation> </message> @@ -2503,21 +2525,20 @@ Publieke sleutel hash: </translation> <translation type="obsolete">Geen toegankelijk bureaublad gevonden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Filter</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Selecteer bureaubladomgeving:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Waarschuwing</translation> </message> @@ -2526,56 +2547,55 @@ Publieke sleutel hash: </translation> <translation type="obsolete">Uw huidige kleurdiepte verschilt van de kleurdiepte van uw x2go sessie. Dit kan problemen veroorzaken bij het opnieuw verbinden met deze sessie. In de meeste gevallen <b>zult u deze sessie dan ook verliezen</b> en moet u een nieuwe starten! Het is ten zeerste aanbevolen om de kleurdiepte van uw scherm aan te passen naar </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24 of 32</translation> + <translation type="obsolete">24 of 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete">bit en uw X-server te herstarten voordat u opnieuw verbinding maakt met deze x2go sessie.<br>Deze sessie toch hervatten?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>onderbreken</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>afsluiten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>Verkeerd wachtwoord!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Nieuwe sessie gestart</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Sessie hervat</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>Aanmaken map niet mogelijk: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>Aanmaken bestand niet mogelijk: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>X2Go scherm vastmaken</translation> </message> @@ -2590,13 +2610,13 @@ Publieke sleutel hash: </translation> <translation type="obsolete">Opzetten SSL tunnel niet mogelijk:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translatorcomment>?</translatorcomment> <translation>Afsluiten bij noodgeval.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Wachten op afsluiten van proxy.</translation> </message> @@ -2605,29 +2625,29 @@ Publieke sleutel hash: </translation> <translation type="obsolete">Mislukt, proxy wordt afgebroken.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>Klaar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>starten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>hervatten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Timeout bij verbinding, afbreken</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>afbreken</translation> </message> @@ -2638,20 +2658,20 @@ Unsaved documents will be lost</source> Niet opgeslagen documenten zullen verloren gaan</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Sessie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Beeldscherm</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>Aanmaaktijd</translation> </message> @@ -2664,7 +2684,7 @@ Niet opgeslagen documenten zullen verloren gaan</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (kan bestand niet openen)</translation> </message> @@ -2713,14 +2733,14 @@ Niet opgeslagen documenten zullen verloren gaan</translation> <translation type="obsolete">verkeerde waarde voor argument"--pack"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Verkeerde parameter: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Help</translation> </message> @@ -2738,22 +2758,22 @@ Niet opgeslagen documenten zullen verloren gaan</translation> <translation type="obsolete">Optie is niet beschikbaar in deze uitgave</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation>Logboek met wijzigingen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Git info</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation>Aanmaken map niet mogelijk:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation>Kan sleutel niet openen: </translation> </message> @@ -2762,7 +2782,7 @@ Niet opgeslagen documenten zullen verloren gaan</translation> <translation type="obsolete"><br>(C) 2005-2016 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation type="unfinished"><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></translation> </message> @@ -2772,67 +2792,67 @@ Niet opgeslagen documenten zullen verloren gaan</translation> <translation type="obsolete"><br>Client voor gebruik van de X2Go netwerkgebasseerde computeromgeving. Met deze client maakt u verbinding met de X2Go server(s) en kunt u desktop-sessies starten, stoppen, hervatten en (actieve sessies) beeindigen. De X2Go Client slaat verschillende serververbindingen op in, en kan automatisch authenticatie data opvragen van, LDAP directories. Verder kan de client gebruikt worden als fullscreen inlog scherm (vervanging voor inlog managers als [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation><b>X2Go Client v. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation>Controleer aub LDAP instellingen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation>Controleer of het pakket dat voorziet in "scdaemon" geïnstalleerd is. Huidige pad verwijzing is: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation>nog niet gestart.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation>Lezen van scdaemon niet mogelijk.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation>Geen geldige kaart gevonden.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation>Deze kaart is onbekend binnen het X2Go systeem.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation>Kan X.Org Server niet starten. Controleer aub uw installatie.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation>De remote server ondersteund het exporteren van bestanden door een SSH tunnel niet. Aub uw x2goserver sofwarepakket updaten.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation>Opzetten van SSH tunnel voor delen van mappen en printer ondersteuning niet mogelijk: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation>Lezen niet mogelijk: @@ -2845,22 +2865,22 @@ Aub uw x2goserver sofwarepakket updaten.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation>Fout bij opvragen venster geometrie (venster gesloten?)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation>verkeerde waarde voor argument "snelheid"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation>Applicaties...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> @@ -2949,13 +2969,13 @@ Geef aub deze fout door via de X2Go bugtracker op: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation>Het uitschakelen van remote printen of delen van bestanden bij de sessie instellingen zal ervoor zorgen dat deze melding verdwijnt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation>SSH daemon kon de publieke sleutel van de applicatie niet openen.</translation> </message> @@ -3022,8 +3042,8 @@ Als u zelf beheerdersrechten heeft op dit systeem, type dan het volgende command </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>SSH fout</translation> </message> @@ -3064,7 +3084,7 @@ Vraag aub uw systeembeheerder om uw computer te voorzien van de SSH service.</tr <translation type="obsolete">SSH daemon kon de publieke sleutel van de applicatie niet openen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>SSH daemon kon de publieke sleutel van de applicatie die gebruikt wordt @@ -3092,7 +3112,7 @@ authoized_keys file.</source> <translation type="obsolete">Kan sleutel niet openen: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Ondersteuning</translation> </message> @@ -3121,7 +3141,7 @@ authoized_keys file.</source> <translation type="obsolete">Geen geldige kaart gevonden</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Kaart is niet geconfigureerd.</translation> </message> @@ -3130,7 +3150,7 @@ authoized_keys file.</source> <translation type="obsolete">Deze kaart is onbekend binnen het X2Go systeem</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Bestand aanmaken niet mogelijk: </translation> </message> @@ -3153,8 +3173,8 @@ Please check your installation</source> Controleer aub uw installatie</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Uitvoeren niet mogelijk: </translation> </message> @@ -3175,12 +3195,12 @@ Aub updaten naar het nieuwste x2goserver sofwarepakket</translation> <translation type="obsolete">Schrijven niet mogelijk:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1252</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>ISO8859-1</translation> </message> @@ -3189,7 +3209,7 @@ Aub updaten naar het nieuwste x2goserver sofwarepakket</translation> <translation type="obsolete">Fout bij opvragen venster geometrie (venster gesloten)?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>X2Go sessie</translation> </message> @@ -3198,99 +3218,99 @@ Aub updaten naar het nieuwste x2goserver sofwarepakket</translation> <translation type="obsolete">verkeerde waarde voor argument"snelheid"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Wachtwoord:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>Toetsenbordindeling:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>Annuleren</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>Sessie ID:<br>Server:<br>Gebruikersnaam:<br>Scherm:<br>Aanmaaktijd:<br>Status:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>Afbreken</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Toon details</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Hervatten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Nieuw</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Volledige toegang</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Alleen bekijken</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Status</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Commando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Type</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>Client IP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>Sessie ID</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Gebruiker</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Alleen mijn desktops</translation> </message> @@ -3303,12 +3323,12 @@ u kunt sshd installeren met <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Taakbalk herstellen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> Klik op deze button <br> om de taakbalk te herstellen </b><br></translation> </message> @@ -3332,11 +3352,15 @@ u kunt sshd installeren met </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <comment>Please adapt this to the new message. Note that it has changed.</comment> <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished">U kunt deze dialoog opnieuw activeren via de X2Go Client instellingen dialoog (Menu -> Opties -> Instellingen)</translation> </message> <message> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> + <comment>Please adapt this to the new message. Note that it has changed.</comment> + <translation type="obsolete">U kunt deze dialoog opnieuw activeren via de X2Go Client instellingen dialoog (Menu -> Opties -> Instellingen)</translation> + </message> + <message> <source>You've deactivated the x2go client printing dialog.</source> <translation type="obsolete">U heeft de x2goclient printer dialoog uitgeschakeld.</translation> </message> @@ -3536,106 +3560,90 @@ Voorbeeld: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> - <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> - <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> - <source>Sound support will not be available. - -If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -3972,25 +3980,30 @@ X2Go Client in verborgen modus gebruiken?</translation> <translation>&Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Host:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Inloggen:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH poort:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>Gebruik RSA/DSA sleutel voor ssh verbinding:</translation> </message> @@ -3999,99 +4012,105 @@ X2Go Client in verborgen modus gebruiken?</translation> <translation type="obsolete">Probeer automatisch inloggen (ssh-agent of standaard ssh sleutel)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation>Probeer automatisch inloggen (via SSH-agent of standaard SSH sleutel)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Kerberos 5 (GSSAPI) authenticatie</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Verplaatsen van GSSAPI informatie naar de server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>Gebruik proxy server voor SSH verbinding</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Proxy server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>Hetzelfde inloggen als op X2Go server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>Hetzelfde wachtwoord als op X2Go server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>RSA/DSA sleutel:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation>SSH-agent of standaard SSH sleutel</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation>Verbinding maken met Windows terminal server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation>Directe RDP verbinding</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation>X2Go Client is actief in portable modus. U moet een pad op uw USB device gebruiken om in staat te zijn uw bestanden te benaderen, waar u ook maar bent.</translation> </message> <message> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> <source>ssh-agent or default ssh key</source> <translation type="obsolete">ssh-agent of standaard ssh sleutel</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Type:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Poort:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>&Sessie type</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Sessie type:</translation> </message> @@ -4100,45 +4119,46 @@ X2Go Client in verborgen modus gebruiken?</translation> <translation type="obsolete">Verbinding maken met Windows terminal server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Verbinden met lokale bureaublad</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>Aangepast bureaublad</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Enkele applicatie</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Gepubliceerde applicaties</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Commando:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Uitgebreide opties...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Pad naar exe bestand</translation> </message> @@ -4147,20 +4167,20 @@ X2Go Client in verborgen modus gebruiken?</translation> <translation type="obsolete">Directe RDP verbinding</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Open sleutel bestand</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Alle bestanden</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Fout</translation> </message> @@ -4170,40 +4190,45 @@ X2Go Client in verborgen modus gebruiken?</translation> maar bent</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>RDP poort:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Afbeelding openen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Afbeeldingen</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>XDMCP server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>rdesktop commandoregel opties:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Nieuwe sessie</translation> </message> @@ -4384,22 +4409,29 @@ sound system connections through firewalls</source> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Extra parameters:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Commandoregel:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>us</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>wachtwoord</translation> </message> @@ -4496,94 +4528,108 @@ sound system connections through firewalls</source> <context> <name>SshMasterConnection</name> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>Kan niet verbinden met </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation>SSH proxy verbindingsfout.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation>Opzetten SSH proxy tunnel mislukt.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation>Kan libssh niet initialiseren.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation>Kan geen SSH sessie opzetten.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation>Kan niet verbinden met proxy server.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation>Authenticatie mislukt.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation>Starten van SSH client mislukt. Controleer aub uw installatie en GSSApi configuratie.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation>Controleer uw GSSApi configuratie of kies een andere authenticatie methode.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation>Kan bestand niet openen </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation>Remote bestand aanmaken niet mogelijk </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation>Kan niet naar remote bestand schrijven </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>%1 mislukt.</translation> + </message> + <message> <source>channel_open_forward failed.</source> - <translation>forwarden_open_kanaal mislukt.</translation> + <translation type="obsolete">forwarden_open_kanaal mislukt.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> <source>channel_open_session failed.</source> - <translation>sessie_open_kanaal mislukt.</translation> + <translation type="obsolete">sessie_open_kanaal mislukt.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation>Fout bij schrijven naar socket.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation>Fout bij lezen van kanaal.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> <source>channel_write failed.</source> - <translation>schrijven_kanaal mislukt.</translation> + <translation type="obsolete">schrijven_kanaal mislukt.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation>Fout bij lezen TCP socket.</translation> </message> @@ -4592,8 +4638,8 @@ sound system connections through firewalls</source> <translation type="obsolete">SSH proxy verbindingsfout</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>SSH proxy verbindingsfout: </translation> </message> @@ -4652,10 +4698,9 @@ sound system connections through firewalls</source> <translation type="obsolete">sessie_open_kanaal mislukt</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> <translatorcomment>?</translatorcomment> - <translation>exec_kanaal_verzoek mislukt</translation> + <translation type="obsolete">exec_kanaal_verzoek mislukt</translation> </message> <message> <source>error writing to socket</source> diff --git a/res/i18n/x2goclient_pt.ts b/res/i18n/x2goclient_pt.ts index fe4c1e4..7a6f6cf 100644 --- a/res/i18n/x2goclient_pt.ts +++ b/res/i18n/x2goclient_pt.ts @@ -339,12 +339,12 @@ can find updated versions on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -376,8 +376,8 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation type="unfinished"></translation> </message> @@ -417,17 +417,17 @@ Some standard installation locations may be: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation type="unfinished"></translation> </message> @@ -1169,7 +1169,7 @@ Please upgrade to PulseAudio.</source> <name>ONMainWindow</name> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation type="unfinished"></translation> </message> @@ -1180,141 +1180,141 @@ Please upgrade to PulseAudio.</source> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation type="unfinished"></translation> </message> @@ -1324,271 +1324,266 @@ Please upgrade to PulseAudio.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> - <source>English language requested, not loading translator.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -1597,17 +1592,17 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -1615,290 +1610,288 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> - <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> - <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -1907,169 +1900,188 @@ If the sftp-server binary is installed on your system, please report a bug menti <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2078,7 +2090,7 @@ These features require a running and functioning SSH server on your computer. <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2086,7 +2098,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2094,14 +2106,14 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -2109,7 +2121,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -2117,510 +2129,502 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> - <source>24 or 32</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation type="unfinished"></translation> </message> @@ -2824,106 +2828,90 @@ Example: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> - <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> - <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> - <source>Sound support will not be available. - -If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -3211,217 +3199,234 @@ Use X2Go Client's hidden mode?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation type="unfinished"></translation> </message> @@ -3557,22 +3562,29 @@ Use X2Go Client's hidden mode?</source> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation type="unfinished"></translation> </message> @@ -3661,108 +3673,105 @@ Use X2Go Client's hidden mode?</source> <context> <name>SshMasterConnection</name> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> - <source>channel_open_forward failed.</source> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> - <source>channel_open_session failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> - <source>channel_write failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation type="unfinished"></translation> </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> - <source>channel_request_exec failed</source> - <translation type="unfinished"></translation> - </message> </context> <context> <name>SshProcess</name> diff --git a/res/i18n/x2goclient_ru.ts b/res/i18n/x2goclient_ru.ts index 2b0b5ca..e2fd9f5 100644 --- a/res/i18n/x2goclient_ru.ts +++ b/res/i18n/x2goclient_ru.ts @@ -465,8 +465,8 @@ </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Продвинутые установки</translation> </message> @@ -509,12 +509,12 @@ can find updated versions on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -525,17 +525,17 @@ Some standard installation locations may be: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>С&оединение</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation>&Ввод/Вывод</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation>&Медиа</translation> </message> @@ -1661,7 +1661,7 @@ Please upgrade to PulseAudio.</source> <name>ONMainWindow</name> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>ru</translation> </message> @@ -1670,30 +1670,30 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">pc105/ru</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Поддержка ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Сессия:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Выход</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Выход</translation> </message> @@ -1702,7 +1702,7 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">&Новая сессия ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> @@ -1711,36 +1711,36 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Управление сессиями...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Установки ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>Ошибка SSH</translation> </message> @@ -1781,7 +1781,7 @@ service on your computer.</source> <translation type="obsolete">Серверу SSH не удалось открыть "public host key" приложения.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>Серверу SSH не удалось открыть "public host key" приложения используемый для экспорта ФС и принтеров.</translation> @@ -1792,7 +1792,7 @@ authoized_keys file.</source> <translation type="obsolete">Серверу SSH не удалось открыть "authorized_keys" файл приложения.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Восстановить панель инструментов</translation> </message> @@ -1801,12 +1801,12 @@ authoized_keys file.</source> <translation type="obsolete">О программе "X2GO Client"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>О Qt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Сессия</translation> </message> @@ -1816,30 +1816,30 @@ authoized_keys file.</source> <translation type="obsolete">Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Сессия</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Опции</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Помощь</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Пользователь:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Код проверки:</translation> </message> @@ -1854,8 +1854,8 @@ Do you want to terminate the connection? Прервать соединение?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Если Вы продолжите, безопасность соединения может быть скомпрометированой. Обновить ключ?</translation> @@ -1869,36 +1869,36 @@ Do you want to terminate the connection? Прекратить соединение?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Новая сессия запущенна</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Сессия восстановленна</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>Невозможно создать каталог:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>Невозможно записать файл:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation>Аварийный выход.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Ожидание завершения прокси.</translation> </message> @@ -1911,14 +1911,14 @@ Do you want to terminate the connection? <translation type="obsolete">неверное значение для параметра "--clipboard"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Неверный параметр:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Помощь</translation> </message> @@ -1931,12 +1931,12 @@ Do you want to terminate the connection? <translation type="obsolete">Опция недоступна в этой сборке</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation>Изменения</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Информация Git</translation> </message> @@ -1949,7 +1949,7 @@ Do you want to terminate the connection? <translation type="obsolete">Невозможно открыть ключ:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Карта не сконфигурирована.</translation> </message> @@ -1958,29 +1958,29 @@ Do you want to terminate the connection? <translation type="obsolete">Ошибка чтения геометрии окна (окно закрыто)?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Пароль:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>Раскладка Клавиатуры:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>ОК</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>Отмена</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Приложения...</translation> </message> @@ -1989,52 +1989,52 @@ Do you want to terminate the connection? <translation type="obsolete">Неверный ответ брокера</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Ошибка</translation> </message> @@ -2043,7 +2043,7 @@ Do you want to terminate the connection? <translation type="obsolete">Проверте настройки LDAP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation type="unfinished">Сервер X2Go не найден в LDAP </translation> </message> @@ -2052,13 +2052,13 @@ Do you want to terminate the connection? <translation type="obsolete">Удалить сессию?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> на </translation> </message> @@ -2068,7 +2068,7 @@ Do you want to terminate the connection? <translation type="obsolete"><b>Ошибка соединения</b><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>Неверный пароль!</b><br><br></translation> </message> @@ -2077,51 +2077,51 @@ Do you want to terminate the connection? <translation type="obsolete">Не доступен ни один сервер</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Сессия:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Восстановить</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Прервать</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Завершить</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Новая</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Дисплей</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Статус</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Сервер</translation> </message> @@ -2130,33 +2130,32 @@ Do you want to terminate the connection? <translation type="obsolete">Время создания</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>IP клиента</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>ID сессии</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>активна</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>прервана</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Предупреждение</translation> </message> @@ -2165,32 +2164,30 @@ Do you want to terminate the connection? <translation type="obsolete">Глубина цвета вашего дисплея не соответствует глубине цвета данной сессии. Это может помешать восстановлению сессии и в большинстве случаев<b>сессия будет утеряна</b> Рекомендуется изменить глубину цвета вашего дисплея на(sp)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24 или 32</translation> + <translation type="obsolete">24 или 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete"> бит и перезапустить X-сервер до восстановления сессии.<br>Попробовать восстановить сессию не смотря на данное предупреждение?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Да</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation></translation> </message> @@ -2199,12 +2196,12 @@ Do you want to terminate the connection? <translation type="obsolete">Ошибка соединения(</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Введите фразу-пароль для ключа</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>Ключ на сервере изменен:</translation> @@ -2222,15 +2219,14 @@ It is now: </source> <translation type="obsolete">Не могу найти файл с ключами. Если вы примете этот ключ, файл будет создан автоматически</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Сервер не известен. Доверяете ли вы этому ключу? Public key hash: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>Нет</translation> </message> @@ -2239,7 +2235,7 @@ Public key hash: </translation> <translation type="obsolete">Ошибка проверки ключа</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation></translation> </message> @@ -2248,23 +2244,23 @@ Public key hash: </translation> <translation type="obsolete">Ошибка авторизации</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Введите пароль для SSH прокси</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation></translation> </message> @@ -2273,12 +2269,12 @@ Public key hash: </translation> <translation type="obsolete">Сервер не доступен</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>прерывается</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>завершается</translation> </message> @@ -2298,106 +2294,101 @@ Public key hash: </translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>соединение</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> - <source>English language requested, not loading translator.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -2406,17 +2397,17 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -2424,179 +2415,167 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> - <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> - <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>запуск</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>восстановление</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Таймаут соединения, отмена</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>отмена</translation> </message> @@ -2605,7 +2584,7 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. <translation type="obsolete"><b>ID сессии:<br>Сервер:<br>Пользователь:<br>Дисплей:<br>Время создания:<br>Статус:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>Отмена</translation> </message> @@ -2625,7 +2604,7 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (невозможно открыть файл)</translation> </message> @@ -2650,7 +2629,7 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. <translation type="obsolete">Available pack methodes:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Поддержка</translation> </message> @@ -2691,7 +2670,7 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. <translation type="obsolete">Эта карта не сконфигурирована для использования с X2Go</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Невозможно создать файл: </translation> </message> @@ -2730,42 +2709,42 @@ Please check your settings</source> <translation type="obsolete">Почтовый клиент</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Терминал</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>неизвестно</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Команда</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Тип</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Оконный менеджер</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>приложение</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>теневая сессия</translation> </message> @@ -2774,8 +2753,8 @@ Please check your settings</source> <translation type="obsolete"><br>Ошибка настроек "sudo"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Невозможно выполнить: </translation> </message> @@ -2790,17 +2769,17 @@ Please check your settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Веб-броузер</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>Почтовый клиент</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Новая сессия ...</translation> </message> @@ -2809,8 +2788,8 @@ Please check your settings</source> <translation type="obsolete">Управление сессиями...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Панель инструментов</translation> </message> @@ -2819,9 +2798,9 @@ Please check your settings</source> <translation type="obsolete">О программе "X2GO Client"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Проверьте настройки LDAP</translation> </message> @@ -2834,16 +2813,16 @@ Please check your settings</source> <translation type="obsolete">Удалить сессию?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Неверный пароль!</b><br><br></translation> </message> @@ -2852,15 +2831,15 @@ Please check your settings</source> <translation type="obsolete">Не доступен ни один сервер</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <oldsource>Active connection</oldsource> <translation>Соединение не установлено</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>Время создания</translation> </message> @@ -2879,17 +2858,17 @@ Please check your settings</source> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>ID сессии:<br>Сервер:<br>Пользователь:<br>Дисплей:<br>Время создания:<br>Статус:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Экспорт каталога...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Показать детали</translation> </message> @@ -2914,13 +2893,13 @@ Please update to a newer x2goserver package</source> <translation type="obsolete">&Создать ярлык сессии на рабочем столе...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation></translation> </message> @@ -2933,82 +2912,82 @@ Please update to a newer x2goserver package</source> <translation type="obsolete">&Тест соединения...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>Ошибка</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Пароль изменен</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>Неверный пароль!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Авторизация</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Восстановить</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Мультимедиа</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Разработка</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Обучение</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Игры</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Графика</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Сеть</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Офис</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Установки</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>Система</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Утилиты</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Другие</translation> </message> @@ -3042,24 +3021,24 @@ Use x2goclient hidden mode?</source> <translation type="obsolete">Сессия X2Go не найдена</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP соединение</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>Отсоединить окно</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>Присоединить окно</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>завершена</translation> </message> @@ -3080,19 +3059,19 @@ Please check your installation</source> Переустановите X2Go Client</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>Сессия X2Go</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Свернуть панель</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -3101,7 +3080,7 @@ These features require a running and functioning SSH server on your computer. <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -3109,7 +3088,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -3117,14 +3096,14 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -3132,7 +3111,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -3140,13 +3119,13 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> Щелкните по этой иконке <br> чтобы восстановить панель инструментов </b><br></translation> </message> @@ -3163,156 +3142,186 @@ you can install sshd with <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Соединение с локальным десктопом</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Информация</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Фильтр</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Выбрать десктоп:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -3321,183 +3330,183 @@ If the sftp-server binary is installed on your system, please report a bug menti <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Только смотреть</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Пользователь</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> @@ -3506,24 +3515,24 @@ Please update your x2goserver package.</source> <translation type="obsolete">Доступный десктоп не найден</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Полный доступ</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Только мои десктопы</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Повторить соединение</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Соединение с брокером</translation> </message> @@ -3540,12 +3549,12 @@ Please update your x2goserver package.</source> <translation type="obsolete"><br>Клиент сетевого окружения X2Go. Данный клиент предназначен для соединения с сервером (серверами) X2Go и запуска, восстановления или завершения удаленной сессии. Клиент X2Go сохраняет настройки соединений и может запрашивать информацию о пользователях из LDAP. В последнем случае клиент может использоваться как менеджер входа в систему (замена менеджера подобного xdm) для окружения "тонких клиентов" X2Go. Посетите http://x2go.org для [...] </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1251</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>KOI8-R</translation> </message> @@ -3779,106 +3788,90 @@ Example: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> - <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> - <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> - <source>Sound support will not be available. - -If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -4226,25 +4219,25 @@ Use X2Go Client's hidden mode?</source> <translation>&Сервер</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Хост:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Пользователь:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH порт:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>RSA/DSA ключ для ssh соединения:</translation> </message> @@ -4253,48 +4246,48 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Автоматическое соединение с SSH ключом по умолчанию или программой ssh-agent</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Авторизация Kerberos 5 (GSSAPI)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Делегация GSSAPI на сервер</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>Использовать прокси сервер для SSH соединения</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Прокси сервер</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>Такое же имя пользователя как на сервере X2Go</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>Такой же пароль как на сервере X2Go</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>Ключ RSA/DSA:</translation> </message> @@ -4303,22 +4296,22 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Автоматическое соединение с SSH ключом по умолчанию или программой ssh-agent</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Тип:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Порт:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>&Тип сессии</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Тип сессии:</translation> </message> @@ -4327,35 +4320,35 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Соединение с терминальным сервером Windows</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>Другой оконный менеджер</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Приложение</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Удаленные приложения</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Команда:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Продвинутые установки...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Путь к исполняемому файлу</translation> </message> @@ -4364,95 +4357,112 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Прямое RDP соединение</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>RDP порт:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Открыть изображение</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Изображения</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Открыть файл с ключом</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Все файлы</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Сервер:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>Опции командной строки rdesktop:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Новая сессия</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Соединение с локальным десктопом</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>Сервер XDMCP:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Ошибка</translation> </message> @@ -4650,16 +4660,23 @@ sound system connections through firewalls</source> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Дополнительные параметры:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Командная строка:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>ru</translation> </message> @@ -4668,8 +4685,8 @@ sound system connections through firewalls</source> <translation type="obsolete">pc105/ru</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>пароль</translation> </message> @@ -4770,94 +4787,96 @@ sound system connections through firewalls</source> <translation type="obsolete">Ошибка соединения с SSH прокси сервером</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>Ошибка соединения с SSH прокси сервером:</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> - <source>channel_open_forward failed.</source> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> - <source>channel_open_session failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> - <source>channel_write failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation type="unfinished"></translation> </message> @@ -4878,16 +4897,11 @@ sound system connections through firewalls</source> <translation type="obsolete">Проверте настройки GSSAPI или выберите другой метод авторизации</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation></translation> </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> - <source>channel_request_exec failed</source> - <translation></translation> - </message> </context> <context> <name>SshProcess</name> diff --git a/res/i18n/x2goclient_sv.ts b/res/i18n/x2goclient_sv.ts index 281c7cd..78f4a9d 100644 --- a/res/i18n/x2goclient_sv.ts +++ b/res/i18n/x2goclient_sv.ts @@ -388,12 +388,12 @@ kan hitta uppdaterade versioner här: <center><a href="https://www.xquartz.org/">https://www.xquartz.org/</a></center></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation>Ingen giltig XQuartz-applikation vald.</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -439,8 +439,8 @@ Några vanliga installationssökvägar är: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Avancerade alternativ</translation> </message> @@ -490,17 +490,17 @@ Några vanliga installationssökvägar är: <translation type="obsolete">Ingen X11-applikation hittades i angiven sökväg</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>&Anslutning</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation>&In-/Utdata</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation>&Multimedia</translation> </message> @@ -1322,7 +1322,7 @@ Var vänlig uppgradera till PulseAudio.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>se</translation> </message> @@ -1337,28 +1337,28 @@ Var vänlig uppgradera till PulseAudio.</translation> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>ansluter</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Webbläsare</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>E-postklient</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation>OpenOffice.org</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Terminal</translation> </message> @@ -1367,12 +1367,12 @@ Var vänlig uppgradera till PulseAudio.</translation> <translation type="obsolete">Startar x2goclient i portabelt läge ... datakatalog är: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Inställningar...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Hjälp ...</translation> </message> @@ -1385,13 +1385,13 @@ Var vänlig uppgradera till PulseAudio.</translation> <translation type="obsolete">Startade x2goclient.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation>Kan inte ladda översättare: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation>Översättare: </translation> </message> @@ -1400,73 +1400,73 @@ Var vänlig uppgradera till PulseAudio.</translation> <translation type="obsolete"> installerad.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Dela mapp ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Vila</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Avsluta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Återanslut</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>Koppla lös X2Go-fönster</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Minimera verktygsrad</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Session:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Avsluta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Avsluta</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Ny session...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> @@ -1476,7 +1476,7 @@ Var vänlig uppgradera till PulseAudio.</translation> <translation type="obsolete">S&essionshantering...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> @@ -1493,13 +1493,13 @@ Var vänlig uppgradera till PulseAudio.</translation> <translation type="obsolete">&Testa anslutning...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Visa verktygsrad</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>Om Qt</translation> </message> @@ -1514,271 +1514,270 @@ Var vänlig uppgradera till PulseAudio.</translation> <translation>Startar X2Go-klient...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation>Startar X2Go-klient i portabelt läge. Datakatalog är: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation>Om X2Go-klient</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation>Startade X2Go-klient.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation> hittad.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> <source>English language requested, not loading translator.</source> - <translation>Engelska begärt, laddar inte översättare.</translation> + <translation type="obsolete">Engelska begärt, laddar inte översättare.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation>Icke-kritiskt: kan inte ladda översättare: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation>Försöker ladda språk med lägre preferens, om det finns.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation>Sessionshantering...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation>S&kapa sessionsgenväg på Skrivbordet...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation>&Ange agentlösenord...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation>&Testa anslutning...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Session</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Alternativ</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Hjälp</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Användare:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Fel</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>Operation misslyckades</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Lösenord ändrat</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>Fel lösenord!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Ansluter till agent</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Autentisering</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Återställ</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation>Ej ansluten</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Ljud och video</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Programmering</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Utbildning</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Spel</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Grafik</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Nätverk</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Kontor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Inställningar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>System</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Verktyg</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Övrigt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation>Dela mapp ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation>Vänster musknapp för att dölja/återställa. Höger musknapp för att visa snabbmeny.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation>Stänger X2Go-klient...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation>Slutförde X2Go-klientens avslutshookar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation>Autentisering till agent misslyckades!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation>ingen X2Go-server hittades i LDAP </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation>Anslutningsfel: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation>Kunde inte hitta en SSH-anslutning.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -1791,17 +1790,17 @@ Vill du avsluta anslutningen? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation>Verifiering av serverns nyckel misslyckades.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -1812,87 +1811,112 @@ Vill du avsluta anslutningen? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation>Hittar ej fil för kända servrar. Om du accepterar serverns nyckel så kommer filen att skapas automatiskt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation>Autentisering misslyckades.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation><b>Anslutning misslyckades.</b> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation>Ingen server tillgänglig.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation>Server ej tillgänglig.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation>Inget tillgängligt Skrivbord hittades.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation>Ditt nuvarande färgdjup matchar inte X2Go-sessionens färgdjup. Det kan orsaka problem vid återanslutning av sessionen och i de flesta fall <b>förlorar du sessionen</b> och måste starta en ny! Det är starkt rekommenderat att du ändrar färdgjup till </translation> + <translation type="obsolete">Ditt nuvarande färgdjup matchar inte X2Go-sessionens färgdjup. Det kan orsaka problem vid återanslutning av sessionen och i de flesta fall <b>förlorar du sessionen</b> och måste starta en ny! Det är starkt rekommenderat att du ändrar färdgjup till </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation> bitar och startar om X.Org-servern innan du återansluter till denna X2Go-session.<br>Återanslut session ändå?</translation> + <translation type="obsolete"> bitar och startar om X.Org-servern innan du återansluter till denna X2Go-session.<br>Återanslut session ändå?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation>Proxy avslutade inte efter 3 sekunder. Dödar proxy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation>Avslutar X2Go-klienten eftersom den startades i dolt läge.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation>Avslutar X2Go-klienten eftersom --close-disconnect angavs som inparameter.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation>Är du säker på att du vill avsluta sessionen? Data som ej sparats kommer att förloras.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> @@ -1901,121 +1925,121 @@ Data som ej sparats kommer att förloras.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation> (filen finns inte)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation> (mapp finns inte)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation>Fel värde för "--link".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation>Fel värde för argument "--clipboard".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation>Fel värde för "--sound".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation>Fel värde för "--geometry".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation>Fel värde för "--set-kbd".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation>Fel värde för "--ldap".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation>Fel värde för "--ldap1".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation>Fel värde för "--ldap2".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation>Fel värde för "--pack".</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation>Tillgängliga kompressionsmetoder:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation>Kompressionsmetoder</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation>Alternativet är inte tillgängligt i denna version.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation>Kunde ej skapa katalog:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation><br>(C) 2005-2017 av <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation>Kunde ej skapa eller lägga till fil: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation>Kunde ej ändra rättigheter på fil: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation>Detta är ett fel eftersom sshd skulle neka en sådan fil.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation>Kunde ej ändra rättigheter på katalog: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation>Detta är ett fel eftersom sshd skulle neka en sådan katalog.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation>Kunde ej hitta binär för sftp-server. Varken som medskickad eller i $PATH eller i ytterligare sökvägar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2028,88 +2052,87 @@ Om sftp-server finns installerat på ditt system, var vänlig rapportera felet ( </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation>Ett fel uppstod vid val av nyckeltyp för SSH</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation>Okänd SSH-nyckel vald.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation>Avslutar applikation.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation>Ett fel uppstod vid skapande av katalog för SSH-nyckel</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation>Kunde ej skapa katalog '%1' för SSH-nyckel.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation>Ett fel uppstod när ssh-keygen skulle startas</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation>Kunde ej starta ssh-keygen.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation>ssh-keygen kraschade</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation>ssh-keygen kraschade.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation>ssh-keygen avslutades med felkod</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation>ssh-keygen avslutades inte korrekt.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation>Det var sannolikt anropat med okända inparametrar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> - <extracomment>%1 in this context will be replaced by the public host key *type*, e.g. "RSA", "DSA", "ECDSA" etc. You probably don't want to put %1 at the end of the sentence here (unless Swedish does that, of course.)</extracomment> <translation>Kunde ej öppna nyligen genererad %1 publik nyckelfil.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation>%1 publik nyckelfil tom.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation>Kan inte öppna nyckel: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2122,7 +2145,7 @@ Dessa funktioner kräver en aktiv och fungerande SSH-server på din dator. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2133,7 +2156,7 @@ Om du ser detta meddelande, var vänlig rapportera en bug på: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2143,15 +2166,15 @@ Please report a bug on: Var vänlig rapportera en bug på:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -2162,7 +2185,7 @@ Om du ser detta meddelande, var vänlig rapportera en bug på: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -2177,77 +2200,77 @@ Var vänlig rapportera en bug på: <translation type="obsolete"><br>(C) 2005-2016 av <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation><br>X2Go Plugin sponsrades av <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation><br>Klient för X2Go. Denna klient kan ansluta till X2Go-servrar och starta/stoppa/återansluta/avsluta (aktiva) sessioner. X2Go-klienten kan spara anslutningsinställningar samt använda LDAP för autentisering. Klienten kan även användas som inloggningsskärm (ersättning för exempelvis XDM). Besök <a href="http://www.x2go.org">projektets hemsida på x2go.org</a> för vidare information.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation><b>X2Go-klient V. </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation>Kontrollera LDAP-inställningar.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation>Kontrollera om paket för "scdaemon" är installerat. Aktuell sökväg är: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation>har inte startat ännu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation>Kunde ej läsa från scdaemon.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation>Inget giltigt kort hittades.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation>Detta kort är okänt för X2Go-systemet.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation>Kan ej starta X.Org-server. Kontrollera installation.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation>Servern stöder ej filsystemsexport via SSH-tunnel. Uppdatera till en nyare version av x2goserver.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation>Kunde inte skapa SSH-tunnel för mappdelning och skrivarstöd: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation>Kunde ej läsa: @@ -2260,22 +2283,22 @@ Uppdatera till en nyare version av x2goserver.</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation>Ett fel uppstod när fönstergeometri hämtades (fönster stängt?)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation>Fel värde för "speed"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation>Applikationer...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> @@ -2365,13 +2388,13 @@ Var vänlig rapportera en bugg på: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation>Deaktivering av fjärrutskrift eller mappdelning i sessionsinställningarna blockerar detta meddelande.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation>SSH kunde inte öppna sin publika nyckel.</translation> </message> @@ -2438,7 +2461,7 @@ Om du är administratör, var vänlig kör: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation>SSH kunde inte öppna applikationens @@ -2457,9 +2480,9 @@ authorized_keys-fil.</translation> <translation type="obsolete">Stängt x2goclient.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Kontrollera LDAP-inställningar</translation> </message> @@ -2492,7 +2515,7 @@ Använd dolt läge?</translation> <translation type="obsolete">Länk till X2Go-session</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation>Inga X2Go-sessioner hittades, stänger.</translation> </message> @@ -2501,8 +2524,8 @@ Använd dolt läge?</translation> <translation type="obsolete">fel värde för argument "--clipboard"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>SSH-fel</translation> </message> @@ -2545,7 +2568,7 @@ på din dator.</translation> <translation type="obsolete">SSH kunde inte öppna applikationens publika servernyckel.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>SSH kunde inte öppna applikationens publika nyckel @@ -2566,38 +2589,38 @@ authorized_keys-fil.</translation> <translation type="obsolete">Är du säker på att du vill radera denna session?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP-anslutning</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Anslutning till lokalt Skrivbord</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> på </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation>Startar anslutning till server: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation> till </translation> </message> @@ -2610,12 +2633,12 @@ authorized_keys-fil.</translation> <translation type="obsolete">Kunde inte hitta en SSH-anslutning.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Ange lösenord för att dekryptera nyckel</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>Nyckel för server har ändrats. @@ -2634,7 +2657,7 @@ Den är nu: </translation> <translation type="obsolete">Hittar ej fil för kända servrar. Om du accepterar serverns nyckel så kommer filen att skapas automatiskt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Okänd server. Litar du på denna nyckel? @@ -2645,7 +2668,7 @@ Publik nyckel: </translation> <translation type="obsolete">Verifiering av serverns nyckel misslyckades</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Verifieringskod:</translation> </message> @@ -2662,20 +2685,18 @@ Vill du avsluta anslutningen? </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>Nej</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Om du accepterar den nya servernyckeln så kan säkerheten i anslutningen vara komprometterad. @@ -2691,7 +2712,7 @@ Av säkerhetsskäl är det rekommenderat att du avslutar anslutningen. Vill du avsluta anslutningen?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation>Autentisering misslyckades: </translation> </message> @@ -2700,7 +2721,7 @@ Vill du avsluta anslutningen?</translation> <translation type="obsolete">Autentisering misslyckades</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Ange lösenord för SSH-proxy</translation> </message> @@ -2711,37 +2732,37 @@ Vill du avsluta anslutningen?</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Fel lösenord!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation>Anslutning misslyckades: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation> - Fel lösenord.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>okänt</translation> </message> @@ -2754,41 +2775,41 @@ Vill du avsluta anslutningen?</translation> <translation type="obsolete">Server ej tillgänglig</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Välj session:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>aktiv</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>vilande</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Skrivbord</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>Applikation</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>Skuggsession</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Information</translation> </message> @@ -2797,21 +2818,20 @@ Vill du avsluta anslutningen?</translation> <translation type="obsolete">Inget tillgängligt Skrivbord hittades</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Filter</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Välj Skrivbord:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Varning</translation> </message> @@ -2820,135 +2840,134 @@ Vill du avsluta anslutningen?</translation> <translation type="obsolete">Ditt nuvarande färgdjup matchar inte X2Go-sessionens färgdjup. Det kan orsaka problem vid återanslutning av sessionen och i de flesta fall <b>förlorar du sessionen</b> och måste starta en ny! Det är starkt rekommenderat att du ändrar färdgjup till </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24 eller 32</translation> + <translation type="obsolete">24 eller 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete"> bitar och startar om X-servern innan du återansluter till denna X2Go-session.<br>Återanslut session ändå?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>försätter i vila</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>avslutar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>Fel lösenord!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Ny session startad</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Session återupptagen</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>Kunde ej skapa katalog: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>Kunde ej skriva till fil: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation>Kunde inte skapa SSH-tunnel för X2Go-sessionsstart (NX): </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation>Kunde ej skapa SSH-tunnel för ljuddata: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation>startade inte.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation>Det här betyder sannolikt att binären saknas. Aktuell sökväg är: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation>returnerade en felkod eller avslutades oväntat.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation>Exekvering misslyckades, felkod: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation>startade inte i tid.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation>Det här felet borde inte komma.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation>accepterade inte en skrivoperation.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation>Det är sannolikt inte igång eller har avslutats oväntat.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation>Kunde ej läsa från xmodmap.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation>påträffade ett okänt fel under uppstart eller exekvering.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation>ett odefinierat fel inträffade.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> @@ -2957,12 +2976,12 @@ File a bug report as outlined on the <a href="http://wiki.x2go.org/doku. Lämna en buggrapport enligt <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation>Akut avslut.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Väntar på att proxy ska avslutas.</translation> </message> @@ -2971,14 +2990,14 @@ Lämna en buggrapport enligt <a href="http://wiki.x2go.org/doku.php/wiki <translation type="obsolete">Misslyckades, dödar proxy.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Felaktig parameter: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Hjälp</translation> </message> @@ -2991,12 +3010,12 @@ Lämna en buggrapport enligt <a href="http://wiki.x2go.org/doku.php/wiki <translation type="obsolete">Alternativet är inte tillgängligt i denna version</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation>Ändringslogg</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Git-information</translation> </message> @@ -3009,8 +3028,8 @@ Lämna en buggrapport enligt <a href="http://wiki.x2go.org/doku.php/wiki <translation type="obsolete">Kunde ej skriva till fil:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>Koppla X2Go-fönster</translation> </message> @@ -3027,29 +3046,29 @@ Lämna en buggrapport enligt <a href="http://wiki.x2go.org/doku.php/wiki </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>avslutad</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>startar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>återansluter</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Anslutning passerade tidsgränsen, avbryter</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>avbryter</translation> </message> @@ -3060,20 +3079,20 @@ Unsaved documents will be lost</source> Data som ej sparats kommer att förloras</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Session</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Display</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>Skapad</translation> </message> @@ -3086,7 +3105,7 @@ Data som ej sparats kommer att förloras</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (kan inte öppna fil)</translation> </message> @@ -3151,7 +3170,7 @@ Data som ej sparats kommer att förloras</translation> <translation type="obsolete">Kan inte öppna nyckel: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Hjälp</translation> </message> @@ -3180,7 +3199,7 @@ Data som ej sparats kommer att förloras</translation> <translation type="obsolete">Inget giltigt kort hittades</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Kort ej konfigurerat.</translation> </message> @@ -3189,7 +3208,7 @@ Data som ej sparats kommer att förloras</translation> <translation type="obsolete">Kortet är okänt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Kunde ej skapa filen: </translation> </message> @@ -3224,8 +3243,8 @@ Please check your installation</source> Kontrollera installation</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Kunde ej exekvera: </translation> </message> @@ -3248,12 +3267,12 @@ Uppdatera till en nyare version av x2goserver</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1252</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>ISO8859-1</translation> </message> @@ -3262,7 +3281,7 @@ Uppdatera till en nyare version av x2goserver</translation> <translation type="obsolete">Ett fel uppstod när fönstergeometri hämtades (fönster stängt)?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>X2Go-session</translation> </message> @@ -3271,35 +3290,35 @@ Uppdatera till en nyare version av x2goserver</translation> <translation type="obsolete">fel värde för "speed"</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Lösenord:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translatorcomment>Swenglish, but commonly used.</translatorcomment> <translation>Tangentbordslayout:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>OK</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>Avbryt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>Sessions-ID:<br>Server:<br>Användare:<br>Display:<br>Skapad:<br>Status:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Applikationer...</translation> </message> @@ -3308,72 +3327,72 @@ Uppdatera till en nyare version av x2goserver</translation> <translation type="obsolete"></b><br> (© 2005-2016 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>Avbryt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Visa detaljer</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Återanslut</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Ny</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Fullständig åtkomst</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Endast visa</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Status</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Kommando</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Typ</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Server</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>Klient-IP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>Sessions-ID</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Användare</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Bara mina Skrivbord</translation> </message> @@ -3386,12 +3405,12 @@ du kan installera sshd med (Debian/Ubuntu) <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Återställ verktygsrad</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> Klicka denna knapp <br> för att återställa verktygsrad </b><br></translation> </message> @@ -3419,11 +3438,15 @@ du kan installera sshd med (Debian/Ubuntu) </message> <message> <location filename="../../src/printdialog.cpp" line="63"/> - <comment>Please adapt this to the new message. Note that it has changed.</comment> <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> <translation type="unfinished">Du kan återaktivera denna dialog via X2Go-klientens inställningar (Meny -> Alternativ -> Inställningar)</translation> </message> <message> + <source>You may reactivate this dialog using the X2Go Client settings dialog. To do so, follow this path in the menu bar: Options -> Settings</source> + <comment>Please adapt this to the new message. Note that it has changed.</comment> + <translation type="obsolete">Du kan återaktivera denna dialog via X2Go-klientens inställningar (Meny -> Alternativ -> Inställningar)</translation> + </message> + <message> <source>You've deactivated the x2go client printing dialog.</source> <translation type="obsolete">Du har inaktiverat utskriftsdialogen i X2Go.</translation> </message> @@ -3623,117 +3646,119 @@ Exempel: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation>Kunde ej hitta binär för PulseAudio. Varken som medskickad eller i $PATH eller i ytterligare sökvägar.</translation> + <translation type="obsolete">Kunde ej hitta binär för PulseAudio. Varken som medskickad eller i $PATH eller i ytterligare sökvägar.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Om du laddade ner färdigbyggd version från den officiella hemsidan, var vänlig rapportera en bug på: + <translation type="obsolete">Om du laddade ner färdigbyggd version från den officiella hemsidan, var vänlig rapportera en bug på: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation>Kunde ej allokera buffert för att hämta aktuell arbetskatalog!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation>getcwd() misslyckades!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation>PulseAudio startade inte!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> <source>Sound support will not be available. If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> - <translation>Ljudstöd kommer inte att vara tillgängligt. + <translation type="obsolete">Ljudstöd kommer inte att vara tillgängligt. Om du laddade ner färdigbyggd version från den officiella hemsidan, var vänlig rapportera en bug på: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center </translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation>Ett fel uppstod när versionsnummer för PulseAudio skulle hämtas!</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation>Oväntat tecken när versionssträng för huvudversion kontrollerades</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation>Oväntat tecken när versionssträng för underversion kontrollerades</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation>Oväntat tecken när versionssträng för mikroversion kontrollerades</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation>Antas skippa huvudversionsnummer. Något är fel.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation>Kunde ej konvertera huvudversionssträng till heltal.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation>Kunde ej konvertera underversionssträng till heltal.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation>Kunde ej konvertera mikroversionssträng till heltal.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation>Oväntat format påträffat.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation>Kunde ej starta PulseAudio.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation>Kunde ej spela uppstartsljud.</translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation>Ljudstöd kommer inte att vara tillgängligt.</translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation>Om du laddade ner färdigbyggd version från den officiella hemsidan eller installerat via pakethanterare i Linux, var vänlig rapportera en bug på: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center +<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </translation> </message> </context> @@ -4091,25 +4116,30 @@ Använd dolt läge?</translation> <translation>&Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Servernamn:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Användare:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH-port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>Använd denna RSA-/DSA-nyckel för SSH-anslutning:</translation> </message> @@ -4118,78 +4148,83 @@ Använd dolt läge?</translation> <translation type="obsolete">Prova automatisk inloggning (ssh-agent eller standard SSH-nyckel)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Kerberos 5 (GSSAPI)-autentisering</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Delegering av GSSAPI autentiseringsuppgifter till server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>Använd proxyserver för SSH-anslutning</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Proxyserver</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>Samma inloggning som för X2Go Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>Samma lösenord som för X2Go Server</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>RSA-/DSA-nyckel:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation>X2Go-klienten körs i portabelt läge. Du bör använda en sökväg till en USB-enhet för att möjliggöra flyttbara inställningar.</translation> </message> <message> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> <source>ssh-agent or default ssh key</source> <translation type="obsolete">ssh-agent eller standard SSH-nyckel</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Typ:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>&Sessionstyp</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Sessionstyp:</translation> </message> @@ -4198,45 +4233,46 @@ Använd dolt läge?</translation> <translation type="obsolete">Anslut till Windows Terminal Server (RDP)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Anslut till lokalt Skrivbord</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>Anpassat Skrivbord</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Applikation</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Publicerade applikationer</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Kommando:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Avancerade alternativ...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Sökväg till exekverbar fil</translation> </message> @@ -4245,56 +4281,57 @@ Använd dolt läge?</translation> <translation type="obsolete">Direktanslutning via RDP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>RDP-port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Öppna bild</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Bilder</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Öppna nyckelfil</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation>Prova automatisk inloggning (ssh-agent eller standard SSH-nyckel)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation>ssh-agent eller standard SSH-nyckel</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation>Anslut till Windows Terminal Server (RDP)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation>Direktanslutning via RDP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Alla filer</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Fel</translation> </message> @@ -4303,25 +4340,30 @@ Använd dolt läge?</translation> <translation type="obsolete">X2Go-klienten körs i portabelt läge. Du bör använda en sökväg till en USB-enhet för att möjliggöra flyttbara inställningar</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>XDMCP-server:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>rdesktop kommandoradsalternativ:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Ny session</translation> </message> @@ -4516,16 +4558,23 @@ ljudström genom brandväggar</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Extra parametrar:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Kommandorad:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>se</translation> </message> @@ -4534,8 +4583,8 @@ ljudström genom brandväggar</translation> <translation type="obsolete">pc105/se</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>lösenord</translation> </message> @@ -4636,94 +4685,108 @@ ljudström genom brandväggar</translation> <translation type="obsolete">Anslutningsfel SSH-proxy</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation>Anslutningsfel SSH-proxy.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>Anslutningsfel SSH-proxy: </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation>Kunde ej skapa SSH-proxytunnel.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation>Kan ej initialisera libssh.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation>Kan ej skapa SSH-session.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation>Kan ej ansluta till proxyserver.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation>Autentisering misslyckades.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation>Start av SSH-klient misslyckades. Kontrollera din installation och GSSApi-konfiguration.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation>Kontrollera din GSSApi-konfiguration eller välj en annan autentiseringsmetod.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation>Kan inte öppna fil </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation>Kan inte skapa fjärrfil </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation>Kan inte skriva till fjärrfil </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>%1 misslyckades.</translation> + </message> + <message> <source>channel_open_forward failed.</source> - <translation>channel_open_forward misslyckades.</translation> + <translation type="obsolete">channel_open_forward misslyckades.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> <source>channel_open_session failed.</source> - <translation>channel_open_session misslyckades.</translation> + <translation type="obsolete">channel_open_session misslyckades.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation>Ett fel uppstod vid skrivning till socket.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation>Ett fel uppstod när kanal skulle läsas.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> <source>channel_write failed.</source> - <translation>channel_write misslyckades.</translation> + <translation type="obsolete">channel_write misslyckades.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation>Ett fel uppstod när TCP-socket skulle läsas.</translation> </message> @@ -4776,8 +4839,8 @@ ljudström genom brandväggar</translation> <translation type="obsolete">Kan inte skriva till fjärrfil </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>kan inte ansluta till </translation> </message> @@ -4790,9 +4853,8 @@ ljudström genom brandväggar</translation> <translation type="obsolete">channel_open_session misslyckades</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> - <translation>channel_request_exec misslyckades</translation> + <translation type="obsolete">channel_request_exec misslyckades</translation> </message> <message> <source>error writing to socket</source> diff --git a/res/i18n/x2goclient_tr.ts b/res/i18n/x2goclient_tr.ts index 6267008..a853835 100644 --- a/res/i18n/x2goclient_tr.ts +++ b/res/i18n/x2goclient_tr.ts @@ -361,12 +361,12 @@ can find updated versions on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -377,12 +377,12 @@ Some standard installation locations may be: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation type="unfinished"></translation> </message> @@ -416,8 +416,8 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>Gelişmiş seçenekler</translation> </message> @@ -467,7 +467,7 @@ Some standard installation locations may be: <translation type="obsolete">Seçilen yolda uygun bir X11 uygulaması bulunamadı</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>&Bağlantı</translation> </message> @@ -1310,7 +1310,7 @@ Please upgrade to PulseAudio.</source> </message> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>tr</translation> </message> @@ -1321,28 +1321,28 @@ Please upgrade to PulseAudio.</source> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>bağlanıyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>Internet tarayıcı</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>E-posta istemcisi</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation>OpenOffice.org</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>Uçbirim</translation> </message> @@ -1351,12 +1351,12 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">x2goclient taşınabilir kipte başlatılıyor... veri dizini: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>&Ayarlar...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>Destek ...</translation> </message> @@ -1369,13 +1369,13 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">x2goclient başlatıldı.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation>Çevirici yüklenemiyor: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation>Çevirmen: </translation> </message> @@ -1384,78 +1384,78 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete"> kuruldu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>Klasör paylaş...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation>Uygulamalar...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>Askıya Al</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>Sonlandır</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>Yeniden bağlan</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>X2Go penceresini ayır</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>Araç çubuğunu küçült</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>Oturum:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>&Çıkış</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation>Ctrl+Q</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>Çık</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>&Yeni oturum ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation>Ctrl+N</translation> </message> @@ -1464,7 +1464,7 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">Oturum yönetimi...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation>Ctrl+E</translation> </message> @@ -1481,13 +1481,13 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">&Bağlantı testi...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>Araç çubuğunu göster</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>Qt Hakkında</translation> </message> @@ -1502,271 +1502,266 @@ Please upgrade to PulseAudio.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> - <source>English language requested, not loading translator.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>&Oturum</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>&Seçenekler</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>Giriş:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>Hata</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>İşlem başarısız oldu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>Parola değiştirildi</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>Yanlış parola!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>Aracıya bağlanıyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>Kimlik Doğrulama</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>Geri Yükle</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation>Bağlı değil</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation>Çokluortam</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation>Geliştirme</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation>Eğitim</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation>Oyun</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation>Grafikler</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation>Ağ</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation>Ofis</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation>Ayarlar</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation>Sistem</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation>Araç</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation>Diğer</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -1775,17 +1770,17 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -1793,290 +1788,288 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> - <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> - <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2085,169 +2078,187 @@ If the sftp-server binary is installed on your system, please report a bug menti <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -2256,7 +2267,7 @@ These features require a running and functioning SSH server on your computer. <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -2264,7 +2275,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -2272,14 +2283,14 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -2287,7 +2298,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -2295,7 +2306,7 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation type="unfinished"></translation> @@ -2313,9 +2324,9 @@ authorized_keys file.</source> <translation type="obsolete">x2goclient kapatıldı.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>Lütfen LDAP ayarlarını kontrol edin</translation> </message> @@ -2324,43 +2335,43 @@ authorized_keys file.</source> <translation type="obsolete">LDAP'ta X2Go sunucusu yok </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation>X2Go oturumu bulunamadı, kapatılıyor.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation>KDE</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP bağlantısı</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>Yerel masa üstüne bağlantı</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> üzerinde </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation>Sunucuya bağlantı başlatılıyor: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation> sunucusuna </translation> </message> @@ -2373,17 +2384,17 @@ authorized_keys file.</source> <translation type="obsolete">Bir SSH bağlantısı bulunamadı.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation>Doğrulama kodu:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation>Anahtarı deşifrelemek için parola girin</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>Sunucunun konak anahtarı değişti. @@ -2406,20 +2417,18 @@ Bağlantıyı sonlandırmak istiyor musunuz? <translation type="obsolete">Makine anahtarının doğrulanması başarısız oldu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>Evet</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>Hayır</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation>Yeni konak anahtarını kabul ederseniz bağlantınızın güvenliği tehlikede olabilir. @@ -2440,14 +2449,14 @@ Bağlantıyı sonlandırmak istiyor musunuz? <translation type="obsolete">Bilinen istemciler dosyası bulunamadı. Eğer istemci anahtarını kabul ettiyseniz dosya burada otomatik olarak oluşturulacaktır</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>Sunucu bilinmiyor. İstemci anahtarına güveniyor musunuz? Açık anahtarın özeti: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation>Kimlik doğrulama başarısız oldu: </translation> </message> @@ -2456,7 +2465,7 @@ Açık anahtarın özeti: </translation> <translation type="obsolete">Kimlik doğrulama başarısız</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation>Vekil SSH için parola girin</translation> </message> @@ -2467,37 +2476,37 @@ Açık anahtarın özeti: </translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>Yanlış parola!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation>Bağlantı başarısız: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation> - Yanlış parola.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>bilinmeyen</translation> </message> @@ -2510,41 +2519,41 @@ Açık anahtarın özeti: </translation> <translation type="obsolete">Sunucu erişilebilir değil</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>Oturumu başlat:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>çalışıyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>bekletiliyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>Masaüstü</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>tek uygulama</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation>gölge oturumu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>Bilgi</translation> </message> @@ -2553,21 +2562,20 @@ Açık anahtarın özeti: </translation> <translation type="obsolete">Erişilebilir masaüstü bulunamadı</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>Filtre</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>Masaüstü seçin:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>Uyarı</translation> </message> @@ -2576,56 +2584,55 @@ Açık anahtarın özeti: </translation> <translation type="obsolete">Geçerli renk derinliğiniz x2go oturumunuzdakinden farklı. Bu oturuma yeniden bağlanmanızda sorunlara yol açabilir ve çoğu durumda <b>oturumunuzu kaybedersiniz</b> ve yeni bir oturum başlatmanız gerekir! Renk derinliğinizi şuna değiştirmeniz şiddetle önerilir </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24 veya 32</translation> + <translation type="obsolete">24 veya 32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete"> bit ve bu x2go oturumuna yeniden bağlanmadan X sunucunuzu yeniden başlatın.<br>Oturuma yine de devam edilsin mi?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>bekletiliyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>sonlandırılıyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>Hatalı Parola!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation>Yeni oturum başlatıldı</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation>Oturuma geri dönüldü</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation>Klasör oluşturulamadı: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation>Dosya yazılamıyor: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>X2Go penceresine ekle</translation> </message> @@ -2642,12 +2649,12 @@ Açık anahtarın özeti: </translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation>Acil çıkış.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation>Çıkış için vekil sunucu bekleniyor.</translation> </message> @@ -2656,29 +2663,29 @@ Açık anahtarın özeti: </translation> <translation type="obsolete">Başarısız oldu, vekil sunucu durduruluyor.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>Tamamlandı</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>başlatılıyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>devam ediliyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>Bağlantı zaman aşımına uğradı, iptal ediliyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>iptal ediliyor</translation> </message> @@ -2689,20 +2696,20 @@ Unsaved documents will be lost</source> Kaydedilmemiş belgeler kaybolacak</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>Oturum</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>Göster</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>Oluşturma zamanı</translation> </message> @@ -2715,7 +2722,7 @@ Kaydedilmemiş belgeler kaybolacak</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (dosya açılamıyor)</translation> </message> @@ -2764,14 +2771,14 @@ Kaydedilmemiş belgeler kaybolacak</translation> <translation type="obsolete">"--pack" değişkeni için hatalı değer</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation>Yanlış parametre: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation>Yardım</translation> </message> @@ -2788,12 +2795,12 @@ Kaydedilmemiş belgeler kaybolacak</translation> <translation type="obsolete">Bu inşa için özellik kullanılabilir değil</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation>Değişim günlüğü</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation>Git Bilgisi</translation> </message> @@ -2810,7 +2817,7 @@ Kaydedilmemiş belgeler kaybolacak</translation> <translation type="obsolete">Anahtar açılamıyor: </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>Destek</translation> </message> @@ -2839,7 +2846,7 @@ Kaydedilmemiş belgeler kaybolacak</translation> <translation type="obsolete">Geçerli kart bulunamadı</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation>Kart yapılandırılmadı.</translation> </message> @@ -2848,7 +2855,7 @@ Kaydedilmemiş belgeler kaybolacak</translation> <translation type="obsolete">Kart X2Go sistemi tarafından bilinmiyor</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>Dosya oluşturulamadı: </translation> </message> @@ -2870,8 +2877,8 @@ Please check your installation</source> <translation type="obsolete">X Sunucusu başlatılamadı\Lütfen kurulumunuzu kontrol edin</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>Komut çalıştırılamadı: </translation> </message> @@ -2894,12 +2901,12 @@ Lütfen x2goserver paketini daha yeni bir sürüme güncelleyin</translation> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation>WINDOWS-1252</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation>ISO8859-1</translation> </message> @@ -2908,7 +2915,7 @@ Lütfen x2goserver paketini daha yeni bir sürüme güncelleyin</translation> <translation type="obsolete">Pencere geometrisi alınırken hata (pencere kapalı mı)?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>X2Go Oturumu</translation> </message> @@ -2917,128 +2924,128 @@ Lütfen x2goserver paketini daha yeni bir sürüme güncelleyin</translation> <translation type="obsolete">"speed" değişkeni için hatalı değer</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>Parola:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>Klavye düzeni:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>Tamam</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>İptal</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>Oturum Kimliği:<br>Sunucu:<br>Kullanıcı adı:<br>Ekran:<br>Oluşturma zamanı:<br>Durum:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>İptal</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>Ayrıntıları göster</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>Devam et</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>Yeni</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>Tam erişim</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>Sadece görüntüleme</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>Durum</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>Komut</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>Tür</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>Sunucu</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>İstemci IP adresi</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>Oturum Kimliği</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>Kullanıcı</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>Sadece beim masaüstlerimde</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation>SSH Hatası</translation> </message> @@ -3081,7 +3088,7 @@ sağlamasını isteyin.</translation> <translation type="obsolete">SSH süreci uygulamanın açık konak anahtarını açmakta başarısız oldu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation>SSH süreci uygulamanın klasörleri ve yazıcıları dışa aktarmak @@ -3094,12 +3101,12 @@ authoized_keys file.</source> açmakta başarısız oldu.</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>Araç çubuğunu yeniden yükle</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> Araç çubuğunu yeniden yüklemek için <br> bu düğmeye tıklayın </b><br></translation> </message> @@ -3326,106 +3333,90 @@ Example: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> - <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> - <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> - <source>Sound support will not be available. - -If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -3737,25 +3728,30 @@ Use X2Go Client's hidden mode?</source> <translation>&Sunucu</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>Makine:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>Giriş:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH portu:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>Ssh bağlantısı için RSA/DSA anahtarı kullan:</translation> </message> @@ -3764,99 +3760,105 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Otomatik oturum açmayı dene (ssh-agent veya varsayılan ssh anahtarı)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Kerberos 5 (GSSAPI) kimlik doğrulaması</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation>Sunucuya GSSAPI kimlik bilgileri gönderimi</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation>SSH bağlantısı için vekil sunucu kullan</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation>Vekil sunucu</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation>SSH</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation>HTTP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation>X2Go Sunucusundaki giriş ile aynı</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation>X2Go sunucusundaki parola ile aynı</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation>RSA/DSA anahtarı:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation type="unfinished"></translation> </message> <message> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> <source>ssh-agent or default ssh key</source> <translation type="obsolete">ssh-agent veya varsayılan ssh anahtarı</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation>Tür:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation>Port:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>&Oturum türü</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>Oturum türü:</translation> </message> @@ -3865,45 +3867,46 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Windows terminal sunucusuna bağlan</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation>XDMCP</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>Yerel masaüstüne bağlan</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>kişisel masaüstü</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>Tek uygulama</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation>Tanımlı uygulamalar</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>Komut:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>Gelişmiş seçenekler...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>Çalıştırılabilir dosyanın yolu</translation> </message> @@ -3912,20 +3915,20 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">Doğrudan RDP Bağlantısı</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>Anahtar dosyasını aç</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>Tüm dosyalar</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>Hata</translation> </message> @@ -3934,40 +3937,45 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">x2goclient taşınabilir kipte çalışıyor. İstediğiniz yerden verilerinize ulaşmak için usb aygıtınızın yolunu kullanmalısınız</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation>RDP portu:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>Resmi aç</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>Resimler</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>Sunucu:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>XDMCP sunucusu:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>rdesktop komut satırı seçenekleri:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>Yeni oturum</translation> </message> @@ -4149,22 +4157,29 @@ tünellemek için ssh port yönlendirmesini kullanın</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation>Ek parametreler:</translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation>Komut satırı:</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>tr</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation>parola</translation> </message> @@ -4261,94 +4276,96 @@ tünellemek için ssh port yönlendirmesini kullanın</translation> <context> <name>SshMasterConnection</name> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>bağlanamıyor </translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> - <source>channel_open_forward failed.</source> - <translation type="unfinished"></translation> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation>%1 başarısız oldu.</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> - <source>channel_open_session failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> - <source>channel_write failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation type="unfinished"></translation> </message> @@ -4357,8 +4374,8 @@ tünellemek için ssh port yönlendirmesini kullanın</translation> <translation type="obsolete">SSH vekil sunucu bağlantı hatası</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation>SSH vekil sunucu bağlantı hatası: </translation> </message> @@ -4415,9 +4432,8 @@ tünellemek için ssh port yönlendirmesini kullanın</translation> <translation type="obsolete">channel_open_session başarısız oldu</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> - <translation>channel_request_exec başarısız oldu</translation> + <translation type="obsolete">channel_request_exec başarısız oldu</translation> </message> <message> <source>error writing to socket</source> diff --git a/res/i18n/x2goclient_zh_tw.ts b/res/i18n/x2goclient_zh_tw.ts index cdb1d1a..0371b2c 100644 --- a/res/i18n/x2goclient_zh_tw.ts +++ b/res/i18n/x2goclient_zh_tw.ts @@ -361,12 +361,12 @@ can find updated versions on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="578"/> + <location filename="../../src/configdialog.cpp" line="577"/> <source>No valid XQuartz application selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="579"/> + <location filename="../../src/configdialog.cpp" line="578"/> <source>You did not select a valid XQuartz application. Please try again. @@ -406,8 +406,8 @@ Some standard installation locations may be: </message> <message> <location filename="../../src/configdialog.cpp" line="258"/> - <location filename="../../src/configdialog.cpp" line="611"/> - <location filename="../../src/configdialog.cpp" line="627"/> + <location filename="../../src/configdialog.cpp" line="610"/> + <location filename="../../src/configdialog.cpp" line="626"/> <source>Advanced options</source> <translation>進階選項</translation> </message> @@ -457,17 +457,17 @@ Some standard installation locations may be: <translation type="obsolete">在您選擇的路徑中沒有合適的X11應用程式</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="624"/> + <location filename="../../src/configdialog.cpp" line="623"/> <source>&Connection</source> <translation>連線(&C)</translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="625"/> + <location filename="../../src/configdialog.cpp" line="624"/> <source>&Input/Output</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/configdialog.cpp" line="626"/> + <location filename="../../src/configdialog.cpp" line="625"/> <source>&Media</source> <translation type="unfinished"></translation> </message> @@ -1252,7 +1252,7 @@ Please upgrade to PulseAudio.</source> <name>ONMainWindow</name> <message> <location filename="../../src/onmainwindow.cpp" line="106"/> - <location filename="../../src/onmainwindow.cpp" line="7187"/> + <location filename="../../src/onmainwindow.cpp" line="7255"/> <source>us</source> <translation>us</translation> </message> @@ -1267,38 +1267,38 @@ Please upgrade to PulseAudio.</source> </message> <message> <location filename="../../src/onmainwindow.cpp" line="204"/> - <location filename="../../src/onmainwindow.cpp" line="3220"/> - <location filename="../../src/onmainwindow.cpp" line="6080"/> + <location filename="../../src/onmainwindow.cpp" line="3226"/> + <location filename="../../src/onmainwindow.cpp" line="6148"/> <source>connecting</source> <translation>正在連線</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="211"/> + <location filename="../../src/onmainwindow.cpp" line="215"/> <source>Internet browser</source> <translation>網頁瀏覽器</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="212"/> + <location filename="../../src/onmainwindow.cpp" line="216"/> <source>Email client</source> <translation>電子郵件軟體</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="213"/> + <location filename="../../src/onmainwindow.cpp" line="217"/> <source>OpenOffice.org</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="214"/> + <location filename="../../src/onmainwindow.cpp" line="218"/> <source>Terminal</source> <translation>終端機</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="398"/> + <location filename="../../src/onmainwindow.cpp" line="402"/> <source>&Settings ...</source> <translation>設定(&S) ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="402"/> + <location filename="../../src/onmainwindow.cpp" line="406"/> <source>Support ...</source> <translation>支援 ...</translation> </message> @@ -1307,84 +1307,84 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">關於X2GO用戶端</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="601"/> <source>Can't load translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source>Translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="673"/> + <location filename="../../src/onmainwindow.cpp" line="677"/> <source>Share folder...</source> <translation>共享資料夾...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="679"/> - <location filename="../../src/onmainwindow.cpp" line="1190"/> - <location filename="../../src/onmainwindow.cpp" line="6136"/> - <location filename="../../src/onmainwindow.cpp" line="11922"/> + <location filename="../../src/onmainwindow.cpp" line="683"/> + <location filename="../../src/onmainwindow.cpp" line="1194"/> + <location filename="../../src/onmainwindow.cpp" line="6204"/> + <location filename="../../src/onmainwindow.cpp" line="11990"/> <source>Suspend</source> <translation>暫停</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="682"/> - <location filename="../../src/onmainwindow.cpp" line="1191"/> - <location filename="../../src/onmainwindow.cpp" line="11760"/> - <location filename="../../src/onmainwindow.cpp" line="11924"/> + <location filename="../../src/onmainwindow.cpp" line="686"/> + <location filename="../../src/onmainwindow.cpp" line="1195"/> + <location filename="../../src/onmainwindow.cpp" line="11828"/> + <location filename="../../src/onmainwindow.cpp" line="11992"/> <source>Terminate</source> <translation>終止</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="684"/> + <location filename="../../src/onmainwindow.cpp" line="688"/> <source>Reconnect</source> <translation>重新連線</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="688"/> - <location filename="../../src/onmainwindow.cpp" line="11099"/> + <location filename="../../src/onmainwindow.cpp" line="692"/> + <location filename="../../src/onmainwindow.cpp" line="11167"/> <source>Detach X2Go window</source> <translation>脫離X2Go視窗</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="691"/> - <location filename="../../src/onmainwindow.cpp" line="12271"/> + <location filename="../../src/onmainwindow.cpp" line="695"/> + <location filename="../../src/onmainwindow.cpp" line="12339"/> <source>Minimize toolbar</source> <translation>將工具列最小化</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="807"/> - <location filename="../../src/onmainwindow.cpp" line="2222"/> - <location filename="../../src/onmainwindow.cpp" line="8556"/> + <location filename="../../src/onmainwindow.cpp" line="811"/> + <location filename="../../src/onmainwindow.cpp" line="2228"/> + <location filename="../../src/onmainwindow.cpp" line="8624"/> <source>Session:</source> <translation>工作階段:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="868"/> + <location filename="../../src/onmainwindow.cpp" line="872"/> <source>&Quit</source> <translation>離開(&Q)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="869"/> + <location filename="../../src/onmainwindow.cpp" line="873"/> <source>Ctrl+Q</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="870"/> - <location filename="../../src/onmainwindow.cpp" line="1208"/> + <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="1212"/> <source>Quit</source> <translation>離開</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="873"/> + <location filename="../../src/onmainwindow.cpp" line="877"/> <source>&New session ...</source> <translation>新增工作階段(&N) ...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="874"/> + <location filename="../../src/onmainwindow.cpp" line="878"/> <source>Ctrl+N</source> <translation type="unfinished"></translation> </message> @@ -1393,7 +1393,7 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">工作階段管理員...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="880"/> + <location filename="../../src/onmainwindow.cpp" line="884"/> <source>Ctrl+E</source> <translation type="unfinished"></translation> </message> @@ -1410,179 +1410,179 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">連線能力測試(&C)...</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="917"/> - <location filename="../../src/onmainwindow.cpp" line="938"/> + <location filename="../../src/onmainwindow.cpp" line="921"/> + <location filename="../../src/onmainwindow.cpp" line="942"/> <source>Show toolbar</source> <translation>顯示工具列</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="923"/> + <location filename="../../src/onmainwindow.cpp" line="927"/> <source>About Qt</source> <translation>關於Qt</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="942"/> + <location filename="../../src/onmainwindow.cpp" line="946"/> <source>&Session</source> <translation>工作階段(&S)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="945"/> + <location filename="../../src/onmainwindow.cpp" line="949"/> <source>&Options</source> <translation>選項(&O)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="967"/> + <location filename="../../src/onmainwindow.cpp" line="971"/> <source>&Help</source> <translation>幫助(&H)</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1006"/> - <location filename="../../src/onmainwindow.cpp" line="2215"/> - <location filename="../../src/onmainwindow.cpp" line="8549"/> - <location filename="../../src/onmainwindow.cpp" line="11548"/> + <location filename="../../src/onmainwindow.cpp" line="1010"/> + <location filename="../../src/onmainwindow.cpp" line="2221"/> + <location filename="../../src/onmainwindow.cpp" line="8617"/> + <location filename="../../src/onmainwindow.cpp" line="11616"/> <source>Login:</source> <translation>登入:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> - <location filename="../../src/onmainwindow.cpp" line="1056"/> - <location filename="../../src/onmainwindow.cpp" line="1871"/> - <location filename="../../src/onmainwindow.cpp" line="1900"/> - <location filename="../../src/onmainwindow.cpp" line="1908"/> - <location filename="../../src/onmainwindow.cpp" line="2056"/> - <location filename="../../src/onmainwindow.cpp" line="2083"/> - <location filename="../../src/onmainwindow.cpp" line="2086"/> - <location filename="../../src/onmainwindow.cpp" line="2279"/> - <location filename="../../src/onmainwindow.cpp" line="2461"/> - <location filename="../../src/onmainwindow.cpp" line="2477"/> - <location filename="../../src/onmainwindow.cpp" line="2491"/> - <location filename="../../src/onmainwindow.cpp" line="2525"/> - <location filename="../../src/onmainwindow.cpp" line="2570"/> - <location filename="../../src/onmainwindow.cpp" line="3663"/> - <location filename="../../src/onmainwindow.cpp" line="3888"/> - <location filename="../../src/onmainwindow.cpp" line="3897"/> - <location filename="../../src/onmainwindow.cpp" line="4253"/> - <location filename="../../src/onmainwindow.cpp" line="4816"/> - <location filename="../../src/onmainwindow.cpp" line="4897"/> - <location filename="../../src/onmainwindow.cpp" line="4961"/> - <location filename="../../src/onmainwindow.cpp" line="4991"/> - <location filename="../../src/onmainwindow.cpp" line="5035"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> - <location filename="../../src/onmainwindow.cpp" line="5652"/> - <location filename="../../src/onmainwindow.cpp" line="6787"/> - <location filename="../../src/onmainwindow.cpp" line="6817"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7746"/> - <location filename="../../src/onmainwindow.cpp" line="7828"/> - <location filename="../../src/onmainwindow.cpp" line="8088"/> - <location filename="../../src/onmainwindow.cpp" line="8139"/> - <location filename="../../src/onmainwindow.cpp" line="8202"/> - <location filename="../../src/onmainwindow.cpp" line="8500"/> - <location filename="../../src/onmainwindow.cpp" line="8502"/> - <location filename="../../src/onmainwindow.cpp" line="8836"/> - <location filename="../../src/onmainwindow.cpp" line="8892"/> - <location filename="../../src/onmainwindow.cpp" line="8920"/> - <location filename="../../src/onmainwindow.cpp" line="9372"/> - <location filename="../../src/onmainwindow.cpp" line="9391"/> - <location filename="../../src/onmainwindow.cpp" line="9450"/> - <location filename="../../src/onmainwindow.cpp" line="9478"/> - <location filename="../../src/onmainwindow.cpp" line="9500"/> - <location filename="../../src/onmainwindow.cpp" line="9521"/> - <location filename="../../src/onmainwindow.cpp" line="9539"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> + <location filename="../../src/onmainwindow.cpp" line="1877"/> + <location filename="../../src/onmainwindow.cpp" line="1906"/> + <location filename="../../src/onmainwindow.cpp" line="1914"/> + <location filename="../../src/onmainwindow.cpp" line="2062"/> + <location filename="../../src/onmainwindow.cpp" line="2089"/> + <location filename="../../src/onmainwindow.cpp" line="2092"/> + <location filename="../../src/onmainwindow.cpp" line="2285"/> + <location filename="../../src/onmainwindow.cpp" line="2467"/> + <location filename="../../src/onmainwindow.cpp" line="2483"/> + <location filename="../../src/onmainwindow.cpp" line="2497"/> + <location filename="../../src/onmainwindow.cpp" line="2531"/> + <location filename="../../src/onmainwindow.cpp" line="2576"/> + <location filename="../../src/onmainwindow.cpp" line="3743"/> + <location filename="../../src/onmainwindow.cpp" line="3968"/> + <location filename="../../src/onmainwindow.cpp" line="3977"/> + <location filename="../../src/onmainwindow.cpp" line="4333"/> + <location filename="../../src/onmainwindow.cpp" line="4875"/> + <location filename="../../src/onmainwindow.cpp" line="4956"/> + <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5050"/> + <location filename="../../src/onmainwindow.cpp" line="5094"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> + <location filename="../../src/onmainwindow.cpp" line="5711"/> + <location filename="../../src/onmainwindow.cpp" line="6855"/> + <location filename="../../src/onmainwindow.cpp" line="6885"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7814"/> + <location filename="../../src/onmainwindow.cpp" line="7896"/> + <location filename="../../src/onmainwindow.cpp" line="8156"/> + <location filename="../../src/onmainwindow.cpp" line="8207"/> + <location filename="../../src/onmainwindow.cpp" line="8270"/> + <location filename="../../src/onmainwindow.cpp" line="8568"/> + <location filename="../../src/onmainwindow.cpp" line="8570"/> + <location filename="../../src/onmainwindow.cpp" line="8904"/> + <location filename="../../src/onmainwindow.cpp" line="8960"/> + <location filename="../../src/onmainwindow.cpp" line="8988"/> + <location filename="../../src/onmainwindow.cpp" line="9440"/> + <location filename="../../src/onmainwindow.cpp" line="9459"/> + <location filename="../../src/onmainwindow.cpp" line="9518"/> + <location filename="../../src/onmainwindow.cpp" line="9546"/> + <location filename="../../src/onmainwindow.cpp" line="9568"/> + <location filename="../../src/onmainwindow.cpp" line="9589"/> + <location filename="../../src/onmainwindow.cpp" line="9607"/> <source>Error</source> <translation>錯誤</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1027"/> + <location filename="../../src/onmainwindow.cpp" line="1031"/> <source>Operation failed</source> <translation>更改密碼失敗</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1031"/> + <location filename="../../src/onmainwindow.cpp" line="1035"/> <source>Password changed</source> <translation>密碼已更改成功</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1056"/> + <location filename="../../src/onmainwindow.cpp" line="1060"/> <source>Wrong password!</source> <translation>輸入了錯誤的密碼!</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1060"/> - <location filename="../../src/onmainwindow.cpp" line="3244"/> - <location filename="../../src/onmainwindow.cpp" line="12443"/> + <location filename="../../src/onmainwindow.cpp" line="1064"/> + <location filename="../../src/onmainwindow.cpp" line="3260"/> + <location filename="../../src/onmainwindow.cpp" line="12511"/> <source>Connecting to broker</source> <translation>連線至連線代理伺服器</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1109"/> + <location filename="../../src/onmainwindow.cpp" line="1113"/> <source><b>Authentication</b></source> <translation><b>身份驗證</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1159"/> + <location filename="../../src/onmainwindow.cpp" line="1163"/> <source>Restore</source> <translation>還原</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1161"/> - <location filename="../../src/onmainwindow.cpp" line="5936"/> + <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="6004"/> <source>Not connected</source> <translation>尚未連線</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1163"/> + <location filename="../../src/onmainwindow.cpp" line="1167"/> <source>Multimedia</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1165"/> + <location filename="../../src/onmainwindow.cpp" line="1169"/> <source>Development</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1167"/> + <location filename="../../src/onmainwindow.cpp" line="1171"/> <source>Education</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1169"/> + <location filename="../../src/onmainwindow.cpp" line="1173"/> <source>Game</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1171"/> + <location filename="../../src/onmainwindow.cpp" line="1175"/> <source>Graphics</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1173"/> + <location filename="../../src/onmainwindow.cpp" line="1177"/> <source>Network</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1175"/> + <location filename="../../src/onmainwindow.cpp" line="1179"/> <source>Office</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1177"/> + <location filename="../../src/onmainwindow.cpp" line="1181"/> <source>Settings</source> <translation type="unfinished">設定</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1179"/> + <location filename="../../src/onmainwindow.cpp" line="1183"/> <source>System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1181"/> + <location filename="../../src/onmainwindow.cpp" line="1185"/> <source>Utility</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1183"/> + <location filename="../../src/onmainwindow.cpp" line="1187"/> <source>Other</source> <translation type="unfinished"></translation> </message> @@ -1591,9 +1591,9 @@ Please upgrade to PulseAudio.</source> <translation type="obsolete">按滑鼠左鍵以隱藏或還原視窗, 右鍵顯示選單</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1872"/> - <location filename="../../src/onmainwindow.cpp" line="2057"/> - <location filename="../../src/onmainwindow.cpp" line="2087"/> + <location filename="../../src/onmainwindow.cpp" line="1878"/> + <location filename="../../src/onmainwindow.cpp" line="2063"/> + <location filename="../../src/onmainwindow.cpp" line="2093"/> <source>Please check LDAP settings</source> <translation>請確認LDAP的設定</translation> </message> @@ -1622,13 +1622,13 @@ Use x2goclient hidden mode?</source> <translation type="obsolete">X2Go工作階段的連結</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2277"/> + <location filename="../../src/onmainwindow.cpp" line="2283"/> <source>No X2Go sessions found, closing.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12145"/> - <location filename="../../src/onmainwindow.cpp" line="12176"/> + <location filename="../../src/onmainwindow.cpp" line="12213"/> + <location filename="../../src/onmainwindow.cpp" line="12244"/> <source>You have enabled Remote Printing or File Sharing. These features require a running and functioning SSH server on your computer. <b>Printing and File Sharing will be disabled for this session.</b> @@ -1637,7 +1637,7 @@ These features require a running and functioning SSH server on your computer. <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12149"/> + <location filename="../../src/onmainwindow.cpp" line="12217"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server. If you see this message, please report a bug on: @@ -1645,7 +1645,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12154"/> + <location filename="../../src/onmainwindow.cpp" line="12222"/> <source>The SSH server failed to start. Please report a bug on: @@ -1653,14 +1653,14 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12158"/> - <location filename="../../src/onmainwindow.cpp" line="12190"/> + <location filename="../../src/onmainwindow.cpp" line="12226"/> + <location filename="../../src/onmainwindow.cpp" line="12258"/> <source><center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12180"/> + <location filename="../../src/onmainwindow.cpp" line="12248"/> <source>Normally, this should not happen as X2Go Client for Windows ships its own internal SSH server and automatically generates the required keys. If you see this message, please report a bug on: @@ -1668,7 +1668,7 @@ If you see this message, please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12186"/> + <location filename="../../src/onmainwindow.cpp" line="12254"/> <source>X2Go Client was unable to create SSH host keys. Please report a bug on: @@ -1676,13 +1676,13 @@ Please report a bug on: <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12206"/> - <location filename="../../src/onmainwindow.cpp" line="12217"/> + <location filename="../../src/onmainwindow.cpp" line="12274"/> + <location filename="../../src/onmainwindow.cpp" line="12285"/> <source>SSH Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12207"/> + <location filename="../../src/onmainwindow.cpp" line="12275"/> <source>SSH daemon failed to open the application's public key used for exporting folders and printers.</source> <translation type="unfinished"></translation> @@ -1696,48 +1696,48 @@ used for exporting folders and printers.</source> <translation type="obsolete">您確定要刪除此工作階段嗎?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2699"/> - <location filename="../../src/onmainwindow.cpp" line="6594"/> + <location filename="../../src/onmainwindow.cpp" line="2705"/> + <location filename="../../src/onmainwindow.cpp" line="6662"/> <source>KDE</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2780"/> + <location filename="../../src/onmainwindow.cpp" line="2786"/> <source>RDP connection</source> <translation>RDP連線</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2784"/> + <location filename="../../src/onmainwindow.cpp" line="2790"/> <source>XDMCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2788"/> + <location filename="../../src/onmainwindow.cpp" line="2794"/> <source>Connection to local desktop</source> <translation>連線至本地桌面</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2792"/> + <location filename="../../src/onmainwindow.cpp" line="2798"/> <source> on </source> <translation> 於 </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2851"/> + <location filename="../../src/onmainwindow.cpp" line="2857"/> <source>Starting connection to server: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2860"/> + <location filename="../../src/onmainwindow.cpp" line="2866"/> <source> to </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2999"/> + <location filename="../../src/onmainwindow.cpp" line="3005"/> <source>Enter passphrase to decrypt a key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3062"/> + <location filename="../../src/onmainwindow.cpp" line="3068"/> <source>Host key for server changed. It is now: </source> <translation>主機的SSH密鑰已經更換。 @@ -1756,7 +1756,7 @@ It is now: </source> <translation type="obsolete">目前沒有發現已知的主機檔案。如果您接受目前的主機密鑰,這個檔案將會自動被建立。</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3134"/> + <location filename="../../src/onmainwindow.cpp" line="3140"/> <source>The server is unknown. Do you trust the host key? Public key hash: </source> <translation>此為未知的伺服器,您要選擇信任此主機密鑰嗎? @@ -1767,31 +1767,29 @@ Public key hash: </source> <translation type="obsolete">主機密鑰驗證任失敗</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2995"/> + <location filename="../../src/onmainwindow.cpp" line="3001"/> <source>Verification code:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4739"/> - <location filename="../../src/onmainwindow.cpp" line="4758"/> + <location filename="../../src/onmainwindow.cpp" line="4818"/> <source>Yes</source> <translation>是</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4740"/> - <location filename="../../src/onmainwindow.cpp" line="4759"/> + <location filename="../../src/onmainwindow.cpp" line="4819"/> <source>No</source> <translation>否</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3084"/> - <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3118"/> <source>If you accept the new host key the security of your connection may be compromised. Do you want to update the host key?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3178"/> + <location filename="../../src/onmainwindow.cpp" line="3184"/> <source>Authentication failed: </source> <translation type="unfinished"></translation> </message> @@ -1800,7 +1798,7 @@ Do you want to update the host key?</source> <translation type="obsolete">認證失敗</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3633"/> + <location filename="../../src/onmainwindow.cpp" line="3713"/> <source>Enter password for SSH proxy</source> <translation type="unfinished"></translation> </message> @@ -1811,37 +1809,37 @@ Do you want to update the host key?</source> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3657"/> - <location filename="../../src/onmainwindow.cpp" line="4893"/> - <location filename="../../src/onmainwindow.cpp" line="4987"/> - <location filename="../../src/onmainwindow.cpp" line="6784"/> - <location filename="../../src/onmainwindow.cpp" line="6814"/> - <location filename="../../src/onmainwindow.cpp" line="7742"/> - <location filename="../../src/onmainwindow.cpp" line="7824"/> - <location filename="../../src/onmainwindow.cpp" line="8133"/> - <location filename="../../src/onmainwindow.cpp" line="8198"/> - <location filename="../../src/onmainwindow.cpp" line="9368"/> + <location filename="../../src/onmainwindow.cpp" line="3737"/> + <location filename="../../src/onmainwindow.cpp" line="4952"/> + <location filename="../../src/onmainwindow.cpp" line="5046"/> + <location filename="../../src/onmainwindow.cpp" line="6852"/> + <location filename="../../src/onmainwindow.cpp" line="6882"/> + <location filename="../../src/onmainwindow.cpp" line="7810"/> + <location filename="../../src/onmainwindow.cpp" line="7892"/> + <location filename="../../src/onmainwindow.cpp" line="8201"/> + <location filename="../../src/onmainwindow.cpp" line="8266"/> + <location filename="../../src/onmainwindow.cpp" line="9436"/> <source><b>Wrong password!</b><br><br></source> <translation><b>不正確的密碼!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3669"/> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="3674"/> - <location filename="../../src/onmainwindow.cpp" line="8145"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> - <location filename="../../src/onmainwindow.cpp" line="8150"/> + <location filename="../../src/onmainwindow.cpp" line="3749"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="3754"/> + <location filename="../../src/onmainwindow.cpp" line="8213"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> + <location filename="../../src/onmainwindow.cpp" line="8218"/> <source>Connection failed: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3672"/> - <location filename="../../src/onmainwindow.cpp" line="8148"/> + <location filename="../../src/onmainwindow.cpp" line="3752"/> + <location filename="../../src/onmainwindow.cpp" line="8216"/> <source> - Wrong password.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3821"/> + <location filename="../../src/onmainwindow.cpp" line="3901"/> <source>unknown</source> <translation>未知</translation> </message> @@ -1854,41 +1852,41 @@ Do you want to update the host key?</source> <translation type="obsolete">伺服器不存在|</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4532"/> - <location filename="../../src/onmainwindow.cpp" line="11913"/> + <location filename="../../src/onmainwindow.cpp" line="4612"/> + <location filename="../../src/onmainwindow.cpp" line="11981"/> <source>Select session:</source> <translation>請選擇工作階段:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4552"/> - <location filename="../../src/onmainwindow.cpp" line="4677"/> - <location filename="../../src/onmainwindow.cpp" line="6100"/> + <location filename="../../src/onmainwindow.cpp" line="4632"/> + <location filename="../../src/onmainwindow.cpp" line="4757"/> + <location filename="../../src/onmainwindow.cpp" line="6168"/> <source>running</source> <translation>正在執行中</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4554"/> - <location filename="../../src/onmainwindow.cpp" line="4909"/> + <location filename="../../src/onmainwindow.cpp" line="4634"/> + <location filename="../../src/onmainwindow.cpp" line="4968"/> <source>suspended</source> <translation>已暫停</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4560"/> + <location filename="../../src/onmainwindow.cpp" line="4640"/> <source>Desktop</source> <translation>桌面</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4562"/> + <location filename="../../src/onmainwindow.cpp" line="4642"/> <source>single application</source> <translation>單一的應用程式</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4564"/> + <location filename="../../src/onmainwindow.cpp" line="4644"/> <source>shadow session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4597"/> + <location filename="../../src/onmainwindow.cpp" line="4677"/> <source>Information</source> <translation>資訊</translation> </message> @@ -1897,21 +1895,20 @@ Do you want to update the host key?</source> <translation type="obsolete">目前沒有找到可訪問的工作桌面</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4611"/> - <location filename="../../src/onmainwindow.cpp" line="12375"/> + <location filename="../../src/onmainwindow.cpp" line="4691"/> + <location filename="../../src/onmainwindow.cpp" line="12443"/> <source>Filter</source> <translation>篩選器</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4618"/> + <location filename="../../src/onmainwindow.cpp" line="4698"/> <source>Select desktop:</source> <translation>請選擇工作桌面:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4727"/> - <location filename="../../src/onmainwindow.cpp" line="4746"/> - <location filename="../../src/onmainwindow.cpp" line="5682"/> - <location filename="../../src/onmainwindow.cpp" line="6364"/> + <location filename="../../src/onmainwindow.cpp" line="4804"/> + <location filename="../../src/onmainwindow.cpp" line="5741"/> + <location filename="../../src/onmainwindow.cpp" line="6432"/> <source>Warning</source> <translation>警告</translation> </message> @@ -1920,82 +1917,81 @@ Do you want to update the host key?</source> <translation type="obsolete">您目前使用與x2go工作階段不同的色彩設定。可能會造成連線的不穩定,並且很可能會喪失目前的工作階段。強烈建議先將目前使用的色彩設定設為</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4735"/> <source>24 or 32</source> - <translation>24或32</translation> + <translation type="obsolete">24或32</translation> </message> <message> <source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source> <translation type="obsolete">位元並且重新啟動X-server,之後再重新連接這一個工作階段。<br>請問您無論如何都要恢復此工作階段的連線嗎?</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4843"/> + <location filename="../../src/onmainwindow.cpp" line="4902"/> <source>suspending</source> <translation>正在暫停工作中</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4878"/> + <location filename="../../src/onmainwindow.cpp" line="4937"/> <source>terminating</source> <translation>正在中止工作中</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5020"/> + <location filename="../../src/onmainwindow.cpp" line="5079"/> <source><b>Wrong Password!</b><br><br></source> <translation><b>不正確的密碼!</b><br><br></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5178"/> - <location filename="../../src/onmainwindow.cpp" line="5180"/> + <location filename="../../src/onmainwindow.cpp" line="5237"/> + <location filename="../../src/onmainwindow.cpp" line="5239"/> <source>New session started</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5217"/> - <location filename="../../src/onmainwindow.cpp" line="5219"/> + <location filename="../../src/onmainwindow.cpp" line="5276"/> + <location filename="../../src/onmainwindow.cpp" line="5278"/> <source>Session resumed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5456"/> - <location filename="../../src/onmainwindow.cpp" line="5460"/> + <location filename="../../src/onmainwindow.cpp" line="5515"/> + <location filename="../../src/onmainwindow.cpp" line="5519"/> <source>Unable to create folder: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5486"/> - <location filename="../../src/onmainwindow.cpp" line="5490"/> + <location filename="../../src/onmainwindow.cpp" line="5545"/> + <location filename="../../src/onmainwindow.cpp" line="5549"/> <source>Unable to write file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5948"/> + <location filename="../../src/onmainwindow.cpp" line="6016"/> <source>Emergency exit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5957"/> + <location filename="../../src/onmainwindow.cpp" line="6025"/> <source>Waiting for proxy to exit.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7626"/> - <location filename="../../src/onmainwindow.cpp" line="7630"/> - <location filename="../../src/onmainwindow.cpp" line="7635"/> + <location filename="../../src/onmainwindow.cpp" line="7694"/> + <location filename="../../src/onmainwindow.cpp" line="7698"/> + <location filename="../../src/onmainwindow.cpp" line="7703"/> <source>Wrong parameter: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7644"/> + <location filename="../../src/onmainwindow.cpp" line="7712"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7707"/> + <location filename="../../src/onmainwindow.cpp" line="7775"/> <source>Changelog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7717"/> + <location filename="../../src/onmainwindow.cpp" line="7785"/> <source>Git Info</source> <translation type="unfinished"></translation> </message> @@ -2008,8 +2004,8 @@ Do you want to update the host key?</source> <translation type="obsolete">檔案無法寫入:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5624"/> - <location filename="../../src/onmainwindow.cpp" line="11074"/> + <location filename="../../src/onmainwindow.cpp" line="5683"/> + <location filename="../../src/onmainwindow.cpp" line="11142"/> <source>Attach X2Go window</source> <translation>連接X2Go視窗</translation> </message> @@ -2025,29 +2021,29 @@ Do you want to update the host key?</source> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6049"/> + <location filename="../../src/onmainwindow.cpp" line="6117"/> <source>Finished</source> <translation>已完成</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6089"/> + <location filename="../../src/onmainwindow.cpp" line="6157"/> <source>starting</source> <translation>正在開始</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6093"/> + <location filename="../../src/onmainwindow.cpp" line="6161"/> <source>resuming</source> <translation>正在還原</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6165"/> - <location filename="../../src/onmainwindow.cpp" line="6491"/> - <location filename="../../src/onmainwindow.cpp" line="6510"/> + <location filename="../../src/onmainwindow.cpp" line="6233"/> + <location filename="../../src/onmainwindow.cpp" line="6559"/> + <location filename="../../src/onmainwindow.cpp" line="6578"/> <source>Connection timeout, aborting</source> <translation>連線超時,中止中</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6166"/> + <location filename="../../src/onmainwindow.cpp" line="6234"/> <source>aborting</source> <translation>中止中</translation> </message> @@ -2057,20 +2053,20 @@ Unsaved documents will be lost</source> <translation type="obsolete">您確定要終止目前的工作階段嗎? 所有未存檔的資料都將會遺失</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6459"/> + <location filename="../../src/onmainwindow.cpp" line="6527"/> <source>Session</source> <translation>工作階段</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6461"/> - <location filename="../../src/onmainwindow.cpp" line="11994"/> - <location filename="../../src/onmainwindow.cpp" line="12016"/> + <location filename="../../src/onmainwindow.cpp" line="6529"/> + <location filename="../../src/onmainwindow.cpp" line="12062"/> + <location filename="../../src/onmainwindow.cpp" line="12084"/> <source>Display</source> <translation>顯示</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6463"/> - <location filename="../../src/onmainwindow.cpp" line="12005"/> + <location filename="../../src/onmainwindow.cpp" line="6531"/> + <location filename="../../src/onmainwindow.cpp" line="12073"/> <source>Creation time</source> <translation>創建時間</translation> </message> @@ -2083,7 +2079,7 @@ Unsaved documents will be lost</source> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7343"/> + <location filename="../../src/onmainwindow.cpp" line="7411"/> <source> (can't open file)</source> <translation> (無法開啟檔案)</translation> </message> @@ -2140,7 +2136,7 @@ Unsaved documents will be lost</source> <translation type="obsolete">可用的包裝方法:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8432"/> + <location filename="../../src/onmainwindow.cpp" line="8500"/> <source>Support</source> <translation>支援</translation> </message> @@ -2161,7 +2157,7 @@ Unsaved documents will be lost</source> <translation type="obsolete">沒有發現合法的卡片</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8889"/> + <location filename="../../src/onmainwindow.cpp" line="8957"/> <source>Card not configured.</source> <translation type="unfinished"></translation> </message> @@ -2170,7 +2166,7 @@ Unsaved documents will be lost</source> <translation type="obsolete">X2Go系統無法辨識此張卡片</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8921"/> + <location filename="../../src/onmainwindow.cpp" line="8989"/> <source>Unable to create file: </source> <translation>檔案無法創建:</translation> </message> @@ -2199,8 +2195,8 @@ Please check your installation</source> 請檢查X伺服器安是否有安裝正確</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9387"/> - <location filename="../../src/onmainwindow.cpp" line="9392"/> + <location filename="../../src/onmainwindow.cpp" line="9455"/> + <location filename="../../src/onmainwindow.cpp" line="9460"/> <source>Unable to execute: </source> <translation>無法執行:</translation> </message> @@ -2222,17 +2218,17 @@ Please update to a newer x2goserver package</source> </translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9632"/> + <location filename="../../src/onmainwindow.cpp" line="9700"/> <source>WINDOWS-1252</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9644"/> + <location filename="../../src/onmainwindow.cpp" line="9712"/> <source>ISO8859-1</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11168"/> + <location filename="../../src/onmainwindow.cpp" line="11236"/> <source>X2Go Session</source> <translation>X2Go工作階段</translation> </message> @@ -2241,34 +2237,34 @@ Please update to a newer x2goserver package</source> <translation type="obsolete">錯誤的"speed"參數值</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11549"/> + <location filename="../../src/onmainwindow.cpp" line="11617"/> <source>Password:</source> <translation>密碼:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11550"/> + <location filename="../../src/onmainwindow.cpp" line="11618"/> <source>Keyboard layout:</source> <translation>鑑盤佈局:</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11591"/> + <location filename="../../src/onmainwindow.cpp" line="11659"/> <source>Ok</source> <translation>確定</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11593"/> - <location filename="../../src/onmainwindow.cpp" line="11917"/> - <location filename="../../src/onmainwindow.cpp" line="11919"/> + <location filename="../../src/onmainwindow.cpp" line="11661"/> + <location filename="../../src/onmainwindow.cpp" line="11985"/> + <location filename="../../src/onmainwindow.cpp" line="11987"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11730"/> + <location filename="../../src/onmainwindow.cpp" line="11798"/> <source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source> <translation><b>工作階段識別碼:<br>伺服器:<br>使用者名稱:<br>顯示:<br>創建時間:<br>狀態:</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="676"/> + <location filename="../../src/onmainwindow.cpp" line="680"/> <source>Applications...</source> <translation type="unfinished"></translation> </message> @@ -2278,105 +2274,100 @@ Please update to a newer x2goserver package</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="277"/> + <location filename="../../src/onmainwindow.cpp" line="281"/> <source>Starting X2Go Client in portable mode. Data directory is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="409"/> - <location filename="../../src/onmainwindow.cpp" line="8457"/> + <location filename="../../src/onmainwindow.cpp" line="413"/> + <location filename="../../src/onmainwindow.cpp" line="8525"/> <source>About X2Go Client</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="513"/> + <location filename="../../src/onmainwindow.cpp" line="517"/> <source>Started X2Go Client.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="593"/> - <location filename="../../src/onmainwindow.cpp" line="621"/> + <location filename="../../src/onmainwindow.cpp" line="597"/> + <location filename="../../src/onmainwindow.cpp" line="625"/> <source> found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="606"/> - <source>English language requested, not loading translator.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="627"/> + <location filename="../../src/onmainwindow.cpp" line="631"/> <source>Non-fatal: can't load translator: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="628"/> + <location filename="../../src/onmainwindow.cpp" line="632"/> <source>Trying to load language with lower preference, if existent.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="879"/> + <location filename="../../src/onmainwindow.cpp" line="883"/> <source>Session management ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="890"/> + <location filename="../../src/onmainwindow.cpp" line="894"/> <source>&Create session icon on desktop ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="899"/> + <location filename="../../src/onmainwindow.cpp" line="903"/> <source>&Set broker password ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="910"/> + <location filename="../../src/onmainwindow.cpp" line="914"/> <source>&Connectivity test ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1189"/> - <location filename="../../src/onmainwindow.cpp" line="11747"/> + <location filename="../../src/onmainwindow.cpp" line="1193"/> + <location filename="../../src/onmainwindow.cpp" line="11815"/> <source>Share folder ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1219"/> + <location filename="../../src/onmainwindow.cpp" line="1223"/> <source>A left click hides or restores the window. A right click displays the context menu.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1405"/> + <location filename="../../src/onmainwindow.cpp" line="1409"/> <source>Closing X2Go Client ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1570"/> + <location filename="../../src/onmainwindow.cpp" line="1576"/> <source>Finished X2Go Client closing hooks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1823"/> + <location filename="../../src/onmainwindow.cpp" line="1829"/> <source>Broker authentication failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="1907"/> + <location filename="../../src/onmainwindow.cpp" line="1913"/> <source>no X2Go Server found in LDAP </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2907"/> + <location filename="../../src/onmainwindow.cpp" line="2913"/> <source>Connection error: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="2976"/> + <location filename="../../src/onmainwindow.cpp" line="2982"/> <source>Couldn't find an SSH connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3063"/> + <location filename="../../src/onmainwindow.cpp" line="3069"/> <source>This can be an indication of a man-in-the-middle attack. Somebody might be eavesdropping on you. For security reasons, it is recommended to stop the connection attempt. @@ -2385,17 +2376,17 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3067"/> - <location filename="../../src/onmainwindow.cpp" line="3078"/> - <location filename="../../src/onmainwindow.cpp" line="3095"/> - <location filename="../../src/onmainwindow.cpp" line="3106"/> - <location filename="../../src/onmainwindow.cpp" line="3138"/> - <location filename="../../src/onmainwindow.cpp" line="3150"/> + <location filename="../../src/onmainwindow.cpp" line="3073"/> + <location filename="../../src/onmainwindow.cpp" line="3084"/> + <location filename="../../src/onmainwindow.cpp" line="3101"/> + <location filename="../../src/onmainwindow.cpp" line="3112"/> + <location filename="../../src/onmainwindow.cpp" line="3144"/> + <location filename="../../src/onmainwindow.cpp" line="3156"/> <source>Host key verification failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3090"/> + <location filename="../../src/onmainwindow.cpp" line="3096"/> <source>The host key for this server was not found but another type of key exists. An attacker might have changed the default server key to trick your client into thinking the key does not exist yet. For security reasons, it is recommended to stop the connection attempt. Do you want to terminate the connection? @@ -2403,290 +2394,288 @@ Do you want to terminate the connection? <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3129"/> + <location filename="../../src/onmainwindow.cpp" line="3135"/> <source>Could not find known hosts file. If you accept the host key here, the file will be automatically created.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3182"/> + <location filename="../../src/onmainwindow.cpp" line="3188"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3654"/> - <location filename="../../src/onmainwindow.cpp" line="4890"/> - <location filename="../../src/onmainwindow.cpp" line="4984"/> - <location filename="../../src/onmainwindow.cpp" line="5017"/> - <location filename="../../src/onmainwindow.cpp" line="7739"/> - <location filename="../../src/onmainwindow.cpp" line="7821"/> - <location filename="../../src/onmainwindow.cpp" line="8130"/> - <location filename="../../src/onmainwindow.cpp" line="8194"/> - <location filename="../../src/onmainwindow.cpp" line="9365"/> + <location filename="../../src/onmainwindow.cpp" line="3734"/> + <location filename="../../src/onmainwindow.cpp" line="4949"/> + <location filename="../../src/onmainwindow.cpp" line="5043"/> + <location filename="../../src/onmainwindow.cpp" line="5076"/> + <location filename="../../src/onmainwindow.cpp" line="7807"/> + <location filename="../../src/onmainwindow.cpp" line="7889"/> + <location filename="../../src/onmainwindow.cpp" line="8198"/> + <location filename="../../src/onmainwindow.cpp" line="8262"/> + <location filename="../../src/onmainwindow.cpp" line="9433"/> <source><b>Connection failed.</b> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3889"/> + <location filename="../../src/onmainwindow.cpp" line="3969"/> <source>No server available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="3898"/> - <location filename="../../src/onmainwindow.cpp" line="4254"/> - <location filename="../../src/onmainwindow.cpp" line="4817"/> - <location filename="../../src/onmainwindow.cpp" line="4962"/> + <location filename="../../src/onmainwindow.cpp" line="3978"/> + <location filename="../../src/onmainwindow.cpp" line="4334"/> + <location filename="../../src/onmainwindow.cpp" line="4876"/> + <location filename="../../src/onmainwindow.cpp" line="5021"/> <source>Server not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4598"/> + <location filename="../../src/onmainwindow.cpp" line="4678"/> <source>No accessible desktop found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="4728"/> - <location filename="../../src/onmainwindow.cpp" line="4747"/> - <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! It's highly recommended to change the color depth of your display to </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="4736"/> - <location filename="../../src/onmainwindow.cpp" line="4755"/> - <source> bits and restart your X.Org Server before you reconnect to this X2Go session.<br />Do you want to resume this session anyway?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/onmainwindow.cpp" line="5650"/> + <location filename="../../src/onmainwindow.cpp" line="5709"/> <source>Unable to create SSH tunnel for X2Go session (NX) startup: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5680"/> + <location filename="../../src/onmainwindow.cpp" line="5739"/> <source>Unable to create SSH tunnel for audio data: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5806"/> - <location filename="../../src/onmainwindow.cpp" line="8764"/> + <location filename="../../src/onmainwindow.cpp" line="5865"/> + <location filename="../../src/onmainwindow.cpp" line="8832"/> <source>failed to start.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5807"/> + <location filename="../../src/onmainwindow.cpp" line="5866"/> <source>This likely means the binary is not available. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5821"/> + <location filename="../../src/onmainwindow.cpp" line="5880"/> <source>returned a non-zero exit code or crashed otherwise.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5822"/> + <location filename="../../src/onmainwindow.cpp" line="5881"/> <source>Execution failed, exit code was: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5827"/> + <location filename="../../src/onmainwindow.cpp" line="5886"/> <source>didn't start up in time.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5828"/> - <location filename="../../src/onmainwindow.cpp" line="8792"/> + <location filename="../../src/onmainwindow.cpp" line="5887"/> + <location filename="../../src/onmainwindow.cpp" line="8860"/> <source>This error shouldn't come up.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5832"/> - <location filename="../../src/onmainwindow.cpp" line="8796"/> + <location filename="../../src/onmainwindow.cpp" line="5891"/> + <location filename="../../src/onmainwindow.cpp" line="8864"/> <source>didn't accept a write operation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5833"/> - <location filename="../../src/onmainwindow.cpp" line="5838"/> - <location filename="../../src/onmainwindow.cpp" line="8797"/> - <location filename="../../src/onmainwindow.cpp" line="8802"/> + <location filename="../../src/onmainwindow.cpp" line="5892"/> + <location filename="../../src/onmainwindow.cpp" line="5897"/> + <location filename="../../src/onmainwindow.cpp" line="8865"/> + <location filename="../../src/onmainwindow.cpp" line="8870"/> <source>It is probably not running correctly or crashed in-between.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5837"/> + <location filename="../../src/onmainwindow.cpp" line="5896"/> <source>Unable to read from xmodmap.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5842"/> - <location filename="../../src/onmainwindow.cpp" line="8806"/> + <location filename="../../src/onmainwindow.cpp" line="5901"/> + <location filename="../../src/onmainwindow.cpp" line="8874"/> <source>encountered an unknown error during start up or execution.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5846"/> - <location filename="../../src/onmainwindow.cpp" line="8810"/> + <location filename="../../src/onmainwindow.cpp" line="5905"/> + <location filename="../../src/onmainwindow.cpp" line="8878"/> <source>experienced an undefined error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5855"/> - <location filename="../../src/onmainwindow.cpp" line="8819"/> + <location filename="../../src/onmainwindow.cpp" line="5914"/> + <location filename="../../src/onmainwindow.cpp" line="8887"/> <source>X2Go Client will now terminate. File a bug report as outlined on the <a href="http://wiki.x2go.org/doku.php/wiki:bugs">bugs wiki page</a>.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="5960"/> + <location filename="../../src/onmainwindow.cpp" line="5927"/> + <source>Failed to start RDP or XMDCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="5928"/> + <source>Check session settings and ensure that selected client is installed on your system.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="6028"/> <source>Proxy didn't terminate after 3 seconds. Killing the proxy.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6002"/> - <location filename="../../src/onmainwindow.cpp" line="9402"/> + <location filename="../../src/onmainwindow.cpp" line="6070"/> + <location filename="../../src/onmainwindow.cpp" line="9470"/> <source>Closing X2Go Client because it was started in hidden mode.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6007"/> - <location filename="../../src/onmainwindow.cpp" line="9407"/> + <location filename="../../src/onmainwindow.cpp" line="6075"/> + <location filename="../../src/onmainwindow.cpp" line="9475"/> <source>Closing X2Go Client because the --close-disconnect parameter was passed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6365"/> + <location filename="../../src/onmainwindow.cpp" line="6433"/> <source>Are you sure you want to terminate this session? Unsaved documents will be lost.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="6781"/> - <location filename="../../src/onmainwindow.cpp" line="6811"/> + <location filename="../../src/onmainwindow.cpp" line="6849"/> + <location filename="../../src/onmainwindow.cpp" line="6879"/> <source><b>Connection failed.</b> : </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7355"/> - <location filename="../../src/onmainwindow.cpp" line="7366"/> - <location filename="../../src/onmainwindow.cpp" line="7377"/> + <location filename="../../src/onmainwindow.cpp" line="7423"/> + <location filename="../../src/onmainwindow.cpp" line="7434"/> + <location filename="../../src/onmainwindow.cpp" line="7445"/> <source> (file does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7404"/> + <location filename="../../src/onmainwindow.cpp" line="7472"/> <source> (directory does not exist)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7431"/> + <location filename="../../src/onmainwindow.cpp" line="7499"/> <source>Invalid value for parameter "--link".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7448"/> + <location filename="../../src/onmainwindow.cpp" line="7516"/> <source>Invalid value for parameter "--clipboard".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7464"/> + <location filename="../../src/onmainwindow.cpp" line="7532"/> <source>Invalid value for parameter "--sound".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7480"/> - <location filename="../../src/onmainwindow.cpp" line="7490"/> + <location filename="../../src/onmainwindow.cpp" line="7548"/> + <location filename="../../src/onmainwindow.cpp" line="7558"/> <source>Invalid value for parameter "--geometry".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7507"/> + <location filename="../../src/onmainwindow.cpp" line="7575"/> <source>Invalid value for parameter "--set-kbd".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7523"/> + <location filename="../../src/onmainwindow.cpp" line="7591"/> <source>Invalid value for parameter "--ldap".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7544"/> + <location filename="../../src/onmainwindow.cpp" line="7612"/> <source>Invalid value for parameter "--ldap1".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7563"/> + <location filename="../../src/onmainwindow.cpp" line="7631"/> <source>Invalid value for parameter "--ldap2".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7617"/> + <location filename="../../src/onmainwindow.cpp" line="7685"/> <source>Invalid value for parameter "--pack".</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7652"/> + <location filename="../../src/onmainwindow.cpp" line="7720"/> <source>Available pack methods:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7674"/> + <location filename="../../src/onmainwindow.cpp" line="7742"/> <source>Pack Methods</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="7704"/> - <location filename="../../src/onmainwindow.cpp" line="7714"/> + <location filename="../../src/onmainwindow.cpp" line="7772"/> + <location filename="../../src/onmainwindow.cpp" line="7782"/> <source>Option is not available in this build.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8086"/> + <location filename="../../src/onmainwindow.cpp" line="8154"/> <source>Unable to create directory:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8437"/> + <location filename="../../src/onmainwindow.cpp" line="8505"/> <source><br>(C) 2005-2017 by <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing<br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9499"/> + <location filename="../../src/onmainwindow.cpp" line="9567"/> <source>Unable to create or append to file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9519"/> + <location filename="../../src/onmainwindow.cpp" line="9587"/> <source>Unable to change the permissions of file: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9520"/> + <location filename="../../src/onmainwindow.cpp" line="9588"/> <source>This is an error because sshd would deny such a file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9537"/> + <location filename="../../src/onmainwindow.cpp" line="9605"/> <source>Unable to change the permissions of directory: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9538"/> + <location filename="../../src/onmainwindow.cpp" line="9606"/> <source>This is an error because sshd would deny such a directory.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10232"/> + <location filename="../../src/onmainwindow.cpp" line="10300"/> <source>Unable to find the sftp-server binary. Neither bundled, nor found in $PATH nor additional directories.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10233"/> + <location filename="../../src/onmainwindow.cpp" line="10301"/> <source>If you are using a Linux-based operating system, please ask your system administrator to install the package containing the sftp-server binary. Common names are <b>openssh</b>, <b>openssh-server</b> or <b>openssh-sftp-server</b> depending upon distribution. If the sftp-server binary is installed on your system, please report a bug mentioning its path on: @@ -2695,261 +2684,279 @@ If the sftp-server binary is installed on your system, please report a bug menti <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10275"/> + <location filename="../../src/onmainwindow.cpp" line="10343"/> <source>SSH key type selection error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10276"/> + <location filename="../../src/onmainwindow.cpp" line="10344"/> <source>Unknown SSH key selected.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10278"/> - <location filename="../../src/onmainwindow.cpp" line="10354"/> - <location filename="../../src/onmainwindow.cpp" line="10433"/> - <location filename="../../src/onmainwindow.cpp" line="10441"/> - <location filename="../../src/onmainwindow.cpp" line="10451"/> + <location filename="../../src/onmainwindow.cpp" line="10346"/> + <location filename="../../src/onmainwindow.cpp" line="10422"/> + <location filename="../../src/onmainwindow.cpp" line="10501"/> + <location filename="../../src/onmainwindow.cpp" line="10509"/> + <location filename="../../src/onmainwindow.cpp" line="10519"/> <source>Terminating application.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10351"/> + <location filename="../../src/onmainwindow.cpp" line="10419"/> <source>SSH key base directory creation error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10352"/> + <location filename="../../src/onmainwindow.cpp" line="10420"/> <source>Unable to create SSH key base directory '%1'.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10430"/> + <location filename="../../src/onmainwindow.cpp" line="10498"/> <source>ssh-keygen launching error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10431"/> + <location filename="../../src/onmainwindow.cpp" line="10499"/> <source>Unable to start the ssh-keygen binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10438"/> + <location filename="../../src/onmainwindow.cpp" line="10506"/> <source>ssh-keygen crashed</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10439"/> + <location filename="../../src/onmainwindow.cpp" line="10507"/> <source>The ssh-keygen binary crashed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10446"/> + <location filename="../../src/onmainwindow.cpp" line="10514"/> <source>ssh-keygen program error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10447"/> + <location filename="../../src/onmainwindow.cpp" line="10515"/> <source>The ssh-keygen binary did not exit cleanly.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10449"/> + <location filename="../../src/onmainwindow.cpp" line="10517"/> <source>It was probably called with unknown arguments.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10508"/> + <location filename="../../src/onmainwindow.cpp" line="10576"/> <source>Unable to open newly generated %1 public host key file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10528"/> + <location filename="../../src/onmainwindow.cpp" line="10596"/> <source>%1 public host key file empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10534"/> + <location filename="../../src/onmainwindow.cpp" line="10602"/> <source>Cannot open key: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8440"/> + <location filename="../../src/onmainwindow.cpp" line="8508"/> <source><br>X2Go Plugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH (Freiburg)</a><br></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8444"/> + <location filename="../../src/onmainwindow.cpp" line="4805"/> + <source>Your current color depth is different from the session's color depth. This may cause problems reconnecting to this session and in most cases <b>you will loose the session</b> and have to start a new one! </source> + <translation type="unfinished"></translation> + </message> + <message numerus="yes"> + <location filename="../../src/onmainwindow.cpp" line="4810"/> + <source>It's highly recommended to change the color depth of your display to %n bit(s) and restart your X.Org Server before you reconnect to this X2Go session.</source> + <comment>%n will be replaced with a number</comment> + <translation type="unfinished"> + <numerusform></numerusform> + </translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="4816"/> + <source><br />Do you want to resume this session anyway?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/onmainwindow.cpp" line="8512"/> <source><br>This is a client to access the X2Go network-based computing environment. This client will be able to connect to X2Go Server(s) and start, stop, resume and terminate (running) desktop sessions. X2Go Client stores different server connections and may automatically request authentication data from LDAP directories. Furthermore, it can be used as a fullscreen login screen (replacement for login managers like XDM). Please visit <a href="http://www.x2go.org&qu [...] <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8458"/> + <location filename="../../src/onmainwindow.cpp" line="8526"/> <source><b>X2Go Client v. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8503"/> + <location filename="../../src/onmainwindow.cpp" line="8571"/> <source>Please check LDAP Settings.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8765"/> + <location filename="../../src/onmainwindow.cpp" line="8833"/> <source>Check whether the package providing "scdaemon" is installed. The current search path is: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8791"/> + <location filename="../../src/onmainwindow.cpp" line="8859"/> <source>didn't start yet.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8801"/> + <location filename="../../src/onmainwindow.cpp" line="8869"/> <source>Unable to read from scdaemon.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8837"/> + <location filename="../../src/onmainwindow.cpp" line="8905"/> <source>No valid card found.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="8893"/> + <location filename="../../src/onmainwindow.cpp" line="8961"/> <source>This card is unknown to the X2Go system.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9221"/> - <location filename="../../src/onmainwindow.cpp" line="9930"/> - <location filename="../../src/onmainwindow.cpp" line="9960"/> + <location filename="../../src/onmainwindow.cpp" line="9289"/> + <location filename="../../src/onmainwindow.cpp" line="9998"/> + <location filename="../../src/onmainwindow.cpp" line="10028"/> <source>Can't start X.Org Server. Please check your installation.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9423"/> + <location filename="../../src/onmainwindow.cpp" line="9491"/> <source>Remote server does not support file system exports through SSH tunnels. Please update your x2goserver package.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9448"/> + <location filename="../../src/onmainwindow.cpp" line="9516"/> <source>Unable to create SSH tunnel for Folder Sharing and Printing support: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="9477"/> + <location filename="../../src/onmainwindow.cpp" line="9545"/> <source>Unable to read: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="10886"/> + <location filename="../../src/onmainwindow.cpp" line="10954"/> <source>Error getting window geometry. (Did you close the window?)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11369"/> + <location filename="../../src/onmainwindow.cpp" line="11437"/> <source>Invalid value for argument "speed"</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11740"/> + <location filename="../../src/onmainwindow.cpp" line="11808"/> <source>Applications ...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11753"/> + <location filename="../../src/onmainwindow.cpp" line="11821"/> <source>Abort</source> <translation>退出</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11765"/> + <location filename="../../src/onmainwindow.cpp" line="11833"/> <source>Show details</source> <translation>顯示細節</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11915"/> + <location filename="../../src/onmainwindow.cpp" line="11983"/> <source>Resume</source> <translation>恢復</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11927"/> + <location filename="../../src/onmainwindow.cpp" line="11995"/> <source>New</source> <translation>新增</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11930"/> + <location filename="../../src/onmainwindow.cpp" line="11998"/> <source>Full access</source> <translation>完全存取</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11933"/> + <location filename="../../src/onmainwindow.cpp" line="12001"/> <source>View only</source> <translation>僅查看</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11996"/> + <location filename="../../src/onmainwindow.cpp" line="12064"/> <source>Status</source> <translation>狀態</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="11998"/> + <location filename="../../src/onmainwindow.cpp" line="12066"/> <source>Command</source> <translation>指令</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12000"/> + <location filename="../../src/onmainwindow.cpp" line="12068"/> <source>Type</source> <translation>型態</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12002"/> + <location filename="../../src/onmainwindow.cpp" line="12070"/> <source>Server</source> <translation>伺服器</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12007"/> + <location filename="../../src/onmainwindow.cpp" line="12075"/> <source>Client IP</source> <translation>客戶端IP</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12009"/> + <location filename="../../src/onmainwindow.cpp" line="12077"/> <source>Session ID</source> <translation>工作階段識別碼</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12013"/> + <location filename="../../src/onmainwindow.cpp" line="12081"/> <source>User</source> <translation>使用者</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12044"/> + <location filename="../../src/onmainwindow.cpp" line="12112"/> <source>Only my desktops</source> <translation>只選擇我的桌面</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12143"/> + <location filename="../../src/onmainwindow.cpp" line="12211"/> <source>SSH daemon could not be started. </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12161"/> - <location filename="../../src/onmainwindow.cpp" line="12194"/> + <location filename="../../src/onmainwindow.cpp" line="12229"/> + <location filename="../../src/onmainwindow.cpp" line="12262"/> <source>Disabling Remote Printing or File Sharing support in the session settings will get rid of this message.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12174"/> + <location filename="../../src/onmainwindow.cpp" line="12242"/> <source>SSH daemon failed to open its public host key.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12218"/> + <location filename="../../src/onmainwindow.cpp" line="12286"/> <source>SSH daemon failed to open the application's authorized_keys file.</source> <translation type="unfinished"></translation> @@ -2963,12 +2970,12 @@ you can install sshd with <b>sudo apt-get install openssh-server</b></translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12259"/> + <location filename="../../src/onmainwindow.cpp" line="12327"/> <source>Restore toolbar</source> <translation>還原工具列</translation> </message> <message> - <location filename="../../src/onmainwindow.cpp" line="12305"/> + <location filename="../../src/onmainwindow.cpp" line="12373"/> <source><br><b> Click this button <br> to restore toolbar </b><br></source> <translation><br><b> 按此按鈕 <br> 還原工具列 </b><br></translation> </message> @@ -3197,106 +3204,90 @@ Example: <context> <name>PulseManager</name> <message> - <location filename="../../src/pulsemanager.cpp" line="127"/> - <source>Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="128"/> - <source>If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="158"/> + <location filename="../../src/pulsemanager.cpp" line="149"/> <source>Could not allocate buffer for getting current working directory!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="170"/> + <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="258"/> + <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="259"/> - <source>Sound support will not be available. - -If you downloaded the bundled, pre-compiled version from the official home page, please report a bug on: -<center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> -</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/pulsemanager.cpp" line="407"/> - <location filename="../../src/pulsemanager.cpp" line="432"/> - <location filename="../../src/pulsemanager.cpp" line="450"/> - <location filename="../../src/pulsemanager.cpp" line="465"/> - <location filename="../../src/pulsemanager.cpp" line="479"/> - <location filename="../../src/pulsemanager.cpp" line="497"/> - <location filename="../../src/pulsemanager.cpp" line="511"/> - <location filename="../../src/pulsemanager.cpp" line="532"/> - <location filename="../../src/pulsemanager.cpp" line="540"/> + <location filename="../../src/pulsemanager.cpp" line="410"/> + <location filename="../../src/pulsemanager.cpp" line="435"/> + <location filename="../../src/pulsemanager.cpp" line="453"/> + <location filename="../../src/pulsemanager.cpp" line="468"/> + <location filename="../../src/pulsemanager.cpp" line="482"/> + <location filename="../../src/pulsemanager.cpp" line="500"/> + <location filename="../../src/pulsemanager.cpp" line="514"/> + <location filename="../../src/pulsemanager.cpp" line="539"/> + <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="408"/> + <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="433"/> + <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="451"/> + <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="466"/> + <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="480"/> + <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="498"/> + <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="512"/> + <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="533"/> + <location filename="../../src/pulsemanager.cpp" line="540"/> <source>Unexpected format encountered.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="541"/> + <location filename="../../src/pulsemanager.cpp" line="547"/> <source>Unable to start PulseAudio binary.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="765"/> + <location filename="../../src/pulsemanager.cpp" line="923"/> <source>Unable to play startup sound.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/pulsemanager.cpp" line="766"/> + <location filename="../../src/pulsemanager.cpp" line="927"/> + <source>Sound support will not be available.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/pulsemanager.cpp" line="930"/> <source>If you downloaded the bundled, pre-compiled version from the official home page or the upstream Linux packages, please report a bug on: <center><a href="https://wiki.x2go.org/doku.php/wiki:bugs">https://wiki.x2go.org/doku.php/wiki:bugs</a></center> </source> @@ -3608,25 +3599,30 @@ Use X2Go Client's hidden mode?</source> <translation>伺服器(&S)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="116"/> - <location filename="../../src/sessionwidget.cpp" line="178"/> + <location filename="../../src/sessionwidget.cpp" line="87"/> + <source>Values ranging from <b>0</b> to <b>65535</b> are allowed.<br />A value of <b>0</b> will either use the port specified in the SSH configuration file belonging to a host or shortname, or use the default of <b>22</b>.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="122"/> + <location filename="../../src/sessionwidget.cpp" line="186"/> <source>Host:</source> <translation>主機:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="117"/> - <location filename="../../src/sessionwidget.cpp" line="184"/> + <location filename="../../src/sessionwidget.cpp" line="123"/> + <location filename="../../src/sessionwidget.cpp" line="192"/> <source>Login:</source> <translation>登入帳號:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="118"/> - <location filename="../../src/sessionwidget.cpp" line="395"/> + <location filename="../../src/sessionwidget.cpp" line="125"/> + <location filename="../../src/sessionwidget.cpp" line="415"/> <source>SSH port:</source> <translation>SSH連接埠:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="133"/> + <location filename="../../src/sessionwidget.cpp" line="140"/> <source>Use RSA/DSA key for ssh connection:</source> <translation>使用RSA/DSA密鑰於SSH連線:</translation> </message> @@ -3635,74 +3631,74 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">嘗試自動登入 (ssh代理或預設SSH密鑰)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="141"/> - <location filename="../../src/sessionwidget.cpp" line="172"/> + <location filename="../../src/sessionwidget.cpp" line="148"/> + <location filename="../../src/sessionwidget.cpp" line="180"/> <source>Kerberos 5 (GSSAPI) authentication</source> <translation>Kerberos 5 (GSSAPI) 認證</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="142"/> + <location filename="../../src/sessionwidget.cpp" line="149"/> <source>Delegation of GSSAPI credentials to the server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="146"/> + <location filename="../../src/sessionwidget.cpp" line="153"/> <source>Use Proxy server for SSH connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="147"/> + <location filename="../../src/sessionwidget.cpp" line="154"/> <source>Proxy server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="153"/> + <location filename="../../src/sessionwidget.cpp" line="160"/> <source>SSH</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="154"/> + <location filename="../../src/sessionwidget.cpp" line="161"/> <source>HTTP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="162"/> + <location filename="../../src/sessionwidget.cpp" line="170"/> <source>Same login as on X2Go Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="164"/> + <location filename="../../src/sessionwidget.cpp" line="172"/> <source>Same password as on X2Go Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="166"/> + <location filename="../../src/sessionwidget.cpp" line="174"/> <source>RSA/DSA key:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="328"/> - <location filename="../../src/sessionwidget.cpp" line="443"/> + <location filename="../../src/sessionwidget.cpp" line="336"/> + <location filename="../../src/sessionwidget.cpp" line="466"/> <source>X2Go Client is running in portable mode. You should use a path on your USB device to be able to access your data wherever you are.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="175"/> + <location filename="../../src/sessionwidget.cpp" line="183"/> <source>Type:</source> <translation type="unfinished">類別:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="179"/> + <location filename="../../src/sessionwidget.cpp" line="187"/> <source>Port:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="195"/> + <location filename="../../src/sessionwidget.cpp" line="203"/> <source>&Session type</source> <translation>工作階段類型(&S)</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="200"/> + <location filename="../../src/sessionwidget.cpp" line="208"/> <source>Session type:</source> <translation>工作階段類型:</translation> </message> @@ -3711,99 +3707,106 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">連線至微軟終端伺服器</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="217"/> + <location filename="../../src/sessionwidget.cpp" line="225"/> + <location filename="../../src/sessionwidget.cpp" line="381"/> <source>XDMCP</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="218"/> + <location filename="../../src/sessionwidget.cpp" line="226"/> <source>Connect to local desktop</source> <translation>連線至本地桌面</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="219"/> + <location filename="../../src/sessionwidget.cpp" line="227"/> <source>Custom desktop</source> <translation>自訂桌面類型</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="220"/> + <location filename="../../src/sessionwidget.cpp" line="228"/> <source>Single application</source> <translation>單一應用程式</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="221"/> + <location filename="../../src/sessionwidget.cpp" line="229"/> <source>Published applications</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="223"/> - <location filename="../../src/sessionwidget.cpp" line="463"/> + <location filename="../../src/sessionwidget.cpp" line="231"/> + <location filename="../../src/sessionwidget.cpp" line="486"/> <source>Command:</source> <translation>指令:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="232"/> <source>Advanced options...</source> <translation>進階設定...</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="236"/> - <location filename="../../src/sessionwidget.cpp" line="776"/> - <location filename="../../src/sessionwidget.cpp" line="876"/> + <location filename="../../src/sessionwidget.cpp" line="244"/> + <location filename="../../src/sessionwidget.cpp" line="813"/> + <location filename="../../src/sessionwidget.cpp" line="914"/> <source>Path to executable</source> <translation>執行路徑</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="391"/> + <location filename="../../src/sessionwidget.cpp" line="383"/> + <source>Direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="411"/> <source>RDP port:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="407"/> + <location filename="../../src/sessionwidget.cpp" line="430"/> <source>Open picture</source> <translation>開啟圖片</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="409"/> + <location filename="../../src/sessionwidget.cpp" line="432"/> <source>Pictures</source> <translation>圖片</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="315"/> - <location filename="../../src/sessionwidget.cpp" line="430"/> + <location filename="../../src/sessionwidget.cpp" line="323"/> + <location filename="../../src/sessionwidget.cpp" line="453"/> <source>Open key file</source> <translation>開啟密鑰檔案</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="140"/> + <location filename="../../src/sessionwidget.cpp" line="147"/> <source>Try auto login (via SSH Agent or default SSH key)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="171"/> + <location filename="../../src/sessionwidget.cpp" line="179"/> <source>SSH Agent or default SSH key</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="216"/> - <location filename="../../src/sessionwidget.cpp" line="519"/> + <location filename="../../src/sessionwidget.cpp" line="224"/> + <location filename="../../src/sessionwidget.cpp" line="546"/> <source>Connect to Windows Terminal Server</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="247"/> + <location filename="../../src/sessionwidget.cpp" line="255"/> + <location filename="../../src/sessionwidget.cpp" line="388"/> <source>Direct RDP connection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="317"/> - <location filename="../../src/sessionwidget.cpp" line="432"/> + <location filename="../../src/sessionwidget.cpp" line="325"/> + <location filename="../../src/sessionwidget.cpp" line="455"/> <source>All files</source> <translation>所有檔案</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="327"/> - <location filename="../../src/sessionwidget.cpp" line="442"/> + <location filename="../../src/sessionwidget.cpp" line="335"/> + <location filename="../../src/sessionwidget.cpp" line="465"/> <source>Error</source> <translation>錯誤</translation> </message> @@ -3812,25 +3815,30 @@ Use X2Go Client's hidden mode?</source> <translation type="obsolete">X2Go用戶端目前為可攜式模式,您應該要使用您的USB裝置的路徑來存取您的資料</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="490"/> - <location filename="../../src/sessionwidget.cpp" line="730"/> + <location filename="../../src/sessionwidget.cpp" line="513"/> + <location filename="../../src/sessionwidget.cpp" line="763"/> <source>Server:</source> <translation>伺服器:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="499"/> - <location filename="../../src/sessionwidget.cpp" line="742"/> + <location filename="../../src/sessionwidget.cpp" line="522"/> + <location filename="../../src/sessionwidget.cpp" line="775"/> <source>XDMCP server:</source> <translation>XDMCP 伺服器:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="520"/> + <location filename="../../src/sessionwidget.cpp" line="526"/> + <source>direct XDMCP connection</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sessionwidget.cpp" line="547"/> <source>rdesktop command line options:</source> <translation>rdesktop 指令選項:</translation> </message> <message> - <location filename="../../src/sessionwidget.cpp" line="532"/> - <location filename="../../src/sessionwidget.cpp" line="754"/> + <location filename="../../src/sessionwidget.cpp" line="559"/> + <location filename="../../src/sessionwidget.cpp" line="791"/> <source>New session</source> <translation>新的工作階段</translation> </message> @@ -4012,16 +4020,23 @@ sound system connections through firewalls</source> </message> <message> <location filename="../../src/settingswidget.cpp" line="219"/> + <location filename="../../src/settingswidget.cpp" line="248"/> <source>Additional parameters:</source> <translation type="unfinished"></translation> </message> <message> <location filename="../../src/settingswidget.cpp" line="220"/> + <location filename="../../src/settingswidget.cpp" line="249"/> <source>Command line:</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="497"/> + <location filename="../../src/settingswidget.cpp" line="233"/> + <source>XDMCP client</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/settingswidget.cpp" line="534"/> <source>us</source> <translation>us</translation> </message> @@ -4030,8 +4045,8 @@ sound system connections through firewalls</source> <translation type="obsolete">pc105/us</translation> </message> <message> - <location filename="../../src/settingswidget.cpp" line="648"/> - <location filename="../../src/settingswidget.cpp" line="669"/> + <location filename="../../src/settingswidget.cpp" line="704"/> + <location filename="../../src/settingswidget.cpp" line="725"/> <source>password</source> <translation type="unfinished"></translation> </message> @@ -4128,94 +4143,96 @@ sound system connections through firewalls</source> <context> <name>SshMasterConnection</name> <message> - <location filename="../../src/sshmasterconnection.cpp" line="412"/> + <location filename="../../src/sshmasterconnection.cpp" line="467"/> <source>SSH proxy connection error.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="417"/> - <location filename="../../src/sshmasterconnection.cpp" line="423"/> + <location filename="../../src/sshmasterconnection.cpp" line="472"/> + <location filename="../../src/sshmasterconnection.cpp" line="478"/> <source>SSH proxy connection error: </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="439"/> + <location filename="../../src/sshmasterconnection.cpp" line="494"/> <source>Failed to create SSH proxy tunnel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="492"/> + <location filename="../../src/sshmasterconnection.cpp" line="547"/> <source>Cannot initialize libssh.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="520"/> + <location filename="../../src/sshmasterconnection.cpp" line="205"/> + <location filename="../../src/sshmasterconnection.cpp" line="575"/> + <location filename="../../src/sshmasterconnection.cpp" line="1676"/> <source>Cannot create SSH session.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="555"/> + <location filename="../../src/sshmasterconnection.cpp" line="206"/> + <source>Using environment-provided username.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../../src/sshmasterconnection.cpp" line="614"/> <source>Cannot connect to proxy server.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="686"/> - <location filename="../../src/sshmasterconnection.cpp" line="932"/> + <location filename="../../src/sshmasterconnection.cpp" line="746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1054"/> <source>Authentication failed.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1250"/> + <location filename="../../src/sshmasterconnection.cpp" line="1372"/> <source>Failed to start SSH client. Please check your installation and GSSApi configuration.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1276"/> + <location filename="../../src/sshmasterconnection.cpp" line="1398"/> <source>Check your GSSApi configuration or choose another authentication method.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1378"/> + <location filename="../../src/sshmasterconnection.cpp" line="1500"/> <source>Cannot open file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1390"/> + <location filename="../../src/sshmasterconnection.cpp" line="1512"/> <source>Cannot create remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1405"/> + <location filename="../../src/sshmasterconnection.cpp" line="1527"/> <source>Cannot write to remote file </source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1536"/> - <source>channel_open_forward failed.</source> - <translation type="unfinished"></translation> + <location filename="../../src/sshmasterconnection.cpp" line="1646"/> + <location filename="../../src/sshmasterconnection.cpp" line="1724"/> + <location filename="../../src/sshmasterconnection.cpp" line="1746"/> + <location filename="../../src/sshmasterconnection.cpp" line="1755"/> + <location filename="../../src/sshmasterconnection.cpp" line="1890"/> + <source>%1 failed.</source> + <extracomment>Argument in this context will be a function name.</extracomment> + <translation type="unfinished">%1失敗,</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1557"/> - <source>channel_open_session failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1645"/> + <location filename="../../src/sshmasterconnection.cpp" line="1834"/> <source>Error writing to socket.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1667"/> + <location filename="../../src/sshmasterconnection.cpp" line="1856"/> <source>Error reading channel.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1701"/> - <source>channel_write failed.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../../src/sshmasterconnection.cpp" line="1717"/> + <location filename="../../src/sshmasterconnection.cpp" line="1906"/> <source>Error reading from TCP socket.</source> <translation type="unfinished"></translation> </message> @@ -4252,8 +4269,8 @@ sound system connections through firewalls</source> <translation type="obsolete">無法寫入資料至遠端檔案</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="345"/> - <location filename="../../src/sshmasterconnection.cpp" line="586"/> + <location filename="../../src/sshmasterconnection.cpp" line="400"/> + <location filename="../../src/sshmasterconnection.cpp" line="645"/> <source>Cannot connect to </source> <translation>無法連線至 </translation> </message> @@ -4266,9 +4283,8 @@ sound system connections through firewalls</source> <translation type="obsolete">channel_open_session失敗</translation> </message> <message> - <location filename="../../src/sshmasterconnection.cpp" line="1566"/> <source>channel_request_exec failed</source> - <translation>channel_request_exec失敗</translation> + <translation type="obsolete">channel_request_exec失敗</translation> </message> </context> <context> -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 6ff714b0ee5372576ce209daa033ae6fd31f1927 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 07:59:11 2017 +0100 {macbuild.sh,src/{x2goutils.h,{pulsemanager,onmainwindow}.cpp},x2goclient.pro}: make MacPorts prefix selectable at compile time. Much cleaner for downstream package maintainers (like, for instance, MacPorts itself.) --- debian/changelog | 4 ++++ macbuild.sh | 3 ++- src/onmainwindow.cpp | 4 ++-- src/pulsemanager.cpp | 4 ++-- src/x2goutils.h | 4 ++++ x2goclient.pro | 4 ++++ 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index d0bb1ff..fb32acc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -120,6 +120,10 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - res/i18n/x2goclient_*.ts: regenerate translation files and fix up some SSH and PulseManager messages manually, where possible. - src/x2ogutils.h: guard UNUSED macro definition. + - {macbuild.sh,src/{x2goutils.h,{pulsemanager,onmainwindow}.cpp}, + x2goclient.pro}: make MacPorts prefix selectable at compile time. Much + cleaner for downstream package maintainers (like, for instance, MacPorts + itself.) [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/macbuild.sh b/macbuild.sh index 2cb3a8f..3a4966a 100755 --- a/macbuild.sh +++ b/macbuild.sh @@ -319,7 +319,8 @@ qmake -config "${BUILD_MODE}" -spec macx-g++ "${PROJECT}" \ QMAKE_MACOSX_DEPLOYMENT_TARGET="${MACOSX_DEPLOYMENT_TARGET}" \ OSX_STDLIB="${STDLIB}" \ MACPORTS_INCLUDE_PATH="${MACPORTS_PREFIX}/include" \ - MACPORTS_LIBRARY_PATH="${MACPORTS_PREFIX}/lib" + MACPORTS_LIBRARY_PATH="${MACPORTS_PREFIX}/lib" \ + MACPORTS_PREFIX="${MACPORTS_PREFIX}" phase "Running make" make -j2 diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index dd6fa87..9585ec5 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -5761,14 +5761,14 @@ void ONMainWindow::slotSetModMap() /* Let's set a reasonable default value if none is provided. */ if (path_val.isEmpty ()) { /* Prefer the default MacPorts prefix. */ - path_val = "/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin:/opt/X11/bin"; + path_val = MACPORTS_PREFIX "/bin:" MACPORTS_PREFIX "/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin:/opt/X11/bin"; tmp_env.insert ("PATH", path_val); } else { /* Search for and add specific directories to the PATH value, if necessary. */ QStringList to_back, to_front; to_back << "/opt/X11/bin"; - to_front << "/opt/local/bin" << "/usr/local/bin"; + to_front << MACPORTS_PREFIX "/bin" << "/usr/local/bin"; path_val = add_to_path (path_val, to_back); path_val = add_to_path (path_val, to_front, false); diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index 0a3e193..98ab6ee 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -71,7 +71,7 @@ PulseManager::PulseManager () : app_dir_ (QApplication::applicationDirPath ()), QString path_val = tmp_env.value ("PATH"); QStringList to_front, to_back; - to_front << "/opt/local/bin"; /* MacPorts default prefix, FIXME: might need to make that configurable. */ + to_front << MACPORTS_PREFIX "/bin"; /* MacPorts prefix. */ to_back << "/usr/local/bin"; /* Homebrew or random stuff. Probably even both intermingled... */ path_val = add_to_path (path_val, to_back); @@ -94,7 +94,7 @@ PulseManager::PulseManager () : app_dir_ (QApplication::applicationDirPath ()), if (server_binary_.isEmpty ()) { search_paths = QStringList (); - search_paths << "/opt/local/bin"; /* MacPorts default prefix, FIXME: might need to make that configurable. */ + search_paths << MACPORTS_PREFIX "/bin"; /* MacPorts prefix. */ server_binary_ = QStandardPaths::findExecutable ("pulseaudio", search_paths); diff --git a/src/x2goutils.h b/src/x2goutils.h index 68684f0..8a406c7 100644 --- a/src/x2goutils.h +++ b/src/x2goutils.h @@ -27,6 +27,10 @@ #define UNUSED(x) do { (void) x; } while (0) #endif +#ifndef MACPORTS_PREFIX +#define MACPORTS_PREFIX "/opt/local" +#endif + QString expandHome (QString path); QString fixup_resource_URIs (const QString &res_path); diff --git a/x2goclient.pro b/x2goclient.pro index a5e421f..6cc8fd5 100644 --- a/x2goclient.pro +++ b/x2goclient.pro @@ -221,6 +221,10 @@ macx { LIBS = -L$${MACPORTS_LIBRARY_PATH} $${LIBS} } + !isEmpty(MACPORTS_PREFIX) { + DEFINES += MACPORTS_PREFIX=\"\\\"$${MACPORTS_PREFIX}\\\"\" + } + # Strictly speaking, this is a bug in qmake and we should neither need $${PWD} # nor QMAKE_INFO_PLIST_OUT nor PRE_TARGETDEPS nor QMAKE_POST_LINK. # Not defining the latter two will however lead to it being empty and no -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit a0ae3bc28afd04a8e5374e2c2d76177153e1097b Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 05:07:13 2017 +0100 src/pulsemanager.cpp: deduplicate warning/error messages - make use of show_startup_warning (). This does imply changes to the translation files, coming up next. --- debian/changelog | 3 +++ src/pulsemanager.cpp | 24 +++++++----------------- 2 files changed, 10 insertions(+), 17 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7b706f4..e4f1d21 100644 --- a/debian/changelog +++ b/debian/changelog @@ -114,6 +114,9 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium could not be found in the constructor. We can live without PA and will show a warning message to the user later on when PA is supposed to be started. + - src/pulsemanager.cpp: deduplicate warning/error messages - make use of + show_startup_warning (). This does imply changes to the translation + files, coming up next. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index 69d909a..0a3e193 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -247,17 +247,14 @@ void PulseManager::start_generic () { QTimer::singleShot (3000, this, SLOT (slot_play_startup_sound ())); } } + else { + x2goErrorf (27) << "PulseAudio failed to start! Sound support will not be available."; + show_startup_warning (); + } } else { - x2goErrorf (27) << "PulseAudio failed to start! Sound support will not be available."; - show_RichText_WarningMsgBox (tr ("PulseAudio failed to start!"), - tr ("Sound support will not be available.\n\n" - "If you downloaded the bundled, pre-compiled version from the official home page, " - "please report a bug on:\n" - "<center><a href=\"https://wiki.x2go.org/doku.php/wiki:bugs\">" - "https://wiki.x2go.org/doku.php/wiki:bugs" - "</a></center>\n"), - true); + x2goErrorf (31) << "PulseAudio not detected on system! Sound support will not be available."; + show_startup_warning (); } } @@ -770,14 +767,7 @@ void PulseManager::slot_play_startup_sound () { } else { x2goErrorf (26) << "Unable to play startup sound! Something may be wrong."; - show_RichText_WarningMsgBox (tr ("Unable to play startup sound."), - tr ("If you downloaded the bundled, pre-compiled version from the official home page " - "or the upstream Linux packages, " - "please report a bug on:\n" - "<center><a href=\"https://wiki.x2go.org/doku.php/wiki:bugs\">" - "https://wiki.x2go.org/doku.php/wiki:bugs" - "</a></center>\n"), - true); + show_startup_warning (true); } } } -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 3fc1b2f4848d099736f25e0fae28b61d064b61ed Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 25 05:05:22 2017 +0100 src/pulsemanager.cpp: don't fail hard on OS X if the PA server binary could not be found in the constructor. We can live without PA and will show a warning message to the user later on when PA is supposed to be started. --- debian/changelog | 4 ++++ src/pulsemanager.cpp | 12 ------------ 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/debian/changelog b/debian/changelog index 2685967..7b706f4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -110,6 +110,10 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium and (debug) startup sound playback. - src/pulsemanager.cpp: check server_binary_ before using it and jump over code that assumes the PA server binary to be available. + - src/pulsemanager.cpp: don't fail hard on OS X if the PA server binary + could not be found in the constructor. We can live without PA and will + show a warning message to the user later on when PA is supposed to be + started. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/pulsemanager.cpp b/src/pulsemanager.cpp index 29bf439..69d909a 100644 --- a/src/pulsemanager.cpp +++ b/src/pulsemanager.cpp @@ -123,18 +123,6 @@ PulseManager::PulseManager () : app_dir_ (QApplication::applicationDirPath ()), } #endif /* QT_VERSION < 0x050000 */ - if (server_binary_.isEmpty ()) { - x2goErrorf (29) << "Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories."; - show_RichText_ErrorMsgBox (tr ("Unable to find the PulseAudio binary. Neither bundled, nor found in $PATH nor additional directories."), - tr ("If you downloaded the bundled, pre-compiled version from the official home page, " - "please report a bug on:\n" - "<center><a href=\"https://wiki.x2go.org/doku.php/wiki:bugs\">" - "https://wiki.x2go.org/doku.php/wiki:bugs" - "</a></center>\n"), - true); - abort (); - } - if (!(server_binary_.isEmpty ())) { QFileInfo tmp_file_info = QFileInfo (server_binary_); server_working_dir_ = tmp_file_info.canonicalPath (); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 16ab92c3b6954f4117f17cfc86847c3892f230a6 Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Feb 26 04:02:20 2017 +0100 res/i18n/x2goclient_fi.ts: remove outdated comment. --- debian/changelog | 1 + res/i18n/x2goclient_fi.ts | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index d7f5b0b..41859f5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -124,6 +124,7 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium x2goclient.pro}: make MacPorts prefix selectable at compile time. Much cleaner for downstream package maintainers (like, for instance, MacPorts itself.) + - res/i18n/x2goclient_fi.ts: remove outdated comment. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/res/i18n/x2goclient_fi.ts b/res/i18n/x2goclient_fi.ts index 3108422..eea325e 100644 --- a/res/i18n/x2goclient_fi.ts +++ b/res/i18n/x2goclient_fi.ts @@ -3510,7 +3510,6 @@ voit asentaa sshd komennolla <message> <location filename="../../src/printwidget.cpp" line="59"/> <source>Please configure your client side printing settings.<br><br>If you want to print the created file, you'll need an external application. Typically you can use <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>You can find further information <a href="http://www.x2go.org/index.php?id=49">here</a [...] - <comment>"and" between the first two links untranslated.</comment> <translation>Aseta päälle asiakasohjelman tulostus.<br><br>Jos haluat tulostaa tiedoton, tarvitsen erillisen sovelluksen. Tyyppillisesti voit käyttää tätä <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> ja <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Löydät lisäohjeita <a href="http://www.x2go.org/index.php?id=49">täältä</a>.</translation> </message> </context> -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit b207323784813df7d9d8be673b0d2ccc3ee10167 Author: Martti Pitkänen <martti.pitkanen@aplcomp.fi> Date: Sun Feb 26 03:48:29 2017 +0100 res/i18n/x2goclient_fi.ts: update Finnish translation file. --- debian/changelog | 4 ++++ res/i18n/x2goclient_fi.ts | 28 ++++++++++++---------------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/debian/changelog b/debian/changelog index e46199a..d7f5b0b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -136,6 +136,10 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium * New upstream version (4.1.0.1): - res/i18n/x2goclient_et.ts: update Estonian translation file. + [ Martti Pitkänen ] + * New upstream version (4.1.0.1): + - res/i18n/x2goclient_fi.ts: update Finnish translation file. + -- X2Go Release Manager <git-admin@x2go.org> Wed, 22 Feb 2017 07:13:10 +0100 x2goclient (4.1.0.0-0x2go1) unstable; urgency=medium diff --git a/res/i18n/x2goclient_fi.ts b/res/i18n/x2goclient_fi.ts index b3ab21d..3108422 100644 --- a/res/i18n/x2goclient_fi.ts +++ b/res/i18n/x2goclient_fi.ts @@ -3504,18 +3504,14 @@ voit asentaa sshd komennolla </message> <message> <source>Please configure your client side printing settings.<br><br>If you want to print the created file, you'll need an external application. Typically you can use <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>You can find further information <a href="http://www.x2go.org/index.php?id=49">here</a [...] - <comment>"and" untranslated.</comment> - <translation type="obsolete">Aseta päälle asiakasohjelman tulostus.<br><br>Jos haluat tulostaa tiedoton, tarvitsen erillisen sovelluksen. Tyyppillisesti voit käyttää tätä <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Löydät lisäohjeita <a href="http://www.x2go.org/index.php?id=49">täältä</a>.</translation> - </message> - <message> - <source>Please configure your client side printing settings.<br><br>If you want to print the created file, you'll need an external application. Typically you can use <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>You can find further information <a href="http://www.x2go.org/index.php?id=49">here</a [...] <comment>"and" between the first two links untranslated.</comment> <translation type="obsolete">Aseta päälle asiakasohjelman tulostus.<br><br>Jos haluat tulostaa tiedoton, tarvitsen erillisen sovelluksen. Tyyppillisesti voit käyttää tätä <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Löydät lisäohjeita <a href="http://www.x2go.org/index.php?id=49">täältä</a>.</translation> </message> <message> <location filename="../../src/printwidget.cpp" line="59"/> <source>Please configure your client side printing settings.<br><br>If you want to print the created file, you'll need an external application. Typically you can use <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>You can find further information <a href="http://www.x2go.org/index.php?id=49">here</a [...] - <translation type="unfinished">Aseta päälle asiakasohjelman tulostus.<br><br>Jos haluat tulostaa tiedoton, tarvitsen erillisen sovelluksen. Tyyppillisesti voit käyttää tätä <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> and <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Löydät lisäohjeita <a href="http://www.x2go.org/index.php?id=49">täältä</a>.</tra [...] + <comment>"and" between the first two links untranslated.</comment> + <translation>Aseta päälle asiakasohjelman tulostus.<br><br>Jos haluat tulostaa tiedoton, tarvitsen erillisen sovelluksen. Tyyppillisesti voit käyttää tätä <a href="http://pages.cs.wisc.edu/~ghost/doc/GPL/index.htm">ghostprint</a> ja <a href="http://pages.cs.wisc.edu/~ghost/gsview/">ghostview</a><br>Löydät lisäohjeita <a href="http://www.x2go.org/index.php?id=49">täältä</a>.</translation> </message> </context> <context> @@ -3618,12 +3614,12 @@ Esimerkki: <message> <location filename="../../src/pulsemanager.cpp" line="161"/> <source>getcwd() failed!</source> - <translation type="unfinished"></translation> + <translation>getcwd() kaatui!</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="926"/> <source>PulseAudio failed to start!</source> - <translation type="unfinished"></translation> + <translation>PulseAudio ei käynnistynyt!</translation> </message> <message> <source>Sound support will not be available. @@ -3648,42 +3644,42 @@ Jos latasit paketista, valmiin version viralliselta kotisivulat, ilmoita virhees <location filename="../../src/pulsemanager.cpp" line="539"/> <location filename="../../src/pulsemanager.cpp" line="546"/> <source>Error fetching PulseAudio version number!</source> - <translation type="unfinished"></translation> + <translation>PulseAudion versionumeron luku ei onnistu!</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="411"/> <source>Unexpected character found when parsing version string for major version number</source> - <translation type="unfinished"></translation> + <translation>Tunnistamaton merkki esti versionumeron lukemisen</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="436"/> <source>Unexpected character found when parsing version string for minor version number</source> - <translation type="unfinished"></translation> + <translation>Tunnistamaton merkki esti versionumeron jälkiosan lukemisen</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="454"/> <source>Unexpected character found when parsing version string for micro version number</source> - <translation type="unfinished"></translation> + <translation>Tunnistamaton merkki esti versionumeron lukemisen loppuun saakka</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="469"/> <source>Supposed to skip major version number. Something is wrong.</source> - <translation type="unfinished"></translation> + <translation>Versionumerosta luettiin vain alkuosa.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="483"/> <source>Unable to convert major version number string to integer.</source> - <translation type="unfinished"></translation> + <translation>Versiotietoa ei voitu muuttaa numeeriseksi.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="501"/> <source>Unable to convert minor version number string to integer.</source> - <translation type="unfinished"></translation> + <translation>Versionumeron loppuosaa ei voitu muuttaa numeeriseksi.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="515"/> <source>Unable to convert micro version number string to integer.</source> - <translation type="unfinished"></translation> + <translation>Version viimeistä osaa ei voitu muuttaa numeeriseksi.</translation> </message> <message> <location filename="../../src/pulsemanager.cpp" line="540"/> -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 32e36a2e608943d12f473b11d5d4ed9aace5a782 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Mar 1 07:24:32 2017 +0100 src/onmainwindow.cpp: check for sessionExplorer->getLastSession() to be valid in all places but obvious ones. Fixes: #499. --- debian/changelog | 2 + src/onmainwindow.cpp | 106 ++++++++++++++++++++++++++++++++++++++++++++++----- 2 files changed, 99 insertions(+), 9 deletions(-) diff --git a/debian/changelog b/debian/changelog index f426aac..f1bff6b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -127,6 +127,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium - res/i18n/x2goclient_fi.ts: remove outdated comment. - src/sshprocess.cpp: bind direct tunnel socket to localhost instead of any address. Fixes: #31. + - src/onmainwindow.cpp: check for sessionExplorer->getLastSession() to be + valid in all places but obvious ones. Fixes: #499. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index be99196..57363ff 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -1199,8 +1199,14 @@ void ONMainWindow::trayIconInit() if (sessionStatusDlg && sessionStatusDlg->isVisible()) { - if (!useLdap) - trayIconActiveConnectionMenu->setTitle(sessionExplorer->getLastSession()->name()); + if (!useLdap) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, not setting tray icon title."; + } + else { + trayIconActiveConnectionMenu->setTitle(sessionExplorer->getLastSession()->name()); + } + } else trayIconActiveConnectionMenu->setTitle(lastUser->username()); } @@ -3224,7 +3230,10 @@ void ONMainWindow::slotSessEnter() } } - + if ((brokerMode || !embedMode) && !(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, returning without starting a session."; + return; + } resumingSession.sessionId=QString::null; resumingSession.server=QString::null; @@ -3301,6 +3310,11 @@ void ONMainWindow::continueLDAPSession() #ifdef Q_OS_LINUX void ONMainWindow::startDirectRDP() { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, returning without starting a session."; + return; + } + X2goSettings* st; if(brokerMode) { @@ -3999,8 +4013,17 @@ void ONMainWindow::startNewSession() st= new X2goSettings(config.iniFile,QSettings::IniFormat); QString sid; - if ( !embedMode ) + if ( !embedMode ) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, returning without starting a session."; + + delete st; + + return; + } + sid=sessionExplorer->getLastSession()->id(); + } else sid="embedded"; pack=st->setting()->value ( sid+"/pack", @@ -4349,8 +4372,14 @@ void ONMainWindow::resumeSession ( const x2goSession& s ) { QString sid; - if ( !embedMode ) + if ( !embedMode ) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, returning without resuming a session."; + return; + } + sid=sessionExplorer->getLastSession()->id(); + } else sid="embedded"; X2goSettings* st; @@ -4587,6 +4616,8 @@ void ONMainWindow::setTrayIconToSessionIcon(QString info) { //send a information notification about the connection is done trayIcon->showMessage("X2Go - " + name, info, QSystemTrayIcon::Information, 15000); + + delete (st); } } @@ -4713,12 +4744,20 @@ void ONMainWindow::selectSession ( QStringList& sessions ) if (!brokerMode) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, returning without starting a shadow session."; + return; + } + st=new X2goSettings( "sessions" ); QString sid=sessionExplorer->getLastSession()->id(); QString suser = st->setting()->value(sid + "/shadowuser", (QVariant) QString::null).toString(); QString sdisplay = st->setting()->value(sid + "/shadowdisplay", (QVariant) QString::null).toString(); bool fullAccess= st->setting()->value(sid + "/shadowfullaccess", (QVariant) false).toBool(); + + delete (st); + if(suser != QString::null && sdisplay != QString::null) { shadowUser=suser; @@ -4870,6 +4909,12 @@ void ONMainWindow::slotSuspendSess() else { X2goSettings st ( "sessions" ); + + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, returning without suspending a session."; + return; + } + QString sid=sessionExplorer->getLastSession()->id(); host=st.setting()->value ( sid+"/host", ( QVariant ) host ).toString(); @@ -5014,6 +5059,11 @@ void ONMainWindow::slotTermSess() { X2goSettings st ( "sessions" ); + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, returning without terminating a session."; + return; + } + QString sid=sessionExplorer->getLastSession()->id(); } } @@ -5133,8 +5183,14 @@ void ONMainWindow::slotRetResumeSess ( bool result, else { QString sid; - if ( !embedMode ) + if ( !embedMode ) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, this should not happen since we already started resuming a session."; + return; + } + sid=sessionExplorer->getLastSession()->id(); + } else sid="embedded"; @@ -6664,6 +6720,11 @@ void ONMainWindow::runCommand() command=sessionCmd; else { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, not running command."; + return; + } + QString sid=sessionExplorer->getLastSession()->id(); command=st->setting()->value ( sid+"/command", @@ -8048,6 +8109,11 @@ void ONMainWindow::exportDirs ( QString exports,bool removable ) { X2goSettings st ( "sessions" ); + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, not exporting directories."; + return; + } + QString sid=sessionExplorer->getLastSession()->id(); fsInTun=st.setting()->value ( sid+"/fstunnel", @@ -8089,6 +8155,10 @@ void ONMainWindow::exportDefaultDirs() { if ( !embedMode ) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, not exporting default directories."; + return; + } X2goSettings* st; if (!brokerMode) @@ -9691,8 +9761,14 @@ void ONMainWindow::startX2goMount() if ( !useLdap ) { QString sid; - if ( !embedMode ) + if ( !embedMode ) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, not calling startx2gomount command."; + return; + } + sid=sessionExplorer->getLastSession()->id(); + } else sid="embedded"; if ( st.setting()->value ( @@ -10801,8 +10877,14 @@ void ONMainWindow::setProxyWinTitle() QString title; - if (!useLdap) + if (!useLdap) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, not setting proxy window title."; + return; + } + title=sessionExplorer->getLastSession()->name(); + } else title=getCurrentUname()+"@"+resumingSession.server; @@ -11053,8 +11135,14 @@ void ONMainWindow::slotFindProxyWin() { X2goSettings *st; QString sid; - if ( !embedMode ) + if ( !embedMode ) { + if (!(sessionExplorer->getLastSession())) { + x2goDebug << "No session selected, not searching for proxy window."; + return; + } + sid=sessionExplorer->getLastSession()->id(); + } else sid="embedded"; -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 51a0b540d3e57c6eec91e9168d40fec7de4b37cb Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Feb 28 16:38:58 2017 +0100 src/sshprocess.cpp: bind direct tunnel socket to localhost instead of any address. Fixes: #31. --- debian/changelog | 2 ++ src/sshprocess.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 495eff0..f426aac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -125,6 +125,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium cleaner for downstream package maintainers (like, for instance, MacPorts itself.) - res/i18n/x2goclient_fi.ts: remove outdated comment. + - src/sshprocess.cpp: bind direct tunnel socket to localhost instead of + any address. Fixes: #31. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/sshprocess.cpp b/src/sshprocess.cpp index 33fdf38..d921806 100644 --- a/src/sshprocess.cpp +++ b/src/sshprocess.cpp @@ -138,7 +138,7 @@ void SshProcess::tunnelLoop() setsockopt(serverSocket, IPPROTO_TCP, TCP_NODELAY,&y, sizeof(int)); address.sin_family=AF_INET; - address.sin_addr.s_addr=INADDR_ANY; + address.sin_addr.s_addr=htonl(INADDR_LOOPBACK); address.sin_port=htons(localPort); if (bind(serverSocket,(struct sockaddr*) &address,sizeof(address))!=0) { -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 39d35fedc35148da27696778eb0dc56acebba207 Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Feb 28 14:49:22 2017 +0100 debian/changelog: add closure for #1093, was actually legit. --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 41859f5..495eff0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -75,7 +75,7 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium will be unable to open a new socket to the remote endpoint and proxying will fail badly. - src/x2goutils.cpp: ensure that add_to_path () also processes the first - value passed. Fixes startup problems in MacPorts. + value passed. Fixes startup problems in MacPorts. Fixes: #1093. - src/onmainwindow.cpp: unbreak Windows and OS X builds - directRDP is only available on Linux, so guard new section. - res/i18n/x2goclient_et.ts: various fixups for the Estonian translation -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 852920607866f61d45a20c24ea5d9bfc9c0e42da Author: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> Date: Sat Feb 25 10:05:17 2017 +0100 Disable sound button on direct RDP and XDMCP sessions. Set for direct XDMCP session autologin=true. Set for direct XDMCP session username=XDM. --- debian/changelog | 3 +++ src/onmainwindow.cpp | 10 +++++++++- src/sessionbutton.cpp | 10 ++++++++++ 3 files changed, 22 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index fb32acc..e46199a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -128,6 +128,9 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): - Add "direct XDMCP" functionality. + - Disable sound button on direct RDP and XDMCP sessions. + Set for direct XDMCP session autologin=true. + Set for direct XDMCP session username=XDM. [ Robert Parts ] * New upstream version (4.1.0.1): diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 9585ec5..be99196 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -2730,6 +2730,12 @@ void ONMainWindow::slotSelectedFromList ( SessionButton* session ) autologin=st->setting()->value ( sid+"/autologin", ( QVariant ) false ).toBool(); +#ifdef Q_OS_LINUX + if(command =="XDMCP" && st->setting()->value ( + sid+"/directxdmcp", + ( QVariant ) false ).toBool()) + autologin=true; +#endif krblogin=st->setting()->value ( sid+"/krblogin", ( QVariant ) false ).toBool(); @@ -3469,14 +3475,16 @@ void ONMainWindow::startDirectRDP() break; } proxyCmd= client +" "+params+ grOpt + " -query "+host +" :"+QString::number(p) ; + login->setText(tr("XDM")); + resumingSession.display=tr("XDMCP"); } else { x2goDebug<<"starting direct RDP session"; + resumingSession.display=tr("RDP"); } // x2goDebug<<"starting direct session with cmd:"<<proxyCmd; nxproxy->start ( proxyCmd ); - resumingSession.display="RDP"; resumingSession.server=host; resumingSession.sessionId=sessionExplorer->getLastSession()->name(); resumingSession.crTime=QDateTime::currentDateTime().toString("dd.MM.yy HH:mm:ss"); diff --git a/src/sessionbutton.cpp b/src/sessionbutton.cpp index c87d8ac..26da85f 100644 --- a/src/sessionbutton.cpp +++ b/src/sessionbutton.cpp @@ -449,15 +449,23 @@ void SessionButton::redraw() } else if ( command =="RDP" ) { +#ifdef Q_OS_LINUX if (st->setting()->value ( sid+"/directrdp", ( QVariant ) false ).toBool()) directRDP=true; +#endif cmdpix.load ( par->iconsPath ( "/16x16/rdp.png" ) ); cmdBox->setCurrentIndex ( RDP ); command=tr ( "RDP connection" ); } else if ( command =="XDMCP" ) { +#ifdef Q_OS_LINUX + if (st->setting()->value ( sid+"/directxdmcp", + ( QVariant ) false ).toBool()) + directRDP=true; + server->setText ( "XDM@"+sv ); +#endif cmdpix.load ( par->iconsPath ( "/16x16/X.png" ) ); cmdBox->setCurrentIndex ( XDMCP ); command=tr ( "XDMCP" ); @@ -566,6 +574,8 @@ void SessionButton::redraw() snd=st->setting()->value ( sid+"/sound", ( QVariant ) true ).toBool(); + if(directRDP) + snd=false; if ( snd ) sound->setText ( tr ( "Enabled" ) ); else -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit d46c15e51682f61afc66ff2b5505c50ce242a67d Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Mar 2 09:14:04 2017 +0100 src/sshmasterconnection.cpp: use new PKI-based libssh API for public key authentication for libssh 0.6.0 and higher. Fixes: #1119. --- debian/changelog | 2 + src/sshmasterconnection.cpp | 124 ++++++++++++++++++++++++++++++++++++++------ 2 files changed, 109 insertions(+), 17 deletions(-) diff --git a/debian/changelog b/debian/changelog index f1bff6b..796376c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -129,6 +129,8 @@ x2goclient (4.1.0.1-0x2go1) UNRELEASED; urgency=medium any address. Fixes: #31. - src/onmainwindow.cpp: check for sessionExplorer->getLastSession() to be valid in all places but obvious ones. Fixes: #499. + - src/sshmasterconnection.cpp: use new PKI-based libssh API for public key + authentication for libssh 0.6.0 and higher. Fixes: #1119. [ Oleksandr Shneyder ] * New upstream version (4.1.0.1): diff --git a/src/sshmasterconnection.cpp b/src/sshmasterconnection.cpp index 0ceff00..d0bec75 100644 --- a/src/sshmasterconnection.cpp +++ b/src/sshmasterconnection.cpp @@ -1197,7 +1197,7 @@ void SshMasterConnection::setKeyPhrase(QString phrase) bool SshMasterConnection::userAuthWithKey() { #ifdef DEBUG - x2goDebug<<"Trying to authenticate user with private key." <<endl; + x2goDebug<<"Trying to authenticate user with private key."; #endif QString keyName=key; bool autoRemove=false; @@ -1215,13 +1215,40 @@ bool SshMasterConnection::userAuthWithKey() fl.close(); autoRemove=true; #ifdef DEBUG - x2goDebug<<"Temporarily saved key in "<<keyName<<endl; + x2goDebug<<"Temporarily saved key in "<<keyName; #endif } - ssh_private_key prkey=privatekey_from_file(my_ssh_session, keyName.toLatin1(), 0,""); + QByteArray tmp_ba = keyName.toLocal8Bit (); + +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) + ssh_key priv_key = { 0 }; + + int rc = ssh_pki_import_privkey_file (tmp_ba.data (), NULL, NULL, NULL, &priv_key); + + if (SSH_EOF == rc) { + x2goDebug << "Failed to get private key from " << keyName << "; file does not exist."; + + ssh_key_free (priv_key); + + return (false); + } + else if (SSH_OK != rc) { + x2goDebug << "Failed to get private key from " << keyName << "; trying to query passphrase."; + + ssh_key_free (priv_key); + priv_key = NULL; + } +#else + ssh_private_key priv_key = privatekey_from_file (my_ssh_session, tmp_ba.data (), NULL, NULL); +#endif + int i=0; - while(!prkey) +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) + while (SSH_OK != rc) +#else + while (!priv_key) +#endif { keyPhraseReady=false; emit needPassPhrase(this, false); @@ -1238,44 +1265,105 @@ bool SshMasterConnection::userAuthWithKey() } if(keyPhrase==QString::null) break; - prkey=privatekey_from_file(my_ssh_session, keyName.toLatin1(), 0,keyPhrase.toLatin1()); + + QByteArray tmp_ba_passphrase = keyPhrase.toLocal8Bit (); + +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) + rc = ssh_pki_import_privkey_file (tmp_ba.data (), tmp_ba_passphrase.data (), NULL, NULL, &priv_key); + + if (SSH_OK != rc) { + ssh_key_free (priv_key); + priv_key = NULL; + } +#else + priv_key = privatekey_from_file (my_ssh_session, tmp_ba.data (), NULL, tmp_ba_passphrase.data ()); +#endif + if(i++==2) { break; } } +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) + if (SSH_OK != rc) +#else if (!prkey) +#endif { #ifdef DEBUG - x2goDebug<<"Failed to get private key from "<<keyName<<endl; + x2goDebug<<"Failed to get private key from "<<keyName; #endif if ( autoRemove ) QFile::remove ( keyName ); return false; } - ssh_public_key pubkey=publickey_from_privatekey(prkey); + +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) + ssh_key pub_key = { 0 }; + + rc = ssh_pki_export_privkey_to_pubkey (priv_key, &pub_key); +#else + ssh_public_key pub_key = publickey_from_privatekey (priv_key); +#endif + +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) + if (SSH_OK != rc) +#else if (!pubkey) +#endif { #ifdef DEBUG - x2goDebug<<"Failed to get public key from private key."<<endl; + x2goDebug<<"Failed to get public key from private key."; +#endif +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) + ssh_key_free (priv_key); + priv_key = NULL; + + ssh_key_free (pub_key); + pub_key = NULL; +#else + privatekey_free(priv_key); #endif - privatekey_free(prkey); if ( autoRemove ) QFile::remove ( keyName ); return false; } - ssh_string pubkeyStr=publickey_to_string(pubkey); - publickey_free(pubkey); +#if LIBSSH_VERSION_INT >= SSH_VERSION_INT (0, 6, 0) + do { + rc = ssh_userauth_try_publickey (my_ssh_session, NULL, pub_key); + } while (SSH_AUTH_AGAIN == rc); + + ssh_key_free (pub_key); + pub_key = NULL; + + /* FIXME: handle SSH_AUTH_PARTIAL correctly! */ + if (SSH_AUTH_SUCCESS != rc) { + x2goDebug << "Unable to authenticate with public key."; + + ssh_key_free (priv_key); + priv_key = NULL; + + if (autoRemove) { + QFile::remove (keyName); + } + + return (false); + } - //not implemented before libssh 0.5 - /* int rc = ssh_userauth_privatekey_file ( my_ssh_session,NULL, - keyName.toLatin1(), - pass.toLatin1() );*/ + do { + rc = ssh_userauth_publickey (my_ssh_session, NULL, priv_key); + } while (SSH_AUTH_AGAIN == rc); - int rc=ssh_userauth_pubkey(my_ssh_session, NULL, pubkeyStr, prkey); - privatekey_free(prkey); + ssh_key_free (priv_key); + priv_key = NULL; +#else + ssh_string pubkeyStr=publickey_to_string(pub_key); + publickey_free(pub_key); + int rc=ssh_userauth_pubkey(my_ssh_session, NULL, pubkeyStr, priv_key); + privatekey_free(priv_key); ssh_string_free(pubkeyStr); +#endif #ifdef DEBUG x2goDebug<<"Authenticating with key: "<<rc<<endl; @@ -1283,6 +1371,8 @@ bool SshMasterConnection::userAuthWithKey() if ( autoRemove ) QFile::remove ( keyName ); + + /* FIXME: handle SSH_AUTH_PARTIAL correctly! */ if ( rc != SSH_AUTH_SUCCESS ) { QString err=ssh_get_error ( my_ssh_session ); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git