[X2go-Commits] x2goclient.git - master (branch) updated: 3.99.2.2-54-g6607e91
X2Go dev team
git-admin at x2go.org
Wed Sep 26 17:21:42 CEST 2012
The branch, master has been updated
via 6607e91be09fbbf18972e14fa65fef2a71e54833 (commit)
from 989394c6cc4fb5bb9078de567959fb09e348c6a0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 6607e91be09fbbf18972e14fa65fef2a71e54833
Author: Oleksandr Shneyder <oleksandr.shneyder at obviously-nice.de>
Date: Wed Sep 26 17:21:34 2012 +0200
Add support for SSH proxy (HTTP and SSH) to X2Go Client Gui
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 1 +
onmainwindow.cpp | 107 ++++++-
onmainwindow.h | 18 +-
sessionwidget.cpp | 239 ++++++++++++++-
sessionwidget.h | 19 ++
x2goclient_da.ts | 795 +++++++++++++++++++++++++++-----------------------
x2goclient_de.ts | 795 +++++++++++++++++++++++++++-----------------------
x2goclient_es.ts | 679 ++++++++++++++++++++++++-------------------
x2goclient_fr.ts | 795 +++++++++++++++++++++++++++-----------------------
x2goclient_nb_no.ts | 795 +++++++++++++++++++++++++++-----------------------
x2goclient_ru.ts | 795 +++++++++++++++++++++++++++-----------------------
x2goclient_sv.ts | 797 ++++++++++++++++++++++++++++-----------------------
x2goclient_zh_tw.ts | 795 +++++++++++++++++++++++++++-----------------------
13 files changed, 3846 insertions(+), 2784 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index b681a3f..682eb7c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -59,6 +59,7 @@ x2goclient (3.99.3.0-0~x2go1) UNRELEASED; urgency=low
- add support for SSH proxy in class SshMasterConnection
- SshMasterConnection emit signal to GUI thread if it need a passphrase to decrypt a ssh key.
GUI thread use input dialog to read a passphrase from user
+ - Add support for SSH proxy (HTTP and SSH) to X2Go Client Gui
[ Ricardo Diaz ]
* New upstream version (3.99.3.0):
diff --git a/onmainwindow.cpp b/onmainwindow.cpp
index 5c2449b..1ffd02c 100644
--- a/onmainwindow.cpp
+++ b/onmainwindow.cpp
@@ -2708,7 +2708,11 @@ void ONMainWindow::slotSelectedFromList ( SessionButton* session )
SshMasterConnection* ONMainWindow::startSshConnection ( QString host, QString port, bool acceptUnknownHosts,
QString login,
- QString password, bool autologin, bool krbLogin, bool getSrv)
+ QString password, bool autologin, bool krbLogin, bool getSrv, bool useproxy,
+ SshMasterConnection::ProxyType type,
+ QString proxyserver, quint16 proxyport,
+ QString proxylogin, QString proxypassword, QString proxyKey,
+ bool proxyAutologin)
{
SshMasterConnection* con;
@@ -2745,7 +2749,8 @@ SshMasterConnection* ONMainWindow::startSshConnection ( QString host, QString po
con=new SshMasterConnection (this, host, port.toInt(),acceptUnknownHosts,
- login, password,currentKey, autologin, krbLogin);
+ login, password,currentKey, autologin, krbLogin,useproxy,
+ type, proxyserver, proxyport, proxylogin, proxypassword, proxyKey,proxyAutologin);
if (!getSrv)
connect ( con, SIGNAL ( connectionOk(QString) ), this, SLOT ( slotSshConnectionOk() ) );
else
@@ -3132,6 +3137,16 @@ bool ONMainWindow::startSession ( const QString& sid )
QString host;
bool autologin=false;
bool krblogin=false;
+
+ bool useproxy=false;
+ SshMasterConnection::ProxyType proxyType= SshMasterConnection::PROXYHTTP;
+ QString proxyserver;
+ int proxyport=22;
+ QString proxylogin;
+ QString proxypassword;
+ QString proxyKey;
+ bool proxyAutologin=false;
+
user=getCurrentUname();
runRemoteCommand=true;
shadowSession=false;
@@ -3193,7 +3208,93 @@ bool ONMainWindow::startSession ( const QString& sid )
}
if (sshConnection)
sshConnection->disconnectSession();
- sshConnection=startSshConnection ( host,sshPort,acceptRsa,user,passwd,autologin, krblogin );
+
+
+ X2goSettings* st;
+ if(!brokerMode)
+ st=new X2goSettings( "sessions" );
+ else
+ st=new X2goSettings(config.iniFile, QSettings::IniFormat);
+
+
+
+
+ useproxy=(st->setting()->value (
+ sid+"/usesshproxy",
+ false
+ ).toBool() );
+
+ QString prtype= st->setting()->value (
+ sid+"/sshproxytype",
+ "SSH"
+ ).toString() ;
+
+ if(prtype=="HTTP")
+ {
+ proxyType=SshMasterConnection::PROXYHTTP;
+ }
+ else
+ {
+ proxyType=SshMasterConnection::PROXYSSH;
+ }
+
+ proxylogin=(st->setting()->value (
+ sid+"/sshproxyuser",
+ QString()
+ ).toString() );
+
+ proxyKey=(st->setting()->value (
+ sid+"/sshproxykeyfile",
+ QString()
+ ).toString() );
+
+ proxyserver=(st->setting()->value (
+ sid+"/sshproxyhost",
+ QString()
+ ).toString() );
+
+ proxyport=(st->setting()->value (
+ sid+"/sshproxyport",
+ 22
+ ).toInt() );
+ if(proxyserver.indexOf(":")!=-1)
+ {
+ QStringList parts=proxyserver.split(":");
+ proxyserver=parts[0];
+ proxyport=parts[1].toInt();
+ }
+
+ bool proxySamePass=(st->setting()->value (
+ sid+"/sshproxysamepass",
+ false
+ ).toBool() );
+ bool proxySameUser (st->setting()->value (
+ sid+"/sshproxysameuser",
+ false
+ ).toBool() );
+ proxyAutologin=(st->setting()->value (
+ sid+"/sshproxyautologin",
+ false
+ ).toBool() );
+
+ if(proxySameUser)
+ proxylogin=user;
+ if(proxySamePass)
+ proxypassword=passwd;
+ else
+ {
+ if(useproxy && !proxyAutologin && proxyKey.length()<=0)
+ {
+ bool ok;
+ proxypassword=QInputDialog::getText(0,proxylogin+"@"+proxyserver+":"+QString::number(proxyport),
+ tr("Enter passwort for SSH proxy"),QLineEdit::Password,QString::null, &ok);
+ }
+ }
+
+ delete st;
+
+ sshConnection=startSshConnection ( host,sshPort,acceptRsa,user,passwd,autologin, krblogin, false, useproxy,proxyType,proxyserver,
+ proxyport, proxylogin, proxypassword, proxyKey,proxyAutologin);
return true;
}
diff --git a/onmainwindow.h b/onmainwindow.h
index 6bf9a07..de15136 100644
--- a/onmainwindow.h
+++ b/onmainwindow.h
@@ -43,6 +43,7 @@
#include "LDAPSession.h"
#include <QToolBar>
#include <QSystemTrayIcon>
+#include "sshmasterconnection.h"
#ifdef Q_OS_WIN
@@ -168,8 +169,6 @@ struct ConfigFile
QString iniFile;
QString server;
QString sshport;
- QString proxy;
- QString proxyport;
QString command;
QString key;
bool rootless;
@@ -203,6 +202,15 @@ struct ConfigFile
QString kbdLay;
QString kbdType;
//
+ bool useproxy;
+ SshMasterConnection::ProxyType proxyType;
+ QString proxyserver;
+ int proxyport;
+ QString proxylogin;
+ QString proxypassword;
+ QString proxyKey;
+ bool proxyAutologin;
+
};
@@ -835,7 +843,11 @@ private:
void continueLDAPSession();
SshMasterConnection* startSshConnection ( QString host, QString port,
bool acceptUnknownHosts, QString login,
- QString password, bool autologin, bool krbLogin, bool getSrv=false);
+ QString password, bool autologin, bool krbLogin, bool getSrv=false, bool useproxy=false,
+ SshMasterConnection::ProxyType type=SshMasterConnection::PROXYSSH,
+ QString proxyserver=QString::null, quint16 proxyport=0,
+ QString proxylogin=QString::null, QString proxypassword=QString::null, QString proxyKey=QString::null,
+ bool proxyAutologin=false );
void setProxyWinTitle();
QRect proxyWinGeometry();
void readApplications();
diff --git a/sessionwidget.cpp b/sessionwidget.cpp
index f6f62d8..0d4d90c 100644
--- a/sessionwidget.cpp
+++ b/sessionwidget.cpp
@@ -20,15 +20,18 @@
#include <QComboBox>
#include <QFileDialog>
#include <QDir>
+#include <QTimer>
#include <QInputDialog>
#include <QCheckBox>
#include "onmainwindow.h"
#include "x2gosettings.h"
#include <QMessageBox>
+#include <QButtonGroup>
+#include <QRadioButton>
SessionWidget::SessionWidget ( QString id, ONMainWindow * mw,
QWidget * parent, Qt::WindowFlags f )
- : ConfigWidget ( id,mw,parent,f )
+ : ConfigWidget ( id,mw,parent,f )
{
QVBoxLayout* sessLay=new QVBoxLayout ( this );
#ifdef Q_WS_HILDON
@@ -118,6 +121,50 @@ SessionWidget::SessionWidget ( QString id, ONMainWindow * mw,
cbKrbLogin=new QCheckBox(tr("Kerberos 5 (GSSAPI) authentication"),sgb);
sgbLay->addWidget(cbAutoLogin);
sgbLay->addWidget(cbKrbLogin);
+ cbProxy=new QCheckBox(tr("Use Proxy server for SSH connection"),sgb);
+ proxyBox=new QGroupBox(tr("Proxy server"),sgb);
+ sgbLay->addWidget(cbProxy);
+ sgbLay->addWidget(proxyBox);
+ QGridLayout* proxyLaout=new QGridLayout(proxyBox);
+ QButtonGroup* proxyType=new QButtonGroup(proxyBox);
+ proxyType->setExclusive(true);
+ rbSshProxy=new QRadioButton(tr("SSH"),proxyBox);
+ rbHttpProxy=new QRadioButton(tr("HTTP"),proxyBox);
+ proxyType->addButton(rbSshProxy);
+ proxyType->addButton(rbHttpProxy);
+ proxyHost=new QLineEdit(proxyBox);
+ proxyPort=new QSpinBox(proxyBox);
+ proxyPort->setMinimum ( 1 );
+ proxyPort->setMaximum ( 999999999 );
+
+ cbProxySameUser=new QCheckBox(tr("Same login as on X2Go Server"), proxyBox);
+ proxyLogin=new QLineEdit(proxyBox);
+ cbProxySamePass=new QCheckBox(tr("Same password as on X2Go Server"), proxyBox);
+
+ proxyKeyLabel=new QLabel( tr ( "RSA/DSA key:" ), proxyBox);
+ proxyKey=new QLineEdit(proxyBox);
+ pbOpenProxyKey=new QPushButton (
+ QIcon ( mainWindow->iconsPath ( "/16x16/file-open.png" ) ),
+ QString::null,proxyBox );
+ cbProxyAutologin=new QCheckBox(tr("ssh-agent or default ssh key"),proxyBox);
+
+ proxyLaout->addWidget(new QLabel(tr("Type:"),proxyBox),0,0,1,2);
+ proxyLaout->addWidget(rbSshProxy,1,0,1,2);
+ proxyLaout->addWidget(rbHttpProxy,2,0,1,2);
+ proxyLaout->addWidget(new QLabel(tr("Host:"),proxyBox),3,0);
+ proxyLaout->addWidget(new QLabel(tr("Port:"),proxyBox),4,0);
+ proxyLaout->addWidget(proxyHost,3,1);
+ proxyLaout->addWidget(proxyPort,4,1);
+
+ proxyLaout->addWidget(cbProxySameUser,0,3,1,3);
+ proxyLaout->addWidget(lProxyLogin=new QLabel(tr("Login:"),proxyBox),1,3,1,1);
+ proxyLaout->addWidget(proxyLogin,1,4,1,2);
+ proxyLaout->addWidget(cbProxySamePass,2,3,1,3);
+ proxyLaout->addWidget(proxyKeyLabel,3,3,1,1);
+ proxyLaout->addWidget(proxyKey,3,4,1,1);
+ proxyLaout->addWidget(pbOpenProxyKey,3,5,1,1);
+ proxyLaout->addWidget(cbProxyAutologin,4,3,1,3);
+
#ifndef Q_WS_HILDON
QGroupBox *deskSess=new QGroupBox ( tr ( "&Session type" ),this );
@@ -204,15 +251,87 @@ SessionWidget::SessionWidget ( QString id, ONMainWindow * mw,
#ifdef Q_OS_LINUX
connect (rdpPort, SIGNAL(valueChanged(int)),this, SLOT(slot_emitSettings()));
#endif
+
+ connect ( pbOpenProxyKey,SIGNAL ( clicked() ),this,SLOT ( slot_proxyGetKey()) );
+ connect ( proxyType, SIGNAL ( buttonClicked(int)) ,this,SLOT ( slot_proxyType()));
+ connect (cbProxy, SIGNAL(clicked(bool)), this, SLOT(slot_proxyOptions()));
+ connect (cbProxySameUser, SIGNAL(clicked(bool)), this, SLOT(slot_proxySameLogin()));
+
readConfig();
cbKrbLogin->setChecked(false);
cbKrbLogin->setVisible(false);
}
+
SessionWidget::~SessionWidget()
{
}
+void SessionWidget::slot_proxyGetKey()
+{
+ QString path;
+ QString startDir=ONMainWindow::getHomeDirectory();
+#ifdef Q_OS_WIN
+ if ( ONMainWindow::getPortable() &&
+ ONMainWindow::U3DevicePath().length() >0 )
+ {
+ startDir=ONMainWindow::U3DevicePath() +"/";
+ }
+#endif
+ path = QFileDialog::getOpenFileName (
+ this,
+ tr ( "Open key file" ),
+ startDir,
+ tr ( "All files" ) +" (*)" );
+ if ( path!=QString::null )
+ {
+#ifdef Q_OS_WIN
+ if ( ONMainWindow::getPortable() &&
+ ONMainWindow::U3DevicePath().length() >0 )
+ {
+ if ( path.indexOf ( ONMainWindow::U3DevicePath() ) !=0 )
+ {
+ QMessageBox::critical (
+ 0l,tr ( "Error" ),
+ tr ( "x2goclient is running in "
+ "portable mode. You should "
+ "use a path on your usb device "
+ "to be able to access your data "
+ "whereever you are" ),
+ QMessageBox::Ok,QMessageBox::NoButton );
+ slot_getKey();
+ return;
+ }
+ path.replace ( ONMainWindow::U3DevicePath(),
+ "(U3)" );
+ }
+#endif
+ proxyKey->setText ( path );
+ }
+
+}
+
+void SessionWidget::slot_proxyOptions()
+{
+ proxyBox->setVisible(cbProxy->isChecked());
+}
+
+void SessionWidget::slot_proxySameLogin()
+{
+ lProxyLogin->setDisabled(cbProxySameUser->isChecked());
+ proxyLogin->setDisabled(cbProxySameUser->isChecked());
+}
+
+void SessionWidget::slot_proxyType()
+{
+ bool isSsh=rbSshProxy->isChecked();
+ cbProxyAutologin->setVisible(isSsh);
+ proxyKey->setVisible(isSsh);
+ proxyKeyLabel->setVisible(isSsh);
+ pbOpenProxyKey->setVisible(isSsh);
+}
+
+
#ifdef Q_OS_LINUX
void SessionWidget::slot_rdpDirectClicked()
{
@@ -228,6 +347,10 @@ void SessionWidget::slot_rdpDirectClicked()
openKey->setVisible(!isDirectRDP);
sshPort->setVisible(!isDirectRDP);
rdpPort->setVisible(isDirectRDP);
+
+ cbProxy->setVisible(!isDirectRDP);
+ proxyBox->setVisible(!isDirectRDP);
+
if (isDirectRDP)
{
lPort->setText(tr("RDP port:"));
@@ -404,6 +527,73 @@ void SessionWidget::readConfig()
sessionId+"/rdpport",3389
).toInt() );
#endif
+
+
+ cbProxy->setChecked(st.setting()->value (
+ sessionId+"/usesshproxy",
+ false
+ ).toBool() );
+
+ QString prtype= st.setting()->value (
+ sessionId+"/sshproxytype",
+ "SSH"
+ ).toString() ;
+
+ if(prtype=="HTTP")
+ {
+ rbHttpProxy->setChecked(true);
+ }
+ else
+ {
+ rbSshProxy->setChecked(true);
+ }
+
+ proxyLogin->setText(st.setting()->value (
+ sessionId+"/sshproxyuser",
+ QString()
+ ).toString() );
+
+ proxyKey->setText(st.setting()->value (
+ sessionId+"/sshproxykeyfile",
+ QString()
+ ).toString() );
+
+ proxyHost->setText(st.setting()->value (
+ sessionId+"/sshproxyhost",
+ QString()
+ ).toString() );
+
+ proxyPort->setValue(st.setting()->value (
+ sessionId+"/sshproxyport",
+ 22
+ ).toInt() );
+
+ cbProxySamePass->setChecked(st.setting()->value (
+ sessionId+"/sshproxysamepass",
+ false
+ ).toBool() );
+ cbProxySameUser->setChecked(st.setting()->value (
+ sessionId+"/sshproxysameuser",
+ false
+ ).toBool() );
+ cbProxyAutologin->setChecked(st.setting()->value (
+ sessionId+"/sshproxyautologin",
+ false
+ ).toBool() );
+
+ if(proxyHost->text().indexOf(":")!=-1)
+ {
+ QStringList parts=proxyHost->text().split(":");
+ proxyHost->setText(parts[0]);
+ proxyPort->setValue(parts[1].toInt());
+ }
+
+
+ QTimer::singleShot(1, this,SLOT(slot_proxySameLogin()));
+ QTimer::singleShot(2, this,SLOT(slot_proxyType()));
+ QTimer::singleShot(3, this,SLOT(slot_proxyOptions()));
+
+
QStringList appNames=st.setting()->value (
sessionId+"/applications" ).toStringList();
bool rootless=st.setting()->value (
@@ -427,7 +617,7 @@ void SessionWidget::readConfig()
sessionId+"/directrdp",false ).toBool());
#endif
- for ( int i=0;i<appNames.count();++i )
+ for ( int i=0; i<appNames.count(); ++i )
{
QString app=mainWindow->transAppName ( appNames[i] );
if ( cmdCombo->findText ( app ) ==-1 )
@@ -531,6 +721,27 @@ void SessionWidget::setDefaults()
#ifdef Q_OS_LINUX
rdpPort->setValue (3389);
#endif
+
+
+
+ cbProxy->setChecked(false);
+
+ rbSshProxy->setChecked(true);
+
+
+ proxyKey->setText(QString::null);
+
+
+ proxyPort->setValue(22);
+
+ cbProxySamePass->setChecked(false);
+ cbProxySameUser->setChecked(false);
+ cbProxyAutologin->setChecked(false);
+
+ QTimer::singleShot(1, this,SLOT(slot_proxySameLogin()));
+ QTimer::singleShot(2, this,SLOT(slot_proxyType()));
+ QTimer::singleShot(3, this,SLOT(slot_proxyOptions()));
+
}
@@ -585,7 +796,7 @@ void SessionWidget::saveSettings()
}
QStringList appList;
- for ( int i=-1;i<cmdCombo->count();++i )
+ for ( int i=-1; i<cmdCombo->count(); ++i )
{
QString app;
if ( i==-1 )
@@ -619,6 +830,28 @@ void SessionWidget::saveSettings()
( QVariant ) rdpServer );
st.setting()->setValue ( sessionId+"/xdmcpserver",
( QVariant ) xdmcpServer );
+
+
+ st.setting()->setValue (
+ sessionId+"/usesshproxy",cbProxy->isChecked());
+
+
+ if(rbHttpProxy->isChecked())
+ {
+ st.setting()->setValue ( sessionId+"/sshproxytype","HTTP");
+ }
+ else
+ {
+ st.setting()->setValue ( sessionId+"/sshproxytype","SSH");
+ }
+ st.setting()->setValue (sessionId+"/sshproxyuser",proxyLogin->text());
+ st.setting()->setValue (sessionId+"/sshproxykeyfile",proxyKey->text());
+ st.setting()->setValue (sessionId+"/sshproxyhost",proxyHost->text());
+ st.setting()->setValue (sessionId+"/sshproxyport",proxyPort->value());
+ st.setting()->setValue (sessionId+"/sshproxysamepass",cbProxySamePass->isChecked());
+ st.setting()->setValue (sessionId+"/sshproxysameuser",cbProxySameUser->isChecked());
+ st.setting()->setValue (sessionId+"/sshproxyautologin",cbProxyAutologin->isChecked());
+
st.setting()->sync();
}
diff --git a/sessionwidget.h b/sessionwidget.h
index 2c6750f..b050ffc 100644
--- a/sessionwidget.h
+++ b/sessionwidget.h
@@ -24,6 +24,7 @@ class QComboBox;
class QLabel;
class QCheckBox;
class QGroupBox;
+class QRadioButton;
class SessionWidget : public ConfigWidget
{
Q_OBJECT
@@ -39,6 +40,10 @@ private slots:
void slot_getKey();
void slot_changeCmd ( int var );
void slot_rdpOptions();
+ void slot_proxyOptions();
+ void slot_proxyType();
+ void slot_proxySameLogin();
+ void slot_proxyGetKey();
public slots:
#ifdef Q_OS_LINUX
void slot_rdpDirectClicked();
@@ -73,6 +78,20 @@ private:
QString rdpServer;
QString xdmcpServer;
QPushButton* openKey;
+ QGroupBox* proxyBox;
+ QCheckBox* cbProxy;
+ QRadioButton* rbSshProxy;
+ QRadioButton* rbHttpProxy;
+ QLineEdit* proxyHost;
+ QSpinBox* proxyPort;
+ QLineEdit* proxyLogin;
+ QLabel* lProxyLogin;
+ QCheckBox* cbProxySameUser;
+ QCheckBox* cbProxySamePass;
+ QCheckBox* cbProxyAutologin;
+ QLineEdit* proxyKey;
+ QPushButton* pbOpenProxyKey;
+ QLabel* proxyKeyLabel;
private:
void readConfig();
signals:
diff --git a/x2goclient_da.ts b/x2goclient_da.ts
index 01c24c8..d8187cc 100644
--- a/x2goclient_da.ts
+++ b/x2goclient_da.ts
@@ -725,367 +725,367 @@
<context>
<name>ONMainWindow</name>
<message>
- <location filename="onmainwindow.cpp" line="90"/>
- <location filename="onmainwindow.cpp" line="6030"/>
+ <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="6188"/>
<source>us</source>
<translation>us</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="91"/>
+ <location filename="onmainwindow.cpp" line="93"/>
<source>pc105/us</source>
<translation>pc105/us</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="140"/>
+ <location filename="onmainwindow.cpp" line="141"/>
<source>X2Go client</source>
<translation>X2go klient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="157"/>
- <location filename="onmainwindow.cpp" line="2972"/>
- <location filename="onmainwindow.cpp" line="5167"/>
+ <location filename="onmainwindow.cpp" line="158"/>
+ <location filename="onmainwindow.cpp" line="2999"/>
+ <location filename="onmainwindow.cpp" line="5306"/>
<source>connecting</source>
<translation>forbinder</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="164"/>
+ <location filename="onmainwindow.cpp" line="165"/>
<source>Internet browser</source>
<translation>Internet browser</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="165"/>
+ <location filename="onmainwindow.cpp" line="166"/>
<source>Email client</source>
<translation>Email klient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="166"/>
+ <location filename="onmainwindow.cpp" line="167"/>
<source>OpenOffice.org</source>
<translation>OpenOffice.org</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="167"/>
+ <location filename="onmainwindow.cpp" line="168"/>
<source>Terminal</source>
<translation>Terminal</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="342"/>
+ <location filename="onmainwindow.cpp" line="343"/>
<source>&Settings ...</source>
<translation>&Indstillinger ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="346"/>
+ <location filename="onmainwindow.cpp" line="347"/>
<source>Support ...</source>
<translation>Support ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="353"/>
- <location filename="onmainwindow.cpp" line="7276"/>
+ <location filename="onmainwindow.cpp" line="354"/>
+ <location filename="onmainwindow.cpp" line="7442"/>
<source>About X2GO client</source>
<translation>om X2GO klient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="557"/>
- <location filename="onmainwindow.cpp" line="1038"/>
- <location filename="onmainwindow.cpp" line="10021"/>
+ <location filename="onmainwindow.cpp" line="558"/>
+ <location filename="onmainwindow.cpp" line="1039"/>
+ <location filename="onmainwindow.cpp" line="10183"/>
<source>Share folder...</source>
<translation>Del mappe...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="560"/>
- <location filename="onmainwindow.cpp" line="1039"/>
- <location filename="onmainwindow.cpp" line="5223"/>
- <location filename="onmainwindow.cpp" line="10194"/>
+ <location filename="onmainwindow.cpp" line="561"/>
+ <location filename="onmainwindow.cpp" line="1040"/>
+ <location filename="onmainwindow.cpp" line="5362"/>
+ <location filename="onmainwindow.cpp" line="10356"/>
<source>Suspend</source>
<translation>Suspender</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="563"/>
- <location filename="onmainwindow.cpp" line="1040"/>
- <location filename="onmainwindow.cpp" line="10034"/>
+ <location filename="onmainwindow.cpp" line="564"/>
+ <location filename="onmainwindow.cpp" line="1041"/>
<location filename="onmainwindow.cpp" line="10196"/>
+ <location filename="onmainwindow.cpp" line="10358"/>
<source>Terminate</source>
<translation>Afbryd</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="565"/>
+ <location filename="onmainwindow.cpp" line="566"/>
<source>Reconnect</source>
<translation>Genoptag</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="569"/>
- <location filename="onmainwindow.cpp" line="9447"/>
+ <location filename="onmainwindow.cpp" line="570"/>
+ <location filename="onmainwindow.cpp" line="9626"/>
<source>Detach X2Go window</source>
<translation>Løsriv X2go vindue</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="572"/>
- <location filename="onmainwindow.cpp" line="10497"/>
+ <location filename="onmainwindow.cpp" line="573"/>
+ <location filename="onmainwindow.cpp" line="10659"/>
<source>Minimize toolbar</source>
<translation>Minimer værktøjslinie</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="682"/>
- <location filename="onmainwindow.cpp" line="1987"/>
- <location filename="onmainwindow.cpp" line="7376"/>
+ <location filename="onmainwindow.cpp" line="683"/>
+ <location filename="onmainwindow.cpp" line="1991"/>
+ <location filename="onmainwindow.cpp" line="7542"/>
<source>Session:</source>
<translation>Session:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="734"/>
+ <location filename="onmainwindow.cpp" line="735"/>
<source>&Quit</source>
<translation>&Afslut</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="735"/>
+ <location filename="onmainwindow.cpp" line="736"/>
<source>Ctrl+Q</source>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="736"/>
- <location filename="onmainwindow.cpp" line="1057"/>
+ <location filename="onmainwindow.cpp" line="737"/>
+ <location filename="onmainwindow.cpp" line="1058"/>
<source>Quit</source>
<translation>Afslut</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="739"/>
+ <location filename="onmainwindow.cpp" line="740"/>
<source>&New session ...</source>
<translation>&Ny session ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="740"/>
+ <location filename="onmainwindow.cpp" line="741"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="745"/>
+ <location filename="onmainwindow.cpp" line="746"/>
<source>Session management...</source>
<translation>Sessionshåndtering...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="746"/>
+ <location filename="onmainwindow.cpp" line="747"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="756"/>
+ <location filename="onmainwindow.cpp" line="757"/>
<source>&Create session icon on desktop...</source>
<translation>&Opret sessionsikon på skrivebordet...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="765"/>
+ <location filename="onmainwindow.cpp" line="766"/>
<source>&Set broker password...</source>
<translation>&Sæt broker kodeord...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="776"/>
+ <location filename="onmainwindow.cpp" line="777"/>
<source>&Connectivity test...</source>
<translation>&forbindelsestest...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="783"/>
- <location filename="onmainwindow.cpp" line="804"/>
+ <location filename="onmainwindow.cpp" line="784"/>
+ <location filename="onmainwindow.cpp" line="805"/>
<source>Show toolbar</source>
<translation>Vis værktøjslinie</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="789"/>
+ <location filename="onmainwindow.cpp" line="790"/>
<source>About Qt</source>
<translation>Om Qt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="806"/>
+ <location filename="onmainwindow.cpp" line="807"/>
<source>Ctrl+Q</source>
<comment>exit</comment>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="812"/>
+ <location filename="onmainwindow.cpp" line="813"/>
<source>&Session</source>
<translation>&Session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="813"/>
+ <location filename="onmainwindow.cpp" line="814"/>
<source>&Options</source>
<translation>&Indstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="832"/>
+ <location filename="onmainwindow.cpp" line="833"/>
<source>&Help</source>
<translation>&Hjælp</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="871"/>
- <location filename="onmainwindow.cpp" line="1980"/>
- <location filename="onmainwindow.cpp" line="7369"/>
- <location filename="onmainwindow.cpp" line="9822"/>
+ <location filename="onmainwindow.cpp" line="872"/>
+ <location filename="onmainwindow.cpp" line="1984"/>
+ <location filename="onmainwindow.cpp" line="7535"/>
+ <location filename="onmainwindow.cpp" line="9984"/>
<source>Login:</source>
<translation>Login:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
- <location filename="onmainwindow.cpp" line="920"/>
- <location filename="onmainwindow.cpp" line="1662"/>
- <location filename="onmainwindow.cpp" line="1691"/>
- <location filename="onmainwindow.cpp" line="1699"/>
- <location filename="onmainwindow.cpp" line="1845"/>
- <location filename="onmainwindow.cpp" line="1872"/>
- <location filename="onmainwindow.cpp" line="1875"/>
- <location filename="onmainwindow.cpp" line="2122"/>
- <location filename="onmainwindow.cpp" line="2345"/>
- <location filename="onmainwindow.cpp" line="2359"/>
- <location filename="onmainwindow.cpp" line="2372"/>
- <location filename="onmainwindow.cpp" line="2406"/>
- <location filename="onmainwindow.cpp" line="2451"/>
- <location filename="onmainwindow.cpp" line="3195"/>
- <location filename="onmainwindow.cpp" line="3373"/>
- <location filename="onmainwindow.cpp" line="3382"/>
- <location filename="onmainwindow.cpp" line="3692"/>
- <location filename="onmainwindow.cpp" line="4169"/>
- <location filename="onmainwindow.cpp" line="4244"/>
- <location filename="onmainwindow.cpp" line="4307"/>
- <location filename="onmainwindow.cpp" line="4340"/>
- <location filename="onmainwindow.cpp" line="4384"/>
- <location filename="onmainwindow.cpp" line="4787"/>
- <location filename="onmainwindow.cpp" line="4813"/>
- <location filename="onmainwindow.cpp" line="4962"/>
- <location filename="onmainwindow.cpp" line="5746"/>
- <location filename="onmainwindow.cpp" line="5782"/>
- <location filename="onmainwindow.cpp" line="6507"/>
- <location filename="onmainwindow.cpp" line="6588"/>
- <location filename="onmainwindow.cpp" line="6832"/>
- <location filename="onmainwindow.cpp" line="6960"/>
- <location filename="onmainwindow.cpp" line="7013"/>
- <location filename="onmainwindow.cpp" line="7319"/>
- <location filename="onmainwindow.cpp" line="7321"/>
- <location filename="onmainwindow.cpp" line="7551"/>
- <location filename="onmainwindow.cpp" line="7599"/>
- <location filename="onmainwindow.cpp" line="7627"/>
- <location filename="onmainwindow.cpp" line="8067"/>
- <location filename="onmainwindow.cpp" line="8082"/>
- <location filename="onmainwindow.cpp" line="8136"/>
- <location filename="onmainwindow.cpp" line="8164"/>
- <location filename="onmainwindow.cpp" line="8189"/>
- <location filename="onmainwindow.cpp" line="10413"/>
+ <location filename="onmainwindow.cpp" line="893"/>
+ <location filename="onmainwindow.cpp" line="921"/>
+ <location filename="onmainwindow.cpp" line="1666"/>
+ <location filename="onmainwindow.cpp" line="1695"/>
+ <location filename="onmainwindow.cpp" line="1703"/>
+ <location filename="onmainwindow.cpp" line="1849"/>
+ <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
+ <location filename="onmainwindow.cpp" line="2354"/>
+ <location filename="onmainwindow.cpp" line="2368"/>
+ <location filename="onmainwindow.cpp" line="2381"/>
+ <location filename="onmainwindow.cpp" line="2415"/>
+ <location filename="onmainwindow.cpp" line="2460"/>
+ <location filename="onmainwindow.cpp" line="3318"/>
+ <location filename="onmainwindow.cpp" line="3496"/>
+ <location filename="onmainwindow.cpp" line="3505"/>
+ <location filename="onmainwindow.cpp" line="3821"/>
+ <location filename="onmainwindow.cpp" line="4299"/>
+ <location filename="onmainwindow.cpp" line="4376"/>
+ <location filename="onmainwindow.cpp" line="4440"/>
+ <location filename="onmainwindow.cpp" line="4473"/>
+ <location filename="onmainwindow.cpp" line="4517"/>
+ <location filename="onmainwindow.cpp" line="4920"/>
+ <location filename="onmainwindow.cpp" line="4946"/>
+ <location filename="onmainwindow.cpp" line="5096"/>
+ <location filename="onmainwindow.cpp" line="5898"/>
+ <location filename="onmainwindow.cpp" line="5934"/>
+ <location filename="onmainwindow.cpp" line="6670"/>
+ <location filename="onmainwindow.cpp" line="6754"/>
+ <location filename="onmainwindow.cpp" line="6998"/>
+ <location filename="onmainwindow.cpp" line="7126"/>
+ <location filename="onmainwindow.cpp" line="7179"/>
+ <location filename="onmainwindow.cpp" line="7485"/>
+ <location filename="onmainwindow.cpp" line="7487"/>
+ <location filename="onmainwindow.cpp" line="7718"/>
+ <location filename="onmainwindow.cpp" line="7766"/>
+ <location filename="onmainwindow.cpp" line="7794"/>
+ <location filename="onmainwindow.cpp" line="8234"/>
+ <location filename="onmainwindow.cpp" line="8250"/>
+ <location filename="onmainwindow.cpp" line="8305"/>
+ <location filename="onmainwindow.cpp" line="8333"/>
+ <location filename="onmainwindow.cpp" line="8358"/>
+ <location filename="onmainwindow.cpp" line="10575"/>
<source>Error</source>
<translation>Fejl</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
+ <location filename="onmainwindow.cpp" line="893"/>
<source>Operation failed</source>
<translation>Handling fejlede</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="896"/>
+ <location filename="onmainwindow.cpp" line="897"/>
<source>Password changed</source>
<translation>Kodeord er ændret</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="920"/>
+ <location filename="onmainwindow.cpp" line="921"/>
<source>Wrong password!</source>
<translation>Forkert kodeord!</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="924"/>
- <location filename="onmainwindow.cpp" line="2560"/>
- <location filename="onmainwindow.cpp" line="10667"/>
+ <location filename="onmainwindow.cpp" line="925"/>
+ <location filename="onmainwindow.cpp" line="2569"/>
+ <location filename="onmainwindow.cpp" line="10829"/>
<source>Connecting to broker</source>
<translation>Forbinder til broker</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="969"/>
+ <location filename="onmainwindow.cpp" line="970"/>
<source><b>Authentication</b></source>
<translation><b>Autentifikation</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1009"/>
+ <location filename="onmainwindow.cpp" line="1010"/>
<source>Restore</source>
<translation>Gendan</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1011"/>
- <location filename="onmainwindow.cpp" line="5065"/>
+ <location filename="onmainwindow.cpp" line="1012"/>
+ <location filename="onmainwindow.cpp" line="5201"/>
<source>Not connected</source>
<translation>Ikke forbundet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1013"/>
+ <location filename="onmainwindow.cpp" line="1014"/>
<source>Multimedia</source>
<translation>Multimedie</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1015"/>
+ <location filename="onmainwindow.cpp" line="1016"/>
<source>Development</source>
<translation>Udvikling</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1017"/>
+ <location filename="onmainwindow.cpp" line="1018"/>
<source>Education</source>
<translation>Undervisning</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1019"/>
+ <location filename="onmainwindow.cpp" line="1020"/>
<source>Game</source>
<translation>Spil</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1021"/>
+ <location filename="onmainwindow.cpp" line="1022"/>
<source>Graphics</source>
<translation>Grafik</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1023"/>
+ <location filename="onmainwindow.cpp" line="1024"/>
<source>Network</source>
<translation>Netværk</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1025"/>
+ <location filename="onmainwindow.cpp" line="1026"/>
<source>Office</source>
<translation>Kontor</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1027"/>
+ <location filename="onmainwindow.cpp" line="1028"/>
<source>Settings</source>
<translation>Indstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1029"/>
+ <location filename="onmainwindow.cpp" line="1030"/>
<source>System</source>
<translation>System</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1031"/>
+ <location filename="onmainwindow.cpp" line="1032"/>
<source>Utility</source>
<translation>Tilbehør</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1033"/>
+ <location filename="onmainwindow.cpp" line="1034"/>
<source>Other</source>
<translation>Andet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1068"/>
+ <location filename="onmainwindow.cpp" line="1069"/>
<source>Left mouse button to hide/restore - Right mouse button to display context menu</source>
<translation>Venstre museknap skjuler/gendanner - Højre museknap viser kontekst menu</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1663"/>
- <location filename="onmainwindow.cpp" line="1846"/>
- <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1667"/>
+ <location filename="onmainwindow.cpp" line="1850"/>
+ <location filename="onmainwindow.cpp" line="1880"/>
<source>Please check LDAP settings</source>
<translation>Undersøg LDAP indstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1698"/>
+ <location filename="onmainwindow.cpp" line="1702"/>
<source>no X2Go server found in LDAP </source>
<translation>ingen X2go server fundet i LDAP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2010"/>
+ <location filename="onmainwindow.cpp" line="2014"/>
<source>Create session icon on desktop</source>
<translation>Opret sessionsikon på skrivebord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2011"/>
+ <location filename="onmainwindow.cpp" line="2015"/>
<source>Desktop icons can be configured not to show x2goclient (hidden mode). If you like to use this feature you'll need to configure login by a gpg key or gpg smart card.
Use x2goclient hidden mode?</source>
@@ -1093,331 +1093,341 @@ Use x2goclient hidden mode?</source>
Slå skjult tilstand til?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2022"/>
+ <location filename="onmainwindow.cpp" line="2026"/>
<source>New Session</source>
<translation>Ny Session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2072"/>
+ <location filename="onmainwindow.cpp" line="2081"/>
<source>X2Go Link to session </source>
<translation>X2go Link til session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2122"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
<source>X2Go sessions not found</source>
<translation>X2go sessioner blev ikke fundet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2270"/>
+ <location filename="onmainwindow.cpp" line="2279"/>
<source>Are you sure you want to delete this session?</source>
<translation>Er du sikker på at du vil slette denne session?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2578"/>
- <location filename="onmainwindow.cpp" line="5591"/>
+ <location filename="onmainwindow.cpp" line="2587"/>
+ <location filename="onmainwindow.cpp" line="5733"/>
<source>KDE</source>
<translation>KDE</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2643"/>
+ <location filename="onmainwindow.cpp" line="2652"/>
<source>RDP connection</source>
<translation>RDP forbindelse</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2647"/>
+ <location filename="onmainwindow.cpp" line="2656"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2651"/>
+ <location filename="onmainwindow.cpp" line="2660"/>
<source>Connection to local desktop</source>
<translation>Forbindelse til lokalt skrivebord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2655"/>
+ <location filename="onmainwindow.cpp" line="2664"/>
<source> on </source>
<translation> på </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2861"/>
+ <location filename="onmainwindow.cpp" line="2851"/>
+ <source>Enter passphrase to decrypt a key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="2879"/>
<source>Host key for server changed.
It is now: </source>
<translation>Serverens Host key er ændret.
Den er nu: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2862"/>
+ <location filename="onmainwindow.cpp" line="2880"/>
<source>For security reasons, connection will be stopped</source>
<translation>Forbindelsen afbrydes af sikkerhedsårsager</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2873"/>
+ <location filename="onmainwindow.cpp" line="2893"/>
<source>The host key for this server was not found but an othertype of key exists.An attacker might change the default server key toconfuse your client into thinking the key does not exist</source>
<translation>Serverens host key blev fundet, men en anden type nøgle eksisterer. En angriber kan ændre standardnøglen på serveren for at narre din klient til at tro at nøglen ikke eksisterer</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2895"/>
+ <location filename="onmainwindow.cpp" line="2919"/>
<source>Could not find known host file.If you accept the host key here, the file will be automatically created</source>
<translation>Kunne ikke finde known host fil. Hvis du accepterer serverens host key, vil filen automatisk blive skabt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2900"/>
+ <location filename="onmainwindow.cpp" line="2924"/>
<source>The server is unknown. Do you trust the host key?
Public key hash: </source>
<translation>Serveren er ukendt. Stoler du på denne host key?
Public key hash: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="2912"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2938"/>
<source>Host key verification failed</source>
<translation>Host key bekræftelsen fejlede</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4096"/>
- <location filename="onmainwindow.cpp" line="4116"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4245"/>
<source>Yes</source>
<translation>Ja</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4097"/>
- <location filename="onmainwindow.cpp" line="4117"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4226"/>
+ <location filename="onmainwindow.cpp" line="4246"/>
<source>No</source>
<translation>Nej</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2955"/>
<source>Authentication failed</source>
<translation>Autentifikationen fejlede</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3188"/>
- <location filename="onmainwindow.cpp" line="4237"/>
- <location filename="onmainwindow.cpp" line="4333"/>
- <location filename="onmainwindow.cpp" line="4366"/>
- <location filename="onmainwindow.cpp" line="6500"/>
- <location filename="onmainwindow.cpp" line="6581"/>
- <location filename="onmainwindow.cpp" line="6953"/>
- <location filename="onmainwindow.cpp" line="7006"/>
- <location filename="onmainwindow.cpp" line="8060"/>
+ <location filename="onmainwindow.cpp" line="3290"/>
+ <source>Enter passwort for SSH proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="3311"/>
+ <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4466"/>
+ <location filename="onmainwindow.cpp" line="4499"/>
+ <location filename="onmainwindow.cpp" line="6663"/>
+ <location filename="onmainwindow.cpp" line="6747"/>
+ <location filename="onmainwindow.cpp" line="7119"/>
+ <location filename="onmainwindow.cpp" line="7172"/>
+ <location filename="onmainwindow.cpp" line="8227"/>
<source><b>Connection failed</b>
</source>
<translation><b>Forbindelsen mislykkedes</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3191"/>
- <location filename="onmainwindow.cpp" line="4240"/>
- <location filename="onmainwindow.cpp" line="4336"/>
- <location filename="onmainwindow.cpp" line="5743"/>
- <location filename="onmainwindow.cpp" line="5779"/>
- <location filename="onmainwindow.cpp" line="6503"/>
- <location filename="onmainwindow.cpp" line="6584"/>
- <location filename="onmainwindow.cpp" line="6956"/>
- <location filename="onmainwindow.cpp" line="7009"/>
- <location filename="onmainwindow.cpp" line="8063"/>
+ <location filename="onmainwindow.cpp" line="3314"/>
+ <location filename="onmainwindow.cpp" line="4372"/>
+ <location filename="onmainwindow.cpp" line="4469"/>
+ <location filename="onmainwindow.cpp" line="5895"/>
+ <location filename="onmainwindow.cpp" line="5931"/>
+ <location filename="onmainwindow.cpp" line="6666"/>
+ <location filename="onmainwindow.cpp" line="6750"/>
+ <location filename="onmainwindow.cpp" line="7122"/>
+ <location filename="onmainwindow.cpp" line="7175"/>
+ <location filename="onmainwindow.cpp" line="8230"/>
<source><b>Wrong password!</b><br><br></source>
<translation><b>Forkert Kodeord!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3307"/>
+ <location filename="onmainwindow.cpp" line="3430"/>
<source>unknown</source>
<translation>ukendt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3374"/>
+ <location filename="onmainwindow.cpp" line="3497"/>
<source>No server availabel</source>
<translation>Ingen server tilgængelig</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3383"/>
- <location filename="onmainwindow.cpp" line="3693"/>
- <location filename="onmainwindow.cpp" line="4170"/>
- <location filename="onmainwindow.cpp" line="4308"/>
+ <location filename="onmainwindow.cpp" line="3506"/>
+ <location filename="onmainwindow.cpp" line="3822"/>
+ <location filename="onmainwindow.cpp" line="4300"/>
+ <location filename="onmainwindow.cpp" line="4441"/>
<source>Server not availabel</source>
<translation>Server er ikke tilgængelig</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3923"/>
- <location filename="onmainwindow.cpp" line="10185"/>
+ <location filename="onmainwindow.cpp" line="4052"/>
+ <location filename="onmainwindow.cpp" line="10347"/>
<source>Select session:</source>
<translation>Vælg session:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3939"/>
- <location filename="onmainwindow.cpp" line="4033"/>
- <location filename="onmainwindow.cpp" line="5187"/>
+ <location filename="onmainwindow.cpp" line="4068"/>
+ <location filename="onmainwindow.cpp" line="4162"/>
+ <location filename="onmainwindow.cpp" line="5326"/>
<source>running</source>
<translation>kører</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3941"/>
- <location filename="onmainwindow.cpp" line="4256"/>
+ <location filename="onmainwindow.cpp" line="4070"/>
+ <location filename="onmainwindow.cpp" line="4388"/>
<source>suspended</source>
<translation>suspenderet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3947"/>
+ <location filename="onmainwindow.cpp" line="4076"/>
<source>Desktop</source>
<translation>Skrivebord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3949"/>
+ <location filename="onmainwindow.cpp" line="4078"/>
<source>single application</source>
<translation>enkelt applikation</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3951"/>
+ <location filename="onmainwindow.cpp" line="4080"/>
<source>shadow session</source>
<translation>skygge session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3984"/>
+ <location filename="onmainwindow.cpp" line="4113"/>
<source>Information</source>
<translation>Information</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3985"/>
+ <location filename="onmainwindow.cpp" line="4114"/>
<source>No accessible desktop found</source>
<translation>Intet tilgængeligt skrivebord fundet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3998"/>
- <location filename="onmainwindow.cpp" line="10598"/>
+ <location filename="onmainwindow.cpp" line="4127"/>
+ <location filename="onmainwindow.cpp" line="10760"/>
<source>Filter</source>
<translation>Filtrer</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4005"/>
+ <location filename="onmainwindow.cpp" line="4134"/>
<source>Select desktop:</source>
<translation>Vælg skrivebord:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4083"/>
- <location filename="onmainwindow.cpp" line="4103"/>
- <location filename="onmainwindow.cpp" line="4991"/>
- <location filename="onmainwindow.cpp" line="5399"/>
+ <location filename="onmainwindow.cpp" line="4212"/>
+ <location filename="onmainwindow.cpp" line="4232"/>
+ <location filename="onmainwindow.cpp" line="5126"/>
+ <location filename="onmainwindow.cpp" line="5538"/>
<source>Warning</source>
<translation>Advarsel</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4084"/>
- <location filename="onmainwindow.cpp" line="4104"/>
+ <location filename="onmainwindow.cpp" line="4213"/>
+ <location filename="onmainwindow.cpp" line="4233"/>
<source>Your current color depth is different to the color depth of your x2go-session. 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 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 Display til </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4092"/>
+ <location filename="onmainwindow.cpp" line="4221"/>
<source>24 or 32</source>
<translation>24 eller 32</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4093"/>
- <location filename="onmainwindow.cpp" line="4113"/>
+ <location filename="onmainwindow.cpp" line="4222"/>
+ <location filename="onmainwindow.cpp" line="4242"/>
<source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source>
<translation> bit og genstart din X server før du genoptager din x2go session.<br>Vil du fortsætte alligevel?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4195"/>
+ <location filename="onmainwindow.cpp" line="4326"/>
<source>suspending</source>
<translation>suspenderer</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4223"/>
+ <location filename="onmainwindow.cpp" line="4355"/>
<source>terminating</source>
<translation>afslutter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4502"/>
<source><b>Wrong Password!</b><br><br></source>
<translation><b>Forkert Kodeord!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4785"/>
- <location filename="onmainwindow.cpp" line="6830"/>
+ <location filename="onmainwindow.cpp" line="4918"/>
+ <location filename="onmainwindow.cpp" line="6996"/>
<source>Unable to create folder:</source>
<translation>Kunne ikke oprette mappe:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4811"/>
+ <location filename="onmainwindow.cpp" line="4944"/>
<source>Unable to write file:</source>
<translation>Kunne ikke skrive fil:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4934"/>
- <location filename="onmainwindow.cpp" line="9422"/>
+ <location filename="onmainwindow.cpp" line="5068"/>
+ <location filename="onmainwindow.cpp" line="9601"/>
<source>Attach X2Go window</source>
<translation>Tilkobl X2Go vindue</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4960"/>
- <location filename="onmainwindow.cpp" line="8134"/>
+ <location filename="onmainwindow.cpp" line="5094"/>
+ <location filename="onmainwindow.cpp" line="8303"/>
<source>Unable to create SSL tunnel:
</source>
<translation>Kunne ikke oprette SSL tunnel:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4989"/>
+ <location filename="onmainwindow.cpp" line="5124"/>
<source>Unable to create SSL Tunnel:
</source>
<translation>Kunne ikke oprette SSL Tunnel:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5152"/>
+ <location filename="onmainwindow.cpp" line="5291"/>
<source>Finished</source>
<translation>Afsluttet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5176"/>
+ <location filename="onmainwindow.cpp" line="5315"/>
<source>starting</source>
<translation>starter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5180"/>
+ <location filename="onmainwindow.cpp" line="5319"/>
<source>resuming</source>
<translation>fortsætter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5243"/>
- <location filename="onmainwindow.cpp" line="5515"/>
- <location filename="onmainwindow.cpp" line="5533"/>
+ <location filename="onmainwindow.cpp" line="5382"/>
+ <location filename="onmainwindow.cpp" line="5655"/>
+ <location filename="onmainwindow.cpp" line="5674"/>
<source>Connection timeout, aborting</source>
<translation>Forbindelsestimeout, afslutter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5244"/>
+ <location filename="onmainwindow.cpp" line="5383"/>
<source>aborting</source>
<translation>afslutter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5400"/>
+ <location filename="onmainwindow.cpp" line="5539"/>
<source>Are you sure you want to terminate this session?
Unsaved documents will be lost</source>
<translation>Er du sikker på du vil afslutte denne session?
Ugemte dokumenter vil gå tabt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5483"/>
+ <location filename="onmainwindow.cpp" line="5623"/>
<source>Session</source>
<translation>Session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5485"/>
- <location filename="onmainwindow.cpp" line="10266"/>
- <location filename="onmainwindow.cpp" line="10288"/>
+ <location filename="onmainwindow.cpp" line="5625"/>
+ <location filename="onmainwindow.cpp" line="10428"/>
+ <location filename="onmainwindow.cpp" line="10450"/>
<source>Display</source>
<translation>Display</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5487"/>
- <location filename="onmainwindow.cpp" line="10277"/>
+ <location filename="onmainwindow.cpp" line="5627"/>
+ <location filename="onmainwindow.cpp" line="10439"/>
<source>Creation time</source>
<translation>Skabelsestid</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5740"/>
- <location filename="onmainwindow.cpp" line="5776"/>
+ <location filename="onmainwindow.cpp" line="5892"/>
+ <location filename="onmainwindow.cpp" line="5928"/>
<source><b>Connection failed</b>
:
</source>
@@ -1426,296 +1436,296 @@ Ugemte dokumenter vil gå tabt</translation>
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6137"/>
+ <location filename="onmainwindow.cpp" line="6300"/>
<source> (can't open file)</source>
<translation> (kan ikke åbne fil)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6148"/>
- <location filename="onmainwindow.cpp" line="6158"/>
- <location filename="onmainwindow.cpp" line="6168"/>
+ <location filename="onmainwindow.cpp" line="6311"/>
+ <location filename="onmainwindow.cpp" line="6321"/>
+ <location filename="onmainwindow.cpp" line="6331"/>
<source> (file not exists)</source>
<translation> (fil eksisterer ikke)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6192"/>
+ <location filename="onmainwindow.cpp" line="6355"/>
<source> (directory not exists)</source>
<translation> (mappe eksisterer ikke)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6220"/>
+ <location filename="onmainwindow.cpp" line="6383"/>
<source>wrong value for argument"--link"</source>
<translation>Ugyldig værdi for "--link" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6238"/>
+ <location filename="onmainwindow.cpp" line="6401"/>
<source>wrong value for argument"--sound"</source>
<translation>Ugyldig værdi for "--sound" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6255"/>
- <location filename="onmainwindow.cpp" line="6266"/>
+ <location filename="onmainwindow.cpp" line="6418"/>
+ <location filename="onmainwindow.cpp" line="6429"/>
<source>wrong value for argument"--geometry"</source>
<translation>Ugyldig værdi for "--geometry" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6284"/>
+ <location filename="onmainwindow.cpp" line="6447"/>
<source>wrong value for argument"--set-kbd"</source>
<translation>Ugyldig værdi for "--set-kbd" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6301"/>
+ <location filename="onmainwindow.cpp" line="6464"/>
<source>wrong value for argument"--ldap"</source>
<translation>Ugyldig værdi for "--ldap" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6323"/>
+ <location filename="onmainwindow.cpp" line="6486"/>
<source>wrong value for argument"--ldap1"</source>
<translation>Ugyldig værdi for "--ldap1" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6342"/>
+ <location filename="onmainwindow.cpp" line="6505"/>
<source>wrong value for argument"--ldap2"</source>
<translation>Ugyldig værdi for "--ldap2" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6396"/>
+ <location filename="onmainwindow.cpp" line="6559"/>
<source>wrong value for argument"--pack"</source>
<translation>Ugyldig værdi for "--pack" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6404"/>
- <location filename="onmainwindow.cpp" line="6407"/>
+ <location filename="onmainwindow.cpp" line="6567"/>
+ <location filename="onmainwindow.cpp" line="6570"/>
<source>wrong parameter: </source>
<translation>Forkert parameter: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6458"/>
- <location filename="onmainwindow.cpp" line="6484"/>
+ <location filename="onmainwindow.cpp" line="6621"/>
+ <location filename="onmainwindow.cpp" line="6647"/>
<source>Options</source>
<translation>Indstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6463"/>
+ <location filename="onmainwindow.cpp" line="6626"/>
<source>Available pack methodes:</source>
<translation>Tilgængelige pakkemetoder:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7251"/>
+ <location filename="onmainwindow.cpp" line="7417"/>
<source>Support</source>
<translation>Support</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7256"/>
+ <location filename="onmainwindow.cpp" line="7422"/>
<source></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></source>
<translation></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7260"/>
+ <location filename="onmainwindow.cpp" line="7426"/>
<source><br>x2goplugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></source>
<translation><br>x2goplugin mode blev sponsoreret af <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7264"/>
+ <location filename="onmainwindow.cpp" line="7430"/>
<source><br>Client for use with 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 fullscreen loginscreen (replacement for loginmanager like xdm). Please visit x2go.org for further information.</source>
<translation><br>Klient til brug med X2go's netværksbaserede computermiljø. Denne klient vil kunne forbinde til X2go servere og starte, stoppe, fortsætte og afslutte (igangværende) skrivebordssessioner. X2Go-klienten lagrer forskellige server forbindelser og kan automatisk lave forespørgsler til LDAP tjenester om autentificeringsdata. Den kan desuden bruges som fuldskærmslogin (erstatning for loginmanagers som xdm) Besøg venligst x2go.org for yderligere information.</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7277"/>
+ <location filename="onmainwindow.cpp" line="7443"/>
<source><b>X2Go client V. </source>
<translation><b>X2Go client V. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7322"/>
+ <location filename="onmainwindow.cpp" line="7488"/>
<source>Please check LDAP Settings</source>
<translation>Undersøg venligst dine LDAP indstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7552"/>
+ <location filename="onmainwindow.cpp" line="7719"/>
<source>No valid card found</source>
<translation>Intet gyldigt kort fundet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7600"/>
+ <location filename="onmainwindow.cpp" line="7767"/>
<source>This card is unknown by X2Go system</source>
<translation>X2Go systemet kan ikke genkende dette kort</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7628"/>
+ <location filename="onmainwindow.cpp" line="7795"/>
<source>Unable to create file: </source>
<translation>Ikke i stand til at skabe fil: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7896"/>
+ <location filename="onmainwindow.cpp" line="8063"/>
<source>Can't connect to X server
Please check your settings</source>
<translation>Kan ikke forbinde til x server
Undersøg venligst dine indstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7897"/>
+ <location filename="onmainwindow.cpp" line="8064"/>
<source>Can't start X server
Please check your settings</source>
<translation>Kan ikke starte x server
Undersøg venligst dine indstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7911"/>
- <location filename="onmainwindow.cpp" line="8557"/>
- <location filename="onmainwindow.cpp" line="8585"/>
+ <location filename="onmainwindow.cpp" line="8078"/>
+ <location filename="onmainwindow.cpp" line="8726"/>
+ <location filename="onmainwindow.cpp" line="8754"/>
<source>Can't start X Server
Please check your installation</source>
<translation>Kan ikke starte x server
Undersøg venligst din installation</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8083"/>
+ <location filename="onmainwindow.cpp" line="8251"/>
<source>Unable to execute: </source>
<translation>Kunne ikke eksekvere: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8099"/>
+ <location filename="onmainwindow.cpp" line="8268"/>
<source>Remote server does not support file system export through SSH Tunnel
Please update to a newer x2goserver package</source>
<translation>Fjernserveren understøtter ikke filsystemseksportering igennem en SSH Tunnel
Opdater venligst til en nyere version af x2goserver pakken</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8163"/>
+ <location filename="onmainwindow.cpp" line="8332"/>
<source>Unable to read :
</source>
<translation>Kunne ikke læse :</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8188"/>
+ <location filename="onmainwindow.cpp" line="8357"/>
<source>Unable to write :
</source>
<translation>Kunne ikke skrive :</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8276"/>
+ <location filename="onmainwindow.cpp" line="8445"/>
<source>WINDOWS-1252</source>
<translation>WINDOWS-1252</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8288"/>
+ <location filename="onmainwindow.cpp" line="8457"/>
<source>ISO8859-1</source>
<translation>ISO8859-1</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9511"/>
+ <location filename="onmainwindow.cpp" line="9689"/>
<source>X2Go Session</source>
<translation>X2Go Session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9693"/>
+ <location filename="onmainwindow.cpp" line="9871"/>
<source>wrong value for argument"speed"</source>
<translation>Ugyldig værdi for "speed" argumentet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9823"/>
+ <location filename="onmainwindow.cpp" line="9985"/>
<source>Password:</source>
<translation>Kodeord:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9824"/>
+ <location filename="onmainwindow.cpp" line="9986"/>
<source>Keyboard layout:</source>
<translation>Tastatur layout:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9865"/>
+ <location filename="onmainwindow.cpp" line="10027"/>
<source>Ok</source>
<translation>Ok</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9867"/>
- <location filename="onmainwindow.cpp" line="10189"/>
- <location filename="onmainwindow.cpp" line="10191"/>
+ <location filename="onmainwindow.cpp" line="10029"/>
+ <location filename="onmainwindow.cpp" line="10351"/>
+ <location filename="onmainwindow.cpp" line="10353"/>
<source>Cancel</source>
<translation>Annuller</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10004"/>
+ <location filename="onmainwindow.cpp" line="10166"/>
<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>Display:<br>Skabelsestid:<br>Status:</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10014"/>
+ <location filename="onmainwindow.cpp" line="10176"/>
<source>Applications...</source>
<translation>Applikationer...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10027"/>
+ <location filename="onmainwindow.cpp" line="10189"/>
<source>Abort</source>
<translation>Afbryd</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10039"/>
+ <location filename="onmainwindow.cpp" line="10201"/>
<source>Show details</source>
<translation>Vis detaljer</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10187"/>
+ <location filename="onmainwindow.cpp" line="10349"/>
<source>Resume</source>
<translation>Fortsæt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10199"/>
+ <location filename="onmainwindow.cpp" line="10361"/>
<source>New</source>
<translation>Ny</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10202"/>
+ <location filename="onmainwindow.cpp" line="10364"/>
<source>Full access</source>
<translation>Fuld adgang</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10205"/>
+ <location filename="onmainwindow.cpp" line="10367"/>
<source>View only</source>
<translation>Kun synlig</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10268"/>
+ <location filename="onmainwindow.cpp" line="10430"/>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10270"/>
+ <location filename="onmainwindow.cpp" line="10432"/>
<source>Command</source>
<translation>Kommando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10272"/>
+ <location filename="onmainwindow.cpp" line="10434"/>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10274"/>
+ <location filename="onmainwindow.cpp" line="10436"/>
<source>Server</source>
<translation>Server</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10279"/>
+ <location filename="onmainwindow.cpp" line="10441"/>
<source>Client IP</source>
<translation>Klient IP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10281"/>
+ <location filename="onmainwindow.cpp" line="10443"/>
<source>Session ID</source>
<translation>Sessions ID</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10285"/>
+ <location filename="onmainwindow.cpp" line="10447"/>
<source>User</source>
<translation>Bruger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10316"/>
+ <location filename="onmainwindow.cpp" line="10478"/>
<source>Only my desktops</source>
<translation>Kun mine skriveborde</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10414"/>
+ <location filename="onmainwindow.cpp" line="10576"/>
<source>sshd not started, you'll need sshd for printing and file sharing
you can install sshd with
<b>sudo apt-get install openssh-server</b></source>
@@ -1724,12 +1734,12 @@ du kan installere sshd med
<b>sudo apt-get install openssh-server</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10485"/>
+ <location filename="onmainwindow.cpp" line="10647"/>
<source>Restore toolbar</source>
<translation>Gendan værktøjslinie</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10530"/>
+ <location filename="onmainwindow.cpp" line="10692"/>
<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>
@@ -2107,170 +2117,226 @@ f.eks:
<context>
<name>SessionWidget</name>
<message>
- <location filename="sessionwidget.cpp" line="52"/>
+ <location filename="sessionwidget.cpp" line="55"/>
<source>Session name:</source>
<translation>Sessionsnavn:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="57"/>
+ <location filename="sessionwidget.cpp" line="60"/>
<source><< change icon</source>
<translation><< skift ikon</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="60"/>
+ <location filename="sessionwidget.cpp" line="63"/>
<source>&Server</source>
<translation>&Server</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="93"/>
+ <location filename="sessionwidget.cpp" line="96"/>
+ <location filename="sessionwidget.cpp" line="154"/>
<source>Host:</source>
<translation>Host:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="94"/>
+ <location filename="sessionwidget.cpp" line="97"/>
+ <location filename="sessionwidget.cpp" line="160"/>
<source>Login:</source>
<translation>Login:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="95"/>
- <location filename="sessionwidget.cpp" line="237"/>
+ <location filename="sessionwidget.cpp" line="98"/>
+ <location filename="sessionwidget.cpp" line="360"/>
<source>SSH port:</source>
<translation>SSH port:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="110"/>
+ <location filename="sessionwidget.cpp" line="113"/>
<source>Use RSA/DSA key for ssh connection:</source>
<translation>Brug RSA/DSA nøgle til ssh forbindelse:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="117"/>
+ <location filename="sessionwidget.cpp" line="120"/>
<source>Try auto login (ssh-agent or default ssh key)</source>
<translation>Prøv automatisk login (ssh-agent eller standard ssh nøgle)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="118"/>
+ <location filename="sessionwidget.cpp" line="121"/>
<source>Kerberos 5 (GSSAPI) authentication</source>
<translation>Kerberos 5 (GSSAPI) autentificering</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="123"/>
+ <location filename="sessionwidget.cpp" line="124"/>
+ <source>Use Proxy server for SSH connection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="125"/>
+ <source>Proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="131"/>
+ <source>SSH</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="132"/>
+ <source>HTTP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="140"/>
+ <source>Same login as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="142"/>
+ <source>Same password as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="144"/>
+ <source>RSA/DSA key:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="149"/>
+ <source>ssh-agent or default ssh key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="151"/>
+ <source>Type:</source>
+ <translation type="unfinished">Type:</translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="155"/>
+ <source>Port:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="170"/>
<source>&Session type</source>
<translation>&Sessionstype</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="128"/>
+ <location filename="sessionwidget.cpp" line="175"/>
<source>Session type:</source>
<translation>Sessionstype:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="138"/>
- <location filename="sessionwidget.cpp" line="361"/>
+ <location filename="sessionwidget.cpp" line="185"/>
+ <location filename="sessionwidget.cpp" line="484"/>
<source>Connect to Windows terminal server</source>
<translation>Forbind til Windows terminalserver</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="139"/>
+ <location filename="sessionwidget.cpp" line="186"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="140"/>
+ <location filename="sessionwidget.cpp" line="187"/>
<source>Connect to local desktop</source>
<translation>Forbindelse til lokalt skrivebord</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="141"/>
+ <location filename="sessionwidget.cpp" line="188"/>
<source>Custom desktop</source>
<translation>Specialiseret skrivebord</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="142"/>
+ <location filename="sessionwidget.cpp" line="189"/>
<source>Single application</source>
<translation>Enkelt applikation</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="143"/>
+ <location filename="sessionwidget.cpp" line="190"/>
<source>Published applications</source>
<translation>Udgivne applikationer</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="145"/>
- <location filename="sessionwidget.cpp" line="305"/>
+ <location filename="sessionwidget.cpp" line="192"/>
+ <location filename="sessionwidget.cpp" line="428"/>
<source>Command:</source>
<translation>Kommando:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="146"/>
+ <location filename="sessionwidget.cpp" line="193"/>
<source>Advanced options...</source>
<translation>Avancerede indstillinger...</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="158"/>
- <location filename="sessionwidget.cpp" line="523"/>
- <location filename="sessionwidget.cpp" line="597"/>
+ <location filename="sessionwidget.cpp" line="205"/>
+ <location filename="sessionwidget.cpp" line="713"/>
+ <location filename="sessionwidget.cpp" line="808"/>
<source>Path to executable</source>
<translation>Sti til Program</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="168"/>
+ <location filename="sessionwidget.cpp" line="215"/>
<source>Direct RDP Connection</source>
<translation>Direkte RDP Forbindelse</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="233"/>
+ <location filename="sessionwidget.cpp" line="356"/>
<source>RDP port:</source>
<translation>RDP port:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="249"/>
+ <location filename="sessionwidget.cpp" line="372"/>
<source>Open picture</source>
<translation>Ã
ben billede</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="251"/>
+ <location filename="sessionwidget.cpp" line="374"/>
<source>Pictures</source>
<translation>Billeder</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="272"/>
+ <location filename="sessionwidget.cpp" line="283"/>
+ <location filename="sessionwidget.cpp" line="395"/>
<source>Open key file</source>
<translation>Ã
ben nøglefil</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="274"/>
+ <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="397"/>
<source>All files</source>
<translation>Alle filer</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="284"/>
+ <location filename="sessionwidget.cpp" line="295"/>
+ <location filename="sessionwidget.cpp" line="407"/>
<source>Error</source>
<translation>Fejl</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="296"/>
+ <location filename="sessionwidget.cpp" line="408"/>
<source>x2goclient is running in portable mode. You should use a path on your usb device to be able to access your data whereever you are</source>
<translation>x2go klienten kører i portable mode. 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="sessionwidget.cpp" line="332"/>
- <location filename="sessionwidget.cpp" line="478"/>
+ <location filename="sessionwidget.cpp" line="455"/>
+ <location filename="sessionwidget.cpp" line="668"/>
<source>Server:</source>
<translation>Server:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="341"/>
- <location filename="sessionwidget.cpp" line="490"/>
+ <location filename="sessionwidget.cpp" line="464"/>
+ <location filename="sessionwidget.cpp" line="680"/>
<source>XDMCP server:</source>
<translation>XDMCP server:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="362"/>
+ <location filename="sessionwidget.cpp" line="485"/>
<source>rdesktop command line options:</source>
<translation>rdesktop kommandolinie parametre:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="375"/>
- <location filename="sessionwidget.cpp" line="502"/>
+ <location filename="sessionwidget.cpp" line="498"/>
+ <location filename="sessionwidget.cpp" line="692"/>
<source>New session</source>
<translation>Ny session</translation>
</message>
@@ -2418,17 +2484,17 @@ lydsystemets forbindelse igennem firewalls</translation>
<translation>Kommandolinje:</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="642"/>
+ <location filename="settingswidget.cpp" line="645"/>
<source>us</source>
<translation>us</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="643"/>
+ <location filename="settingswidget.cpp" line="646"/>
<source>pc105/us</source>
<translation>pc105/us</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="757"/>
+ <location filename="settingswidget.cpp" line="760"/>
<source>password</source>
<translation>kodeord</translation>
</message>
@@ -2517,82 +2583,103 @@ lydsystemets forbindelse igennem firewalls</translation>
<context>
<name>SshMasterConnection</name>
<message>
- <location filename="sshmasterconnection.cpp" line="133"/>
+ <location filename="sshmasterconnection.cpp" line="170"/>
+ <source>SSH proxy connection error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="175"/>
+ <location filename="sshmasterconnection.cpp" line="181"/>
+ <source>SSH proxy connection error: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="197"/>
+ <source>Failed to create SSH proxy tunnel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="265"/>
<source>Can not initialize libssh</source>
<translation>Kunne ikke starte libssh</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="159"/>
+ <location filename="sshmasterconnection.cpp" line="291"/>
<source>Can not create ssh session</source>
<translation>Kunne ikke skabe ssh session</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="177"/>
+ <location filename="sshmasterconnection.cpp" line="319"/>
+ <source>Can not connect to proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="340"/>
<source>Can not connect to </source>
<translation>Kunne ikke forbinde til</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="218"/>
+ <location filename="sshmasterconnection.cpp" line="394"/>
<source>Authentication failed</source>
<translation>Autentifikation fejlede</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="244"/>
+ <location filename="sshmasterconnection.cpp" line="420"/>
<source>channel_forward_listen failed</source>
<translation>channel_forward_listen fejlede</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="560"/>
+ <location filename="sshmasterconnection.cpp" line="830"/>
<source>Can not open file </source>
<translation>Kan ikke åbne fil</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="572"/>
+ <location filename="sshmasterconnection.cpp" line="842"/>
<source>Can not create remote file </source>
<translation>Kan ikke skabe fjern fil</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="585"/>
+ <location filename="sshmasterconnection.cpp" line="855"/>
<source>Can not write to remote file </source>
<translation>Kan ikke skrive i fjern fil</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="642"/>
+ <location filename="sshmasterconnection.cpp" line="912"/>
<source>can not connect to </source>
<translation>kan ikke forbinde til</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="751"/>
+ <location filename="sshmasterconnection.cpp" line="1029"/>
<source>channel_open_forward failed</source>
<translation>channel_open_forward fejlede</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="770"/>
+ <location filename="sshmasterconnection.cpp" line="1048"/>
<source>channel_open_session failed</source>
<translation>channel_open_sesion fejlede</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="777"/>
+ <location filename="sshmasterconnection.cpp" line="1055"/>
<source>channel_request_exec failed</source>
<translation>channel_request_exec fejlede</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="842"/>
+ <location filename="sshmasterconnection.cpp" line="1120"/>
<source>error writing to socket</source>
<translation>Fejl ved skriven til socket</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="860"/>
+ <location filename="sshmasterconnection.cpp" line="1138"/>
<source>error reading channel</source>
<translation>fejl ved læsning af channel</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="890"/>
+ <location filename="sshmasterconnection.cpp" line="1168"/>
<source>channel_write failed</source>
<translation>channel_write fejlede</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="902"/>
+ <location filename="sshmasterconnection.cpp" line="1180"/>
<source>error reading tcp socket</source>
<translation>fejl i læsning af tcp socket</translation>
</message>
@@ -2600,12 +2687,12 @@ lydsystemets forbindelse igennem firewalls</translation>
<context>
<name>SshProcess</name>
<message>
- <location filename="sshprocess.cpp" line="97"/>
+ <location filename="sshprocess.cpp" line="112"/>
<source>Error creating socket</source>
<translation>Fejl i skabelse af socket</translation>
</message>
<message>
- <location filename="sshprocess.cpp" line="115"/>
+ <location filename="sshprocess.cpp" line="130"/>
<source>Error binding </source>
<translation>Fejl i binding</translation>
</message>
diff --git a/x2goclient_de.ts b/x2goclient_de.ts
index ed751fd..1f9ecb0 100644
--- a/x2goclient_de.ts
+++ b/x2goclient_de.ts
@@ -1097,41 +1097,41 @@ sound system connections through firewalls</source>
<context>
<name>ONMainWindow</name>
<message>
- <location filename="onmainwindow.cpp" line="90"/>
- <location filename="onmainwindow.cpp" line="6030"/>
+ <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="6188"/>
<source>us</source>
<translation>de</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="91"/>
+ <location filename="onmainwindow.cpp" line="93"/>
<source>pc105/us</source>
<translation>pc105/de</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="346"/>
+ <location filename="onmainwindow.cpp" line="347"/>
<source>Support ...</source>
<translation>Support ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="682"/>
- <location filename="onmainwindow.cpp" line="1987"/>
- <location filename="onmainwindow.cpp" line="7376"/>
+ <location filename="onmainwindow.cpp" line="683"/>
+ <location filename="onmainwindow.cpp" line="1991"/>
+ <location filename="onmainwindow.cpp" line="7542"/>
<source>Session:</source>
<translation>Sitzung:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="734"/>
+ <location filename="onmainwindow.cpp" line="735"/>
<source>&Quit</source>
<translation>&Beenden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="735"/>
+ <location filename="onmainwindow.cpp" line="736"/>
<source>Ctrl+Q</source>
<translation>Strg+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="736"/>
- <location filename="onmainwindow.cpp" line="1057"/>
+ <location filename="onmainwindow.cpp" line="737"/>
+ <location filename="onmainwindow.cpp" line="1058"/>
<source>Quit</source>
<translation>Beenden</translation>
</message>
@@ -1140,7 +1140,7 @@ sound system connections through firewalls</source>
<translation type="obsolete">&Neue Sitzung ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="740"/>
+ <location filename="onmainwindow.cpp" line="741"/>
<source>Ctrl+N</source>
<translation>Strg+N</translation>
</message>
@@ -1149,7 +1149,7 @@ sound system connections through firewalls</source>
<translation type="obsolete">Sitzungsverwaltung...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="746"/>
+ <location filename="onmainwindow.cpp" line="747"/>
<source>Ctrl+E</source>
<translation>Strg+E</translation>
</message>
@@ -1158,7 +1158,7 @@ sound system connections through firewalls</source>
<translation type="obsolete">LDAP &Konfiguration ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10485"/>
+ <location filename="onmainwindow.cpp" line="10647"/>
<source>Restore toolbar</source>
<translation>Wergzeugleiste wieder anzeigen</translation>
</message>
@@ -1167,60 +1167,60 @@ sound system connections through firewalls</source>
<translation type="obsolete">Ãber X2GoClient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="789"/>
+ <location filename="onmainwindow.cpp" line="790"/>
<source>About Qt</source>
<translation>Ãber QT</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5483"/>
+ <location filename="onmainwindow.cpp" line="5623"/>
<source>Session</source>
<translation>Sitzung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="806"/>
+ <location filename="onmainwindow.cpp" line="807"/>
<source>Ctrl+Q</source>
<comment>exit</comment>
<translation>Strg +Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="812"/>
+ <location filename="onmainwindow.cpp" line="813"/>
<source>&Session</source>
<translation>&Sitzung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="813"/>
+ <location filename="onmainwindow.cpp" line="814"/>
<source>&Options</source>
<translation>&Einstellungen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="832"/>
+ <location filename="onmainwindow.cpp" line="833"/>
<source>&Help</source>
<translation>&Hilfe</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9823"/>
+ <location filename="onmainwindow.cpp" line="9985"/>
<source>Password:</source>
<translation>Password:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9824"/>
+ <location filename="onmainwindow.cpp" line="9986"/>
<source>Keyboard layout:</source>
<translation>Tastaturlayout:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9865"/>
+ <location filename="onmainwindow.cpp" line="10027"/>
<source>Ok</source>
<translation>Ok</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9867"/>
- <location filename="onmainwindow.cpp" line="10189"/>
- <location filename="onmainwindow.cpp" line="10191"/>
+ <location filename="onmainwindow.cpp" line="10029"/>
+ <location filename="onmainwindow.cpp" line="10351"/>
+ <location filename="onmainwindow.cpp" line="10353"/>
<source>Cancel</source>
<translation>Abbrechen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10014"/>
+ <location filename="onmainwindow.cpp" line="10176"/>
<source>Applications...</source>
<translation>Anwendungen...</translation>
</message>
@@ -1229,118 +1229,118 @@ sound system connections through firewalls</source>
<translation type="obsolete">Ungültige Antwort vom Session-Broker</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
- <location filename="onmainwindow.cpp" line="920"/>
- <location filename="onmainwindow.cpp" line="1662"/>
- <location filename="onmainwindow.cpp" line="1691"/>
- <location filename="onmainwindow.cpp" line="1699"/>
- <location filename="onmainwindow.cpp" line="1845"/>
- <location filename="onmainwindow.cpp" line="1872"/>
- <location filename="onmainwindow.cpp" line="1875"/>
- <location filename="onmainwindow.cpp" line="2122"/>
- <location filename="onmainwindow.cpp" line="2345"/>
- <location filename="onmainwindow.cpp" line="2359"/>
- <location filename="onmainwindow.cpp" line="2372"/>
- <location filename="onmainwindow.cpp" line="2406"/>
- <location filename="onmainwindow.cpp" line="2451"/>
- <location filename="onmainwindow.cpp" line="3195"/>
- <location filename="onmainwindow.cpp" line="3373"/>
- <location filename="onmainwindow.cpp" line="3382"/>
- <location filename="onmainwindow.cpp" line="3692"/>
- <location filename="onmainwindow.cpp" line="4169"/>
- <location filename="onmainwindow.cpp" line="4244"/>
- <location filename="onmainwindow.cpp" line="4307"/>
- <location filename="onmainwindow.cpp" line="4340"/>
- <location filename="onmainwindow.cpp" line="4384"/>
- <location filename="onmainwindow.cpp" line="4787"/>
- <location filename="onmainwindow.cpp" line="4813"/>
- <location filename="onmainwindow.cpp" line="4962"/>
- <location filename="onmainwindow.cpp" line="5746"/>
- <location filename="onmainwindow.cpp" line="5782"/>
- <location filename="onmainwindow.cpp" line="6507"/>
- <location filename="onmainwindow.cpp" line="6588"/>
- <location filename="onmainwindow.cpp" line="6832"/>
- <location filename="onmainwindow.cpp" line="6960"/>
- <location filename="onmainwindow.cpp" line="7013"/>
- <location filename="onmainwindow.cpp" line="7319"/>
- <location filename="onmainwindow.cpp" line="7321"/>
- <location filename="onmainwindow.cpp" line="7551"/>
- <location filename="onmainwindow.cpp" line="7599"/>
- <location filename="onmainwindow.cpp" line="7627"/>
- <location filename="onmainwindow.cpp" line="8067"/>
- <location filename="onmainwindow.cpp" line="8082"/>
- <location filename="onmainwindow.cpp" line="8136"/>
- <location filename="onmainwindow.cpp" line="8164"/>
- <location filename="onmainwindow.cpp" line="8189"/>
- <location filename="onmainwindow.cpp" line="10413"/>
+ <location filename="onmainwindow.cpp" line="893"/>
+ <location filename="onmainwindow.cpp" line="921"/>
+ <location filename="onmainwindow.cpp" line="1666"/>
+ <location filename="onmainwindow.cpp" line="1695"/>
+ <location filename="onmainwindow.cpp" line="1703"/>
+ <location filename="onmainwindow.cpp" line="1849"/>
+ <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
+ <location filename="onmainwindow.cpp" line="2354"/>
+ <location filename="onmainwindow.cpp" line="2368"/>
+ <location filename="onmainwindow.cpp" line="2381"/>
+ <location filename="onmainwindow.cpp" line="2415"/>
+ <location filename="onmainwindow.cpp" line="2460"/>
+ <location filename="onmainwindow.cpp" line="3318"/>
+ <location filename="onmainwindow.cpp" line="3496"/>
+ <location filename="onmainwindow.cpp" line="3505"/>
+ <location filename="onmainwindow.cpp" line="3821"/>
+ <location filename="onmainwindow.cpp" line="4299"/>
+ <location filename="onmainwindow.cpp" line="4376"/>
+ <location filename="onmainwindow.cpp" line="4440"/>
+ <location filename="onmainwindow.cpp" line="4473"/>
+ <location filename="onmainwindow.cpp" line="4517"/>
+ <location filename="onmainwindow.cpp" line="4920"/>
+ <location filename="onmainwindow.cpp" line="4946"/>
+ <location filename="onmainwindow.cpp" line="5096"/>
+ <location filename="onmainwindow.cpp" line="5898"/>
+ <location filename="onmainwindow.cpp" line="5934"/>
+ <location filename="onmainwindow.cpp" line="6670"/>
+ <location filename="onmainwindow.cpp" line="6754"/>
+ <location filename="onmainwindow.cpp" line="6998"/>
+ <location filename="onmainwindow.cpp" line="7126"/>
+ <location filename="onmainwindow.cpp" line="7179"/>
+ <location filename="onmainwindow.cpp" line="7485"/>
+ <location filename="onmainwindow.cpp" line="7487"/>
+ <location filename="onmainwindow.cpp" line="7718"/>
+ <location filename="onmainwindow.cpp" line="7766"/>
+ <location filename="onmainwindow.cpp" line="7794"/>
+ <location filename="onmainwindow.cpp" line="8234"/>
+ <location filename="onmainwindow.cpp" line="8250"/>
+ <location filename="onmainwindow.cpp" line="8305"/>
+ <location filename="onmainwindow.cpp" line="8333"/>
+ <location filename="onmainwindow.cpp" line="8358"/>
+ <location filename="onmainwindow.cpp" line="10575"/>
<source>Error</source>
<translation>Fehler</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2578"/>
- <location filename="onmainwindow.cpp" line="5591"/>
+ <location filename="onmainwindow.cpp" line="2587"/>
+ <location filename="onmainwindow.cpp" line="5733"/>
<source>KDE</source>
<translation>KDE</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2655"/>
+ <location filename="onmainwindow.cpp" line="2664"/>
<source> on </source>
<translation> on </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="871"/>
- <location filename="onmainwindow.cpp" line="1980"/>
- <location filename="onmainwindow.cpp" line="7369"/>
- <location filename="onmainwindow.cpp" line="9822"/>
+ <location filename="onmainwindow.cpp" line="872"/>
+ <location filename="onmainwindow.cpp" line="1984"/>
+ <location filename="onmainwindow.cpp" line="7535"/>
+ <location filename="onmainwindow.cpp" line="9984"/>
<source>Login:</source>
<translation>Benutzername:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3923"/>
- <location filename="onmainwindow.cpp" line="10185"/>
+ <location filename="onmainwindow.cpp" line="4052"/>
+ <location filename="onmainwindow.cpp" line="10347"/>
<source>Select session:</source>
<translation>Wähle Sitzung:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10187"/>
+ <location filename="onmainwindow.cpp" line="10349"/>
<source>Resume</source>
<translation>Fortfahren</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="560"/>
- <location filename="onmainwindow.cpp" line="1039"/>
- <location filename="onmainwindow.cpp" line="5223"/>
- <location filename="onmainwindow.cpp" line="10194"/>
+ <location filename="onmainwindow.cpp" line="561"/>
+ <location filename="onmainwindow.cpp" line="1040"/>
+ <location filename="onmainwindow.cpp" line="5362"/>
+ <location filename="onmainwindow.cpp" line="10356"/>
<source>Suspend</source>
<translation>Anhalten</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="563"/>
- <location filename="onmainwindow.cpp" line="1040"/>
- <location filename="onmainwindow.cpp" line="10034"/>
+ <location filename="onmainwindow.cpp" line="564"/>
+ <location filename="onmainwindow.cpp" line="1041"/>
<location filename="onmainwindow.cpp" line="10196"/>
+ <location filename="onmainwindow.cpp" line="10358"/>
<source>Terminate</source>
<translation>Beenden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10199"/>
+ <location filename="onmainwindow.cpp" line="10361"/>
<source>New</source>
<translation>Neu</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5485"/>
- <location filename="onmainwindow.cpp" line="10266"/>
- <location filename="onmainwindow.cpp" line="10288"/>
+ <location filename="onmainwindow.cpp" line="5625"/>
+ <location filename="onmainwindow.cpp" line="10428"/>
+ <location filename="onmainwindow.cpp" line="10450"/>
<source>Display</source>
<translation>Display</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10268"/>
+ <location filename="onmainwindow.cpp" line="10430"/>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10274"/>
+ <location filename="onmainwindow.cpp" line="10436"/>
<source>Server</source>
<translation>Server</translation>
</message>
@@ -1349,20 +1349,20 @@ sound system connections through firewalls</source>
<translation type="obsolete">Startzeit</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10279"/>
+ <location filename="onmainwindow.cpp" line="10441"/>
<source>Client IP</source>
<translation>Client IP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3939"/>
- <location filename="onmainwindow.cpp" line="4033"/>
- <location filename="onmainwindow.cpp" line="5187"/>
+ <location filename="onmainwindow.cpp" line="4068"/>
+ <location filename="onmainwindow.cpp" line="4162"/>
+ <location filename="onmainwindow.cpp" line="5326"/>
<source>running</source>
<translation>aktiv</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3941"/>
- <location filename="onmainwindow.cpp" line="4256"/>
+ <location filename="onmainwindow.cpp" line="4070"/>
+ <location filename="onmainwindow.cpp" line="4388"/>
<source>suspended</source>
<translation>angehalten</translation>
</message>
@@ -1375,46 +1375,46 @@ sound system connections through firewalls</source>
<translation type="obsolete">Datei kann nicht geschrieben werden:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4989"/>
+ <location filename="onmainwindow.cpp" line="5124"/>
<source>Unable to create SSL Tunnel:
</source>
<translation>SSL Tunnel kann nicht erzeugt werden:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4083"/>
- <location filename="onmainwindow.cpp" line="4103"/>
- <location filename="onmainwindow.cpp" line="4991"/>
- <location filename="onmainwindow.cpp" line="5399"/>
+ <location filename="onmainwindow.cpp" line="4212"/>
+ <location filename="onmainwindow.cpp" line="4232"/>
+ <location filename="onmainwindow.cpp" line="5126"/>
+ <location filename="onmainwindow.cpp" line="5538"/>
<source>Warning</source>
<translation>Warnung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="157"/>
- <location filename="onmainwindow.cpp" line="2972"/>
- <location filename="onmainwindow.cpp" line="5167"/>
+ <location filename="onmainwindow.cpp" line="158"/>
+ <location filename="onmainwindow.cpp" line="2999"/>
+ <location filename="onmainwindow.cpp" line="5306"/>
<source>connecting</source>
<translation>verbinde</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5176"/>
+ <location filename="onmainwindow.cpp" line="5315"/>
<source>starting</source>
<translation>starte</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5180"/>
+ <location filename="onmainwindow.cpp" line="5319"/>
<source>resuming</source>
<translation>aktiviere</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5243"/>
- <location filename="onmainwindow.cpp" line="5515"/>
- <location filename="onmainwindow.cpp" line="5533"/>
+ <location filename="onmainwindow.cpp" line="5382"/>
+ <location filename="onmainwindow.cpp" line="5655"/>
+ <location filename="onmainwindow.cpp" line="5674"/>
<source>Connection timeout, aborting</source>
<translation>Zeitüberschreitung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5244"/>
+ <location filename="onmainwindow.cpp" line="5383"/>
<source>aborting</source>
<translation>Abbruch</translation>
</message>
@@ -1423,7 +1423,7 @@ sound system connections through firewalls</source>
<translation type="obsolete"><b>Sitzungs ID:<br>Server:<br>Login:<br>Display:<br>Startzeit:<br>Status:</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10027"/>
+ <location filename="onmainwindow.cpp" line="10189"/>
<source>Abort</source>
<translation>Abbruch</translation>
</message>
@@ -1432,76 +1432,76 @@ sound system connections through firewalls</source>
<translation type="obsolete">Zeige Details</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6137"/>
+ <location filename="onmainwindow.cpp" line="6300"/>
<source> (can't open file)</source>
<translation> (kann Datei nicht öffnen)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6148"/>
- <location filename="onmainwindow.cpp" line="6158"/>
- <location filename="onmainwindow.cpp" line="6168"/>
+ <location filename="onmainwindow.cpp" line="6311"/>
+ <location filename="onmainwindow.cpp" line="6321"/>
+ <location filename="onmainwindow.cpp" line="6331"/>
<source> (file not exists)</source>
<translation> (Datei existiert nicht)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6192"/>
+ <location filename="onmainwindow.cpp" line="6355"/>
<source> (directory not exists)</source>
<translation> (Verzeichnis existiert nicht)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6220"/>
+ <location filename="onmainwindow.cpp" line="6383"/>
<source>wrong value for argument"--link"</source>
<translation>unerwarteter Wert "--link"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6238"/>
+ <location filename="onmainwindow.cpp" line="6401"/>
<source>wrong value for argument"--sound"</source>
<translation>unerwarteter Wert "--sound"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6255"/>
- <location filename="onmainwindow.cpp" line="6266"/>
+ <location filename="onmainwindow.cpp" line="6418"/>
+ <location filename="onmainwindow.cpp" line="6429"/>
<source>wrong value for argument"--geometry"</source>
<translation>unerwarteter Wert "--geometry"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6284"/>
+ <location filename="onmainwindow.cpp" line="6447"/>
<source>wrong value for argument"--set-kbd"</source>
<translation>unerwarteter Wert "--set-kbd"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6301"/>
+ <location filename="onmainwindow.cpp" line="6464"/>
<source>wrong value for argument"--ldap"</source>
<translation>unerwarteter Wert "--ldap"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6396"/>
+ <location filename="onmainwindow.cpp" line="6559"/>
<source>wrong value for argument"--pack"</source>
<translation>unerwarteter Wert "--pack"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6404"/>
- <location filename="onmainwindow.cpp" line="6407"/>
+ <location filename="onmainwindow.cpp" line="6567"/>
+ <location filename="onmainwindow.cpp" line="6570"/>
<source>wrong parameter: </source>
<translation>unerwarteter Wert: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6463"/>
+ <location filename="onmainwindow.cpp" line="6626"/>
<source>Available pack methodes:</source>
<translation>Liste aller Packmethoden:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7251"/>
+ <location filename="onmainwindow.cpp" line="7417"/>
<source>Support</source>
<translation>Support</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7256"/>
+ <location filename="onmainwindow.cpp" line="7422"/>
<source></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></source>
<translation></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7322"/>
+ <location filename="onmainwindow.cpp" line="7488"/>
<source>Please check LDAP Settings</source>
<translation>Bitte überprüfen Sie die LDAP Einstellungen</translation>
</message>
@@ -1514,15 +1514,15 @@ sound system connections through firewalls</source>
<translation type="obsolete">Sind Sie sicher, dass Sie die Sitzung löschen wollen?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3188"/>
- <location filename="onmainwindow.cpp" line="4237"/>
- <location filename="onmainwindow.cpp" line="4333"/>
- <location filename="onmainwindow.cpp" line="4366"/>
- <location filename="onmainwindow.cpp" line="6500"/>
- <location filename="onmainwindow.cpp" line="6581"/>
- <location filename="onmainwindow.cpp" line="6953"/>
- <location filename="onmainwindow.cpp" line="7006"/>
- <location filename="onmainwindow.cpp" line="8060"/>
+ <location filename="onmainwindow.cpp" line="3311"/>
+ <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4466"/>
+ <location filename="onmainwindow.cpp" line="4499"/>
+ <location filename="onmainwindow.cpp" line="6663"/>
+ <location filename="onmainwindow.cpp" line="6747"/>
+ <location filename="onmainwindow.cpp" line="7119"/>
+ <location filename="onmainwindow.cpp" line="7172"/>
+ <location filename="onmainwindow.cpp" line="8227"/>
<source><b>Connection failed</b>
</source>
<translation><b>Verbindung fehlgeschlagen</b>
@@ -1533,23 +1533,23 @@ sound system connections through firewalls</source>
<translation type="obsolete">es konnte kein Server gefunden werden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10281"/>
+ <location filename="onmainwindow.cpp" line="10443"/>
<source>Session ID</source>
<translation>Sitzungs ID</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4195"/>
+ <location filename="onmainwindow.cpp" line="4326"/>
<source>suspending</source>
<translation>anhalten</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4223"/>
+ <location filename="onmainwindow.cpp" line="4355"/>
<source>terminating</source>
<translation>beende</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5740"/>
- <location filename="onmainwindow.cpp" line="5776"/>
+ <location filename="onmainwindow.cpp" line="5892"/>
+ <location filename="onmainwindow.cpp" line="5928"/>
<source><b>Connection failed</b>
:
</source>
@@ -1584,14 +1584,14 @@ sound system connections through firewalls</source>
<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. Example: --ldap=ldapserver:389:o=organization,c=de --command=<cmd> Set default command, default value 'KDE' --sound=<0|1> Enable sound, default value '1' --geomerty=<W>x<H>|fullscreen Set default geometry, default value '800x600' --link=<modem|isdn|adsl
|wan|lan
> Set default link type, default 'lan' --pack=<packmethod> Set default pack method, default '16m-jpeg-9' --kbd-layout=<layout> Set default keyboard layout, default 'us' --kbd-type=<typed> Set default keyboard type, default 'pc105/us' --set-kbd=<0|1> Overwrite current keyboard settings, default '0'</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8163"/>
+ <location filename="onmainwindow.cpp" line="8332"/>
<source>Unable to read :
</source>
<translation>Lesefehler:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8188"/>
+ <location filename="onmainwindow.cpp" line="8357"/>
<source>Unable to write :
</source>
<translation>Schreibfehler:
@@ -1602,17 +1602,17 @@ sound system connections through firewalls</source>
<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 Vollbildmodus (als Ersatz für XDM) gestartet werden. Weitere Informationen erhalten Sie auf x2go.org.</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4502"/>
<source><b>Wrong Password!</b><br><br></source>
<translation><b>Falsches Passwort!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6323"/>
+ <location filename="onmainwindow.cpp" line="6486"/>
<source>wrong value for argument"--ldap1"</source>
<translation>unerwarteter Wert "--ldap1"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6342"/>
+ <location filename="onmainwindow.cpp" line="6505"/>
<source>wrong value for argument"--ldap2"</source>
<translation>unerwarteter Wert "--ldap2"</translation>
</message>
@@ -1641,12 +1641,12 @@ sound system connections through firewalls</source>
<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. Example: --ldap=ldapserver:389:o=organization,c=de --ldap1=<host:port> LDAP Failover Server #1 --ldap2=<host:port> LDAP Failover Server #2 --command=<cmd> Set default command, default value 'KDE' --sound=<0|1> Enable sound, default value '1' --geomerty=<W>x<H>|fullscreen Set default geometry, default value '800x600' --link=<modem|isdn|adsl|wan
|lan>
Set default link type, default 'lan' --pack=<packmethod> Set default pack method, default '16m-jpeg-9' --kbd-layout=<layout> Set default keyboard layout, default 'us' --kbd-type=<typed> Set default keyboard type, default 'pc105/us' --set-kbd=<0|1> Overwrite current keyboard settings, default '0'</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7628"/>
+ <location filename="onmainwindow.cpp" line="7795"/>
<source>Unable to create file: </source>
<translation>Datei konnte nicht erzeugt werden: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7552"/>
+ <location filename="onmainwindow.cpp" line="7719"/>
<source>No valid card found</source>
<translation>Es wurde keine gültige Karte gefunden</translation>
</message>
@@ -1655,13 +1655,13 @@ sound system connections through firewalls</source>
<translation type="obsolete">Diese Karte ist dem X2Go-System unbekannt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="342"/>
+ <location filename="onmainwindow.cpp" line="343"/>
<source>&Settings ...</source>
<translation>&Konfiguration ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6458"/>
- <location filename="onmainwindow.cpp" line="6484"/>
+ <location filename="onmainwindow.cpp" line="6621"/>
+ <location filename="onmainwindow.cpp" line="6647"/>
<source>Options</source>
<translation>Einstellungen</translation>
</message>
@@ -1674,7 +1674,7 @@ sound system connections through firewalls</source>
<translation type="obsolete">Verbindung zu X-Server konnte nicht hergestellt werden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7896"/>
+ <location filename="onmainwindow.cpp" line="8063"/>
<source>Can't connect to X server
Please check your settings</source>
<oldsource>Can't connect to X-Server
@@ -1693,33 +1693,33 @@ Please check your settings</source>
Ãberprüfen Sie Ihre Einstellungen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4084"/>
- <location filename="onmainwindow.cpp" line="4104"/>
+ <location filename="onmainwindow.cpp" line="4213"/>
+ <location filename="onmainwindow.cpp" line="4233"/>
<source>Your current color depth is different to the color depth of your x2go-session. 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>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4092"/>
+ <location filename="onmainwindow.cpp" line="4221"/>
<source>24 or 32</source>
<translation>24 oder 32</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4093"/>
- <location filename="onmainwindow.cpp" line="4113"/>
+ <location filename="onmainwindow.cpp" line="4222"/>
+ <location filename="onmainwindow.cpp" line="4242"/>
<source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source>
<translation> 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="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4096"/>
- <location filename="onmainwindow.cpp" line="4116"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4245"/>
<source>Yes</source>
<translation>Ja</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4097"/>
- <location filename="onmainwindow.cpp" line="4117"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4226"/>
+ <location filename="onmainwindow.cpp" line="4246"/>
<source>No</source>
<translation>Nein</translation>
</message>
@@ -1736,42 +1736,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 kann im Vollbildmodus (als Ersatz für XDM) gestartet werden. Weitere Informationen erhalten SIe auf x2go.org.</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="166"/>
+ <location filename="onmainwindow.cpp" line="167"/>
<source>OpenOffice.org</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="167"/>
+ <location filename="onmainwindow.cpp" line="168"/>
<source>Terminal</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3307"/>
+ <location filename="onmainwindow.cpp" line="3430"/>
<source>unknown</source>
<translation>unbekannt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10270"/>
+ <location filename="onmainwindow.cpp" line="10432"/>
<source>Command</source>
<translation>Befehl</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10272"/>
+ <location filename="onmainwindow.cpp" line="10434"/>
<source>Type</source>
<translation>Typ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3947"/>
+ <location filename="onmainwindow.cpp" line="4076"/>
<source>Desktop</source>
<translation>Desktopumgebung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3949"/>
+ <location filename="onmainwindow.cpp" line="4078"/>
<source>single application</source>
<translation>Anwendung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3951"/>
+ <location filename="onmainwindow.cpp" line="4080"/>
<source>shadow session</source>
<translation></translation>
</message>
@@ -1780,310 +1780,320 @@ Please check your settings</source>
<translation type="obsolete"><br>Fehler in der Sudo Konfiguration</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8083"/>
+ <location filename="onmainwindow.cpp" line="8251"/>
<source>Unable to execute: </source>
<translation>Befehl konnte nicht ausgeführt werden:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="140"/>
+ <location filename="onmainwindow.cpp" line="141"/>
<source>X2Go client</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="164"/>
+ <location filename="onmainwindow.cpp" line="165"/>
<source>Internet browser</source>
<translation>Webbrowser</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="165"/>
+ <location filename="onmainwindow.cpp" line="166"/>
<source>Email client</source>
<translation>E-Mail-Programm</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="739"/>
+ <location filename="onmainwindow.cpp" line="740"/>
<source>&New session ...</source>
<translation>&Neue Sitzung ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="745"/>
+ <location filename="onmainwindow.cpp" line="746"/>
<source>Session management...</source>
<translation>Sitzungsverwaltung...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="783"/>
- <location filename="onmainwindow.cpp" line="804"/>
+ <location filename="onmainwindow.cpp" line="784"/>
+ <location filename="onmainwindow.cpp" line="805"/>
<source>Show toolbar</source>
<translation>Zeige Wergzeugleiste</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="353"/>
- <location filename="onmainwindow.cpp" line="7276"/>
+ <location filename="onmainwindow.cpp" line="354"/>
+ <location filename="onmainwindow.cpp" line="7442"/>
<source>About X2GO client</source>
<translation>Ãber X2GoClient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1663"/>
- <location filename="onmainwindow.cpp" line="1846"/>
- <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1667"/>
+ <location filename="onmainwindow.cpp" line="1850"/>
+ <location filename="onmainwindow.cpp" line="1880"/>
<source>Please check LDAP settings</source>
<translation>Bitte überprüfen Sie die LDAP Einstellungen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1698"/>
+ <location filename="onmainwindow.cpp" line="1702"/>
<source>no X2Go server found in LDAP </source>
<translation>LDAP enthält keinen X2GoServer </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2270"/>
+ <location filename="onmainwindow.cpp" line="2279"/>
<source>Are you sure you want to delete this session?</source>
<translation>Sind Sie sicher, dass Sie die Sitzung löschen wollen?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3191"/>
- <location filename="onmainwindow.cpp" line="4240"/>
- <location filename="onmainwindow.cpp" line="4336"/>
- <location filename="onmainwindow.cpp" line="5743"/>
- <location filename="onmainwindow.cpp" line="5779"/>
- <location filename="onmainwindow.cpp" line="6503"/>
- <location filename="onmainwindow.cpp" line="6584"/>
- <location filename="onmainwindow.cpp" line="6956"/>
- <location filename="onmainwindow.cpp" line="7009"/>
- <location filename="onmainwindow.cpp" line="8063"/>
+ <location filename="onmainwindow.cpp" line="3314"/>
+ <location filename="onmainwindow.cpp" line="4372"/>
+ <location filename="onmainwindow.cpp" line="4469"/>
+ <location filename="onmainwindow.cpp" line="5895"/>
+ <location filename="onmainwindow.cpp" line="5931"/>
+ <location filename="onmainwindow.cpp" line="6666"/>
+ <location filename="onmainwindow.cpp" line="6750"/>
+ <location filename="onmainwindow.cpp" line="7122"/>
+ <location filename="onmainwindow.cpp" line="7175"/>
+ <location filename="onmainwindow.cpp" line="8230"/>
<source><b>Wrong password!</b><br><br></source>
<translation><b>Falsches Passwort!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3374"/>
+ <location filename="onmainwindow.cpp" line="3497"/>
<source>No server availabel</source>
<translation>es konnte kein Server gefunden werden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1011"/>
- <location filename="onmainwindow.cpp" line="5065"/>
+ <location filename="onmainwindow.cpp" line="1012"/>
+ <location filename="onmainwindow.cpp" line="5201"/>
<source>Not connected</source>
<oldsource>Active connection</oldsource>
<translation>Nicht verbunden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5487"/>
- <location filename="onmainwindow.cpp" line="10277"/>
+ <location filename="onmainwindow.cpp" line="5627"/>
+ <location filename="onmainwindow.cpp" line="10439"/>
<source>Creation time</source>
<translation>Startzeit</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4785"/>
- <location filename="onmainwindow.cpp" line="6830"/>
+ <location filename="onmainwindow.cpp" line="4918"/>
+ <location filename="onmainwindow.cpp" line="6996"/>
<source>Unable to create folder:</source>
<translation>Ordner kann nicht erzeugt werden:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2861"/>
+ <location filename="onmainwindow.cpp" line="2851"/>
+ <source>Enter passphrase to decrypt a key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="2879"/>
<source>Host key for server changed.
It is now: </source>
<translation>Host-Key des Servers hat sich geändert. Er lautet jetzt: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2862"/>
+ <location filename="onmainwindow.cpp" line="2880"/>
<source>For security reasons, connection will be stopped</source>
<translation>Aus Sicherheitsgründen wird der Verbindungsaufbau abgebrochen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2873"/>
+ <location filename="onmainwindow.cpp" line="2893"/>
<source>The host key for this server was not found but an othertype of key exists.An attacker might change the default server key toconfuse your client into thinking the key does not exist</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="onmainwindow.cpp" line="2895"/>
+ <location filename="onmainwindow.cpp" line="2919"/>
<source>Could not find known host file.If you accept the host key here, the file will be automatically created</source>
<translation>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="onmainwindow.cpp" line="2900"/>
+ <location filename="onmainwindow.cpp" line="2924"/>
<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? Ãffentlicher Schlüssel: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="2912"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2938"/>
<source>Host key verification failed</source>
<translation>Die Ãberprüfung des Host-Keys schlug fehl</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2955"/>
<source>Authentication failed</source>
<translation>Anmeldung fehlgeschlagen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3383"/>
- <location filename="onmainwindow.cpp" line="3693"/>
- <location filename="onmainwindow.cpp" line="4170"/>
- <location filename="onmainwindow.cpp" line="4308"/>
+ <location filename="onmainwindow.cpp" line="3290"/>
+ <source>Enter passwort for SSH proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="3506"/>
+ <location filename="onmainwindow.cpp" line="3822"/>
+ <location filename="onmainwindow.cpp" line="4300"/>
+ <location filename="onmainwindow.cpp" line="4441"/>
<source>Server not availabel</source>
<translation>Server nicht verfügbar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4811"/>
+ <location filename="onmainwindow.cpp" line="4944"/>
<source>Unable to write file:</source>
<translation>Datei kann nicht geschrieben werden:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4960"/>
- <location filename="onmainwindow.cpp" line="8134"/>
+ <location filename="onmainwindow.cpp" line="5094"/>
+ <location filename="onmainwindow.cpp" line="8303"/>
<source>Unable to create SSL tunnel:
</source>
<translation>SSL Tunnel kann nicht erzeugt werden:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10004"/>
+ <location filename="onmainwindow.cpp" line="10166"/>
<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="onmainwindow.cpp" line="557"/>
- <location filename="onmainwindow.cpp" line="1038"/>
- <location filename="onmainwindow.cpp" line="10021"/>
+ <location filename="onmainwindow.cpp" line="558"/>
+ <location filename="onmainwindow.cpp" line="1039"/>
+ <location filename="onmainwindow.cpp" line="10183"/>
<source>Share folder...</source>
<translation>Ordner freigeben...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10039"/>
+ <location filename="onmainwindow.cpp" line="10201"/>
<source>Show details</source>
<translation>Zeige Details</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7277"/>
+ <location filename="onmainwindow.cpp" line="7443"/>
<source><b>X2Go client V. </source>
<translation><b>X2GoClient V. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7600"/>
+ <location filename="onmainwindow.cpp" line="7767"/>
<source>This card is unknown by X2Go system</source>
<translation>Diese Karte ist dem X2Go-System unbekannt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7897"/>
+ <location filename="onmainwindow.cpp" line="8064"/>
<source>Can't start X server
Please check your settings</source>
<translation>X-Server lässt sich nicht starten.
Bitte überprüfen Sie Ihre Installation</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8099"/>
+ <location filename="onmainwindow.cpp" line="8268"/>
<source>Remote server does not support file system export through SSH Tunnel
Please update to a newer x2goserver package</source>
<translation>Der gewählte server unterstützt kein Dateisystemexport via SSH Tunnel
Bitte installieren sie eine neuere Version von x2goserver</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="756"/>
+ <location filename="onmainwindow.cpp" line="757"/>
<source>&Create session icon on desktop...</source>
<translation>&Desktopsymbol erzeugen...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="765"/>
+ <location filename="onmainwindow.cpp" line="766"/>
<source>&Set broker password...</source>
<translation>&Kennwort für Session-Broker setzen...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="776"/>
+ <location filename="onmainwindow.cpp" line="777"/>
<source>&Connectivity test...</source>
<translation>&Verbindungstest...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
+ <location filename="onmainwindow.cpp" line="893"/>
<source>Operation failed</source>
<translation>Operation fehlgeschlagen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="896"/>
+ <location filename="onmainwindow.cpp" line="897"/>
<source>Password changed</source>
<translation>Das Kennwort wurde geändert</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="920"/>
+ <location filename="onmainwindow.cpp" line="921"/>
<source>Wrong password!</source>
<translation>Falsches Kennwort!</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="969"/>
+ <location filename="onmainwindow.cpp" line="970"/>
<source><b>Authentication</b></source>
<translation><b>Authentifizierung</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1009"/>
+ <location filename="onmainwindow.cpp" line="1010"/>
<source>Restore</source>
<translation>Wiederherstellen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1013"/>
+ <location filename="onmainwindow.cpp" line="1014"/>
<source>Multimedia</source>
<translation>Unterhaltungsmedien</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1015"/>
+ <location filename="onmainwindow.cpp" line="1016"/>
<source>Development</source>
<translation>Entwicklung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1017"/>
+ <location filename="onmainwindow.cpp" line="1018"/>
<source>Education</source>
<translation>Bildung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1019"/>
+ <location filename="onmainwindow.cpp" line="1020"/>
<source>Game</source>
<translation>Spiele</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1021"/>
+ <location filename="onmainwindow.cpp" line="1022"/>
<source>Graphics</source>
<translation>Grafik</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1023"/>
+ <location filename="onmainwindow.cpp" line="1024"/>
<source>Network</source>
<translation>Internet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1025"/>
+ <location filename="onmainwindow.cpp" line="1026"/>
<source>Office</source>
<translation>Büroprogramme</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1027"/>
+ <location filename="onmainwindow.cpp" line="1028"/>
<source>Settings</source>
<translation>Einstellungen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1029"/>
+ <location filename="onmainwindow.cpp" line="1030"/>
<source>System</source>
<translation>Systemwerkzeuge</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1031"/>
+ <location filename="onmainwindow.cpp" line="1032"/>
<source>Utility</source>
<translation>Dienstprogramme</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1033"/>
+ <location filename="onmainwindow.cpp" line="1034"/>
<source>Other</source>
<translation>Sonstige</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1068"/>
+ <location filename="onmainwindow.cpp" line="1069"/>
<source>Left mouse button to hide/restore - Right mouse button to display context menu</source>
<oldsource>Left click to open the X2GoClient window or right click to get the context menu.</oldsource>
<translation>Linke Maustaste: verstecken/wiederherstellen - rechte Maustaste: Kontextmenü</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2010"/>
+ <location filename="onmainwindow.cpp" line="2014"/>
<source>Create session icon on desktop</source>
<translation>Desktopsymbol erzeugen</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2011"/>
+ <location filename="onmainwindow.cpp" line="2015"/>
<source>Desktop icons can be configured not to show x2goclient (hidden mode). If you like to use this feature you'll need to configure login by a gpg key or gpg smart card.
Use x2goclient hidden mode?</source>
@@ -2092,44 +2102,44 @@ Use x2goclient hidden mode?</source>
Wollen Sie den versteckten Modus nutzen?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2022"/>
+ <location filename="onmainwindow.cpp" line="2026"/>
<source>New Session</source>
<translation>Neue Sitzung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2122"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
<source>X2Go sessions not found</source>
<translation>Keine X2Go-Sitzungen gefunden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2643"/>
+ <location filename="onmainwindow.cpp" line="2652"/>
<source>RDP connection</source>
<translation>RDP Verbindung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2072"/>
+ <location filename="onmainwindow.cpp" line="2081"/>
<source>X2Go Link to session </source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="569"/>
- <location filename="onmainwindow.cpp" line="9447"/>
+ <location filename="onmainwindow.cpp" line="570"/>
+ <location filename="onmainwindow.cpp" line="9626"/>
<source>Detach X2Go window</source>
<translation>Fenster abkoppeln</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4934"/>
- <location filename="onmainwindow.cpp" line="9422"/>
+ <location filename="onmainwindow.cpp" line="5068"/>
+ <location filename="onmainwindow.cpp" line="9601"/>
<source>Attach X2Go window</source>
<translation>Fenster einbetten</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5152"/>
+ <location filename="onmainwindow.cpp" line="5291"/>
<source>Finished</source>
<translation>Beendet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5400"/>
+ <location filename="onmainwindow.cpp" line="5539"/>
<source>Are you sure you want to terminate this session?
Unsaved documents will be lost</source>
<translation>Die Sitzung wird beendet. Sind Sie sicher?<br>Ungespeicherte Dokumente gehen verloren</translation>
@@ -2139,27 +2149,27 @@ Unsaved documents will be lost</source>
<translation type="obsolete"></b><br> (C. 2006-2009 <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 kann im Vollbildmodus (als Ersatz für XDM) gestartet werden. Weitere Informationen erhalten SIe auf x2go.org. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7911"/>
- <location filename="onmainwindow.cpp" line="8557"/>
- <location filename="onmainwindow.cpp" line="8585"/>
+ <location filename="onmainwindow.cpp" line="8078"/>
+ <location filename="onmainwindow.cpp" line="8726"/>
+ <location filename="onmainwindow.cpp" line="8754"/>
<source>Can't start X Server
Please check your installation</source>
<translation>X-Server lässt sich nicht starten.
Bitte überprüfen Sie Ihre Installation</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9511"/>
+ <location filename="onmainwindow.cpp" line="9689"/>
<source>X2Go Session</source>
<translation>X2Go-Sitzung</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="572"/>
- <location filename="onmainwindow.cpp" line="10497"/>
+ <location filename="onmainwindow.cpp" line="573"/>
+ <location filename="onmainwindow.cpp" line="10659"/>
<source>Minimize toolbar</source>
<translation>Symbole verstecken</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10530"/>
+ <location filename="onmainwindow.cpp" line="10692"/>
<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>
@@ -2168,7 +2178,7 @@ Bitte überprüfen Sie Ihre Installation</translation>
<translation type="obsolete">Konfigurationsdatei lässt sich nicht öffnen:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10414"/>
+ <location filename="onmainwindow.cpp" line="10576"/>
<source>sshd not started, you'll need sshd for printing and file sharing
you can install sshd with
<b>sudo apt-get install openssh-server</b></source>
@@ -2177,65 +2187,65 @@ Sie können SSHD über folgenden Befehl installieren:
<b>sudo apt-get install openssh-server</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2651"/>
+ <location filename="onmainwindow.cpp" line="2660"/>
<source>Connection to local desktop</source>
<translation>Zugriff auf lokalen Desktop</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3984"/>
+ <location filename="onmainwindow.cpp" line="4113"/>
<source>Information</source>
<translation>Hinweis</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3998"/>
- <location filename="onmainwindow.cpp" line="10598"/>
+ <location filename="onmainwindow.cpp" line="4127"/>
+ <location filename="onmainwindow.cpp" line="10760"/>
<source>Filter</source>
<translation>Filter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4005"/>
+ <location filename="onmainwindow.cpp" line="4134"/>
<source>Select desktop:</source>
<translation>Desktopauswahl:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10205"/>
+ <location filename="onmainwindow.cpp" line="10367"/>
<source>View only</source>
<translation>Nur betrachten</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10285"/>
+ <location filename="onmainwindow.cpp" line="10447"/>
<source>User</source>
<translation>Benutzer</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2647"/>
+ <location filename="onmainwindow.cpp" line="2656"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3985"/>
+ <location filename="onmainwindow.cpp" line="4114"/>
<source>No accessible desktop found</source>
<translation>Kein freigegebener Desktop gefunden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10202"/>
+ <location filename="onmainwindow.cpp" line="10364"/>
<source>Full access</source>
<translation>Vollzugriff</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10316"/>
+ <location filename="onmainwindow.cpp" line="10478"/>
<source>Only my desktops</source>
<translation>Nur eigene Desktops</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="565"/>
+ <location filename="onmainwindow.cpp" line="566"/>
<source>Reconnect</source>
<translation>Neu verbinden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="924"/>
- <location filename="onmainwindow.cpp" line="2560"/>
- <location filename="onmainwindow.cpp" line="10667"/>
+ <location filename="onmainwindow.cpp" line="925"/>
+ <location filename="onmainwindow.cpp" line="2569"/>
+ <location filename="onmainwindow.cpp" line="10829"/>
<source>Connecting to broker</source>
<translation>Verbinden mit Broker</translation>
</message>
@@ -2244,27 +2254,27 @@ Sie können SSHD über folgenden Befehl installieren:
<translation type="obsolete"></b><br> (C. 2006-2010 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7260"/>
+ <location filename="onmainwindow.cpp" line="7426"/>
<source><br>x2goplugin 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="onmainwindow.cpp" line="7264"/>
+ <location filename="onmainwindow.cpp" line="7430"/>
<source><br>Client for use with 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 fullscreen loginscreen (replacement for loginmanager like xdm). Please visit x2go.org for further information.</source>
<translation><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="onmainwindow.cpp" line="8276"/>
+ <location filename="onmainwindow.cpp" line="8445"/>
<source>WINDOWS-1252</source>
<translation>WINDOWS-1252</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8288"/>
+ <location filename="onmainwindow.cpp" line="8457"/>
<source>ISO8859-1</source>
<translation>ISO8859-1</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9693"/>
+ <location filename="onmainwindow.cpp" line="9871"/>
<source>wrong value for argument"speed"</source>
<translation>wrong value for argument"speed"</translation>
</message>
@@ -2685,170 +2695,226 @@ Beispiel:
<context>
<name>SessionWidget</name>
<message>
- <location filename="sessionwidget.cpp" line="52"/>
+ <location filename="sessionwidget.cpp" line="55"/>
<source>Session name:</source>
<translation>Sitzungsname:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="57"/>
+ <location filename="sessionwidget.cpp" line="60"/>
<source><< change icon</source>
<translation><< Symbol ändern</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="60"/>
+ <location filename="sessionwidget.cpp" line="63"/>
<source>&Server</source>
<translation>&Server</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="93"/>
+ <location filename="sessionwidget.cpp" line="96"/>
+ <location filename="sessionwidget.cpp" line="154"/>
<source>Host:</source>
<translation>Host:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="94"/>
+ <location filename="sessionwidget.cpp" line="97"/>
+ <location filename="sessionwidget.cpp" line="160"/>
<source>Login:</source>
<translation>Login:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="95"/>
- <location filename="sessionwidget.cpp" line="237"/>
+ <location filename="sessionwidget.cpp" line="98"/>
+ <location filename="sessionwidget.cpp" line="360"/>
<source>SSH port:</source>
<translation>SSH-Port:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="110"/>
+ <location filename="sessionwidget.cpp" line="113"/>
<source>Use RSA/DSA key for ssh connection:</source>
<translation>RSA-/DSA-Schlüssel verwenden (ssh):</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="117"/>
+ <location filename="sessionwidget.cpp" line="120"/>
<source>Try auto login (ssh-agent or default ssh key)</source>
<translation>Anmeldung über voreingestellten SSH-Schlüssel oder ssh-agent</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="118"/>
+ <location filename="sessionwidget.cpp" line="121"/>
<source>Kerberos 5 (GSSAPI) authentication</source>
<translation>Kerberos5 (GSSAPI) Authentifizierung</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="123"/>
+ <location filename="sessionwidget.cpp" line="124"/>
+ <source>Use Proxy server for SSH connection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="125"/>
+ <source>Proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="131"/>
+ <source>SSH</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="132"/>
+ <source>HTTP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="140"/>
+ <source>Same login as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="142"/>
+ <source>Same password as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="144"/>
+ <source>RSA/DSA key:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="149"/>
+ <source>ssh-agent or default ssh key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="151"/>
+ <source>Type:</source>
+ <translation type="unfinished">Typ:</translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="155"/>
+ <source>Port:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="170"/>
<source>&Session type</source>
<translation>&Sitzungsart</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="128"/>
+ <location filename="sessionwidget.cpp" line="175"/>
<source>Session type:</source>
<translation>Sitzungsart:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="138"/>
- <location filename="sessionwidget.cpp" line="361"/>
+ <location filename="sessionwidget.cpp" line="185"/>
+ <location filename="sessionwidget.cpp" line="484"/>
<source>Connect to Windows terminal server</source>
<translation>Verbindung mit Windows Terminalserver herstellen</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="141"/>
+ <location filename="sessionwidget.cpp" line="188"/>
<source>Custom desktop</source>
<translation>Andere Desktopumgebung</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="142"/>
+ <location filename="sessionwidget.cpp" line="189"/>
<source>Single application</source>
<translation>Anwendung</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="143"/>
+ <location filename="sessionwidget.cpp" line="190"/>
<source>Published applications</source>
<translation>Veröffentlichte Anwendungen</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="145"/>
- <location filename="sessionwidget.cpp" line="305"/>
+ <location filename="sessionwidget.cpp" line="192"/>
+ <location filename="sessionwidget.cpp" line="428"/>
<source>Command:</source>
<translation>Befehl:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="146"/>
+ <location filename="sessionwidget.cpp" line="193"/>
<source>Advanced options...</source>
<translation>Erweiterte Einstellungen...</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="158"/>
- <location filename="sessionwidget.cpp" line="523"/>
- <location filename="sessionwidget.cpp" line="597"/>
+ <location filename="sessionwidget.cpp" line="205"/>
+ <location filename="sessionwidget.cpp" line="713"/>
+ <location filename="sessionwidget.cpp" line="808"/>
<source>Path to executable</source>
<translation>Pfad zum Programm</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="168"/>
+ <location filename="sessionwidget.cpp" line="215"/>
<source>Direct RDP Connection</source>
<translation>Direkte RDP Verbindung</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="233"/>
+ <location filename="sessionwidget.cpp" line="356"/>
<source>RDP port:</source>
<translation>RDP port:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="249"/>
+ <location filename="sessionwidget.cpp" line="372"/>
<source>Open picture</source>
<translation>Ãffne Bild</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="251"/>
+ <location filename="sessionwidget.cpp" line="374"/>
<source>Pictures</source>
<translation>Bilder</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="272"/>
+ <location filename="sessionwidget.cpp" line="283"/>
+ <location filename="sessionwidget.cpp" line="395"/>
<source>Open key file</source>
<translation>Ãffne Schlüssel</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="274"/>
+ <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="397"/>
<source>All files</source>
<translation>Alle Dateien</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="332"/>
- <location filename="sessionwidget.cpp" line="478"/>
+ <location filename="sessionwidget.cpp" line="455"/>
+ <location filename="sessionwidget.cpp" line="668"/>
<source>Server:</source>
<translation>Server:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="362"/>
+ <location filename="sessionwidget.cpp" line="485"/>
<source>rdesktop command line options:</source>
<translation>rdesktop Kommandozeilenoptionen:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="375"/>
- <location filename="sessionwidget.cpp" line="502"/>
+ <location filename="sessionwidget.cpp" line="498"/>
+ <location filename="sessionwidget.cpp" line="692"/>
<source>New session</source>
<translation>Neue Sitzung</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="140"/>
+ <location filename="sessionwidget.cpp" line="187"/>
<source>Connect to local desktop</source>
<translation>Zugriff auf lokalen Desktop</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="341"/>
- <location filename="sessionwidget.cpp" line="490"/>
+ <location filename="sessionwidget.cpp" line="464"/>
+ <location filename="sessionwidget.cpp" line="680"/>
<source>XDMCP server:</source>
<translation>XDMCP Server:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="139"/>
+ <location filename="sessionwidget.cpp" line="186"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="284"/>
+ <location filename="sessionwidget.cpp" line="295"/>
+ <location filename="sessionwidget.cpp" line="407"/>
<source>Error</source>
<translation>Fehler</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="296"/>
+ <location filename="sessionwidget.cpp" line="408"/>
<source>x2goclient is running in portable mode. You should use a path on your usb device to be able to access your data whereever you are</source>
<translation>x2goclient 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>
@@ -2996,17 +3062,17 @@ sound system connections through firewalls</source>
<translation>Kommandozeile:</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="642"/>
+ <location filename="settingswidget.cpp" line="645"/>
<source>us</source>
<translation>de</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="643"/>
+ <location filename="settingswidget.cpp" line="646"/>
<source>pc105/us</source>
<translation>pc105/de</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="757"/>
+ <location filename="settingswidget.cpp" line="760"/>
<source>password</source>
<translation>Kennwort</translation>
</message>
@@ -3095,82 +3161,103 @@ sound system connections through firewalls</source>
<context>
<name>SshMasterConnection</name>
<message>
- <location filename="sshmasterconnection.cpp" line="133"/>
+ <location filename="sshmasterconnection.cpp" line="170"/>
+ <source>SSH proxy connection error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="175"/>
+ <location filename="sshmasterconnection.cpp" line="181"/>
+ <source>SSH proxy connection error: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="197"/>
+ <source>Failed to create SSH proxy tunnel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="265"/>
<source>Can not initialize libssh</source>
<translation>Kann libssh nicht initialisieren</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="159"/>
+ <location filename="sshmasterconnection.cpp" line="291"/>
<source>Can not create ssh session</source>
<translation>Kann SSH-Sitzung nicht erstellen</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="177"/>
+ <location filename="sshmasterconnection.cpp" line="319"/>
+ <source>Can not connect to proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="340"/>
<source>Can not connect to </source>
<translation>Verbindungsaufbau nicht möglich </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="218"/>
+ <location filename="sshmasterconnection.cpp" line="394"/>
<source>Authentication failed</source>
<translation>Anmeldung fehlgeschlagen</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="244"/>
+ <location filename="sshmasterconnection.cpp" line="420"/>
<source>channel_forward_listen failed</source>
<translation>channel_forward_listen schlug fehl</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="560"/>
+ <location filename="sshmasterconnection.cpp" line="830"/>
<source>Can not open file </source>
<translation>Kann Datei nicht öffnen </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="572"/>
+ <location filename="sshmasterconnection.cpp" line="842"/>
<source>Can not create remote file </source>
<translation>Kann entfernte Datei nicht öffnen</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="585"/>
+ <location filename="sshmasterconnection.cpp" line="855"/>
<source>Can not write to remote file </source>
<translation>Kann entfernte Datei nicht schreiben </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="642"/>
+ <location filename="sshmasterconnection.cpp" line="912"/>
<source>can not connect to </source>
<translation>Kann Verbindung nicht herstellen zu </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="751"/>
+ <location filename="sshmasterconnection.cpp" line="1029"/>
<source>channel_open_forward failed</source>
<translation>channel_open_forward schlug fehl</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="770"/>
+ <location filename="sshmasterconnection.cpp" line="1048"/>
<source>channel_open_session failed</source>
<translation>channel_open_session schlug fehl</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="777"/>
+ <location filename="sshmasterconnection.cpp" line="1055"/>
<source>channel_request_exec failed</source>
<translation>channel_request_exec schlug fehl</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="842"/>
+ <location filename="sshmasterconnection.cpp" line="1120"/>
<source>error writing to socket</source>
<translation>Fehler beim Schreiben auf Socket</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="860"/>
+ <location filename="sshmasterconnection.cpp" line="1138"/>
<source>error reading channel</source>
<translation>Channel Lesefehler</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="890"/>
+ <location filename="sshmasterconnection.cpp" line="1168"/>
<source>channel_write failed</source>
<translation>Channel Schreibfehler</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="902"/>
+ <location filename="sshmasterconnection.cpp" line="1180"/>
<source>error reading tcp socket</source>
<translation>Lesefehler TCP-Socket</translation>
</message>
@@ -3178,12 +3265,12 @@ sound system connections through firewalls</source>
<context>
<name>SshProcess</name>
<message>
- <location filename="sshprocess.cpp" line="97"/>
+ <location filename="sshprocess.cpp" line="112"/>
<source>Error creating socket</source>
<translation>Socket-Fehler beim Erstellen</translation>
</message>
<message>
- <location filename="sshprocess.cpp" line="115"/>
+ <location filename="sshprocess.cpp" line="130"/>
<source>Error binding </source>
<translation>Socket-Bind-Fehler</translation>
</message>
diff --git a/x2goclient_es.ts b/x2goclient_es.ts
index bb85a3a..ae8a8b6 100644
--- a/x2goclient_es.ts
+++ b/x2goclient_es.ts
@@ -724,13 +724,13 @@
<context>
<name>ONMainWindow</name>
<message>
- <location filename="onmainwindow.cpp" line="91"/>
- <location filename="onmainwindow.cpp" line="6059"/>
+ <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="6188"/>
<source>us</source>
<translation>us</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="93"/>
<source>pc105/us</source>
<translation>pc105/us</translation>
</message>
@@ -741,8 +741,8 @@
</message>
<message>
<location filename="onmainwindow.cpp" line="158"/>
- <location filename="onmainwindow.cpp" line="2975"/>
- <location filename="onmainwindow.cpp" line="5183"/>
+ <location filename="onmainwindow.cpp" line="2999"/>
+ <location filename="onmainwindow.cpp" line="5306"/>
<source>connecting</source>
<translation>conectando</translation>
</message>
@@ -778,30 +778,30 @@
</message>
<message>
<location filename="onmainwindow.cpp" line="354"/>
- <location filename="onmainwindow.cpp" line="7305"/>
+ <location filename="onmainwindow.cpp" line="7442"/>
<source>About X2GO client</source>
<translation>Acerca del cliente X2Go</translation>
</message>
<message>
<location filename="onmainwindow.cpp" line="558"/>
<location filename="onmainwindow.cpp" line="1039"/>
- <location filename="onmainwindow.cpp" line="10061"/>
+ <location filename="onmainwindow.cpp" line="10183"/>
<source>Share folder...</source>
<translation>Compartir carpeta...</translation>
</message>
<message>
<location filename="onmainwindow.cpp" line="561"/>
<location filename="onmainwindow.cpp" line="1040"/>
- <location filename="onmainwindow.cpp" line="5239"/>
- <location filename="onmainwindow.cpp" line="10234"/>
+ <location filename="onmainwindow.cpp" line="5362"/>
+ <location filename="onmainwindow.cpp" line="10356"/>
<source>Suspend</source>
<translation>Suspender</translation>
</message>
<message>
<location filename="onmainwindow.cpp" line="564"/>
<location filename="onmainwindow.cpp" line="1041"/>
- <location filename="onmainwindow.cpp" line="10074"/>
- <location filename="onmainwindow.cpp" line="10236"/>
+ <location filename="onmainwindow.cpp" line="10196"/>
+ <location filename="onmainwindow.cpp" line="10358"/>
<source>Terminate</source>
<translation>Terminar</translation>
</message>
@@ -812,20 +812,20 @@
</message>
<message>
<location filename="onmainwindow.cpp" line="570"/>
- <location filename="onmainwindow.cpp" line="9487"/>
+ <location filename="onmainwindow.cpp" line="9626"/>
<source>Detach X2Go window</source>
<translation>Abrir nueva ventana X2go</translation>
</message>
<message>
<location filename="onmainwindow.cpp" line="573"/>
- <location filename="onmainwindow.cpp" line="10537"/>
+ <location filename="onmainwindow.cpp" line="10659"/>
<source>Minimize toolbar</source>
<translation>Minimar barra</translation>
</message>
<message>
<location filename="onmainwindow.cpp" line="683"/>
- <location filename="onmainwindow.cpp" line="1990"/>
- <location filename="onmainwindow.cpp" line="7405"/>
+ <location filename="onmainwindow.cpp" line="1991"/>
+ <location filename="onmainwindow.cpp" line="7542"/>
<source>Session:</source>
<translation>Sesión:</translation>
</message>
@@ -914,57 +914,57 @@
</message>
<message>
<location filename="onmainwindow.cpp" line="872"/>
- <location filename="onmainwindow.cpp" line="1983"/>
- <location filename="onmainwindow.cpp" line="7398"/>
- <location filename="onmainwindow.cpp" line="9862"/>
+ <location filename="onmainwindow.cpp" line="1984"/>
+ <location filename="onmainwindow.cpp" line="7535"/>
+ <location filename="onmainwindow.cpp" line="9984"/>
<source>Login:</source>
<translation>Usuario:</translation>
</message>
<message>
<location filename="onmainwindow.cpp" line="893"/>
<location filename="onmainwindow.cpp" line="921"/>
- <location filename="onmainwindow.cpp" line="1665"/>
- <location filename="onmainwindow.cpp" line="1694"/>
- <location filename="onmainwindow.cpp" line="1702"/>
- <location filename="onmainwindow.cpp" line="1848"/>
- <location filename="onmainwindow.cpp" line="1875"/>
- <location filename="onmainwindow.cpp" line="1878"/>
- <location filename="onmainwindow.cpp" line="2125"/>
- <location filename="onmainwindow.cpp" line="2348"/>
- <location filename="onmainwindow.cpp" line="2362"/>
- <location filename="onmainwindow.cpp" line="2375"/>
- <location filename="onmainwindow.cpp" line="2409"/>
- <location filename="onmainwindow.cpp" line="2454"/>
- <location filename="onmainwindow.cpp" line="3198"/>
- <location filename="onmainwindow.cpp" line="3376"/>
- <location filename="onmainwindow.cpp" line="3385"/>
- <location filename="onmainwindow.cpp" line="3701"/>
- <location filename="onmainwindow.cpp" line="4179"/>
- <location filename="onmainwindow.cpp" line="4256"/>
- <location filename="onmainwindow.cpp" line="4320"/>
- <location filename="onmainwindow.cpp" line="4353"/>
- <location filename="onmainwindow.cpp" line="4397"/>
- <location filename="onmainwindow.cpp" line="4800"/>
- <location filename="onmainwindow.cpp" line="4826"/>
- <location filename="onmainwindow.cpp" line="4976"/>
- <location filename="onmainwindow.cpp" line="5775"/>
- <location filename="onmainwindow.cpp" line="5811"/>
- <location filename="onmainwindow.cpp" line="6536"/>
- <location filename="onmainwindow.cpp" line="6617"/>
- <location filename="onmainwindow.cpp" line="6861"/>
- <location filename="onmainwindow.cpp" line="6989"/>
- <location filename="onmainwindow.cpp" line="7042"/>
- <location filename="onmainwindow.cpp" line="7348"/>
- <location filename="onmainwindow.cpp" line="7350"/>
- <location filename="onmainwindow.cpp" line="7581"/>
- <location filename="onmainwindow.cpp" line="7629"/>
- <location filename="onmainwindow.cpp" line="7657"/>
- <location filename="onmainwindow.cpp" line="8097"/>
- <location filename="onmainwindow.cpp" line="8112"/>
- <location filename="onmainwindow.cpp" line="8166"/>
- <location filename="onmainwindow.cpp" line="8194"/>
- <location filename="onmainwindow.cpp" line="8219"/>
- <location filename="onmainwindow.cpp" line="10453"/>
+ <location filename="onmainwindow.cpp" line="1666"/>
+ <location filename="onmainwindow.cpp" line="1695"/>
+ <location filename="onmainwindow.cpp" line="1703"/>
+ <location filename="onmainwindow.cpp" line="1849"/>
+ <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
+ <location filename="onmainwindow.cpp" line="2354"/>
+ <location filename="onmainwindow.cpp" line="2368"/>
+ <location filename="onmainwindow.cpp" line="2381"/>
+ <location filename="onmainwindow.cpp" line="2415"/>
+ <location filename="onmainwindow.cpp" line="2460"/>
+ <location filename="onmainwindow.cpp" line="3318"/>
+ <location filename="onmainwindow.cpp" line="3496"/>
+ <location filename="onmainwindow.cpp" line="3505"/>
+ <location filename="onmainwindow.cpp" line="3821"/>
+ <location filename="onmainwindow.cpp" line="4299"/>
+ <location filename="onmainwindow.cpp" line="4376"/>
+ <location filename="onmainwindow.cpp" line="4440"/>
+ <location filename="onmainwindow.cpp" line="4473"/>
+ <location filename="onmainwindow.cpp" line="4517"/>
+ <location filename="onmainwindow.cpp" line="4920"/>
+ <location filename="onmainwindow.cpp" line="4946"/>
+ <location filename="onmainwindow.cpp" line="5096"/>
+ <location filename="onmainwindow.cpp" line="5898"/>
+ <location filename="onmainwindow.cpp" line="5934"/>
+ <location filename="onmainwindow.cpp" line="6670"/>
+ <location filename="onmainwindow.cpp" line="6754"/>
+ <location filename="onmainwindow.cpp" line="6998"/>
+ <location filename="onmainwindow.cpp" line="7126"/>
+ <location filename="onmainwindow.cpp" line="7179"/>
+ <location filename="onmainwindow.cpp" line="7485"/>
+ <location filename="onmainwindow.cpp" line="7487"/>
+ <location filename="onmainwindow.cpp" line="7718"/>
+ <location filename="onmainwindow.cpp" line="7766"/>
+ <location filename="onmainwindow.cpp" line="7794"/>
+ <location filename="onmainwindow.cpp" line="8234"/>
+ <location filename="onmainwindow.cpp" line="8250"/>
+ <location filename="onmainwindow.cpp" line="8305"/>
+ <location filename="onmainwindow.cpp" line="8333"/>
+ <location filename="onmainwindow.cpp" line="8358"/>
+ <location filename="onmainwindow.cpp" line="10575"/>
<source>Error</source>
<translation>Error</translation>
</message>
@@ -985,8 +985,8 @@
</message>
<message>
<location filename="onmainwindow.cpp" line="925"/>
- <location filename="onmainwindow.cpp" line="2563"/>
- <location filename="onmainwindow.cpp" line="10707"/>
+ <location filename="onmainwindow.cpp" line="2569"/>
+ <location filename="onmainwindow.cpp" line="10829"/>
<source>Connecting to broker</source>
<translation>Conectando al broker</translation>
</message>
@@ -1002,7 +1002,7 @@
</message>
<message>
<location filename="onmainwindow.cpp" line="1012"/>
- <location filename="onmainwindow.cpp" line="5081"/>
+ <location filename="onmainwindow.cpp" line="5201"/>
<source>Not connected</source>
<translation>No conectado</translation>
</message>
@@ -1067,24 +1067,24 @@
<translation>Botón izquierdo del ratón para ocultar/restaurar - Botón derecho del ratón para mostrar el menú contextual</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1666"/>
- <location filename="onmainwindow.cpp" line="1849"/>
- <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="1667"/>
+ <location filename="onmainwindow.cpp" line="1850"/>
+ <location filename="onmainwindow.cpp" line="1880"/>
<source>Please check LDAP settings</source>
<translation>Comprueba los datos de conexión LDAP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1701"/>
+ <location filename="onmainwindow.cpp" line="1702"/>
<source>no X2Go server found in LDAP </source>
<translation>no se encontró ningún servidor X2Go en el LDAP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2013"/>
+ <location filename="onmainwindow.cpp" line="2014"/>
<source>Create session icon on desktop</source>
<translation>Crear icono de sesión en el escritorio</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2014"/>
+ <location filename="onmainwindow.cpp" line="2015"/>
<source>Desktop icons can be configured not to show x2goclient (hidden mode). If you like to use this feature you'll need to configure login by a gpg key or gpg smart card.
Use x2goclient hidden mode?</source>
@@ -1092,288 +1092,298 @@ Use x2goclient hidden mode?</source>
¿Usar el cliente x2go en modo oculto?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2025"/>
+ <location filename="onmainwindow.cpp" line="2026"/>
<source>New Session</source>
<translation>Nueva sesión</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2075"/>
+ <location filename="onmainwindow.cpp" line="2081"/>
<source>X2Go Link to session </source>
<translation>Enlace a la sesión X2go </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2125"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
<source>X2Go sessions not found</source>
<translation>No se encontró ninguna sesión X2Go</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2273"/>
+ <location filename="onmainwindow.cpp" line="2279"/>
<source>Are you sure you want to delete this session?</source>
<translation>¿Eliminar esta sesión?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2581"/>
- <location filename="onmainwindow.cpp" line="5610"/>
+ <location filename="onmainwindow.cpp" line="2587"/>
+ <location filename="onmainwindow.cpp" line="5733"/>
<source>KDE</source>
<translation>KDE</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2646"/>
+ <location filename="onmainwindow.cpp" line="2652"/>
<source>RDP connection</source>
<translation>Conexión RDP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2650"/>
+ <location filename="onmainwindow.cpp" line="2656"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2654"/>
+ <location filename="onmainwindow.cpp" line="2660"/>
<source>Connection to local desktop</source>
<translation>Conectar al escritorio local</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2658"/>
+ <location filename="onmainwindow.cpp" line="2664"/>
<source> on </source>
<translation> on </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2864"/>
+ <location filename="onmainwindow.cpp" line="2851"/>
+ <source>Enter passphrase to decrypt a key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="2879"/>
<source>Host key for server changed.
It is now: </source>
<translation>La clave del servidor ha cambiado.
Ahora es: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2865"/>
+ <location filename="onmainwindow.cpp" line="2880"/>
<source>For security reasons, connection will be stopped</source>
<translation>Se ha detenido la conexión por razones de seguridad</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2876"/>
+ <location filename="onmainwindow.cpp" line="2893"/>
<source>The host key for this server was not found but an othertype of key exists.An attacker might change the default server key toconfuse your client into thinking the key does not exist</source>
<translation>No se ha encontrado la clave para este servidor aunque se han econtrado otras. Un hacker podrÃa cambiar la clave por defecto del servidor para hacer creer al cliente que la clave no existe</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2898"/>
+ <location filename="onmainwindow.cpp" line="2919"/>
<source>Could not find known host file.If you accept the host key here, the file will be automatically created</source>
<translation>No se encontró el archivos de claves en este equipo. Si aceptas se creará en nuevo archivo de claves</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2903"/>
+ <location filename="onmainwindow.cpp" line="2924"/>
<source>The server is unknown. Do you trust the host key?
Public key hash: </source>
<translation>Este servidor es desconocido. ¿Confiar en su clave?
Hash de su clave pública: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2907"/>
- <location filename="onmainwindow.cpp" line="2915"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2938"/>
<source>Host key verification failed</source>
<translation>Falló la comprobación de la clave del equipo</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2907"/>
- <location filename="onmainwindow.cpp" line="4105"/>
- <location filename="onmainwindow.cpp" line="4125"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4245"/>
<source>Yes</source>
<translation>Si</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2907"/>
- <location filename="onmainwindow.cpp" line="4106"/>
- <location filename="onmainwindow.cpp" line="4126"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4226"/>
+ <location filename="onmainwindow.cpp" line="4246"/>
<source>No</source>
<translation>No</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2931"/>
+ <location filename="onmainwindow.cpp" line="2955"/>
<source>Authentication failed</source>
<translation>Falló la autenticación</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3191"/>
- <location filename="onmainwindow.cpp" line="4249"/>
- <location filename="onmainwindow.cpp" line="4346"/>
- <location filename="onmainwindow.cpp" line="4379"/>
- <location filename="onmainwindow.cpp" line="6529"/>
- <location filename="onmainwindow.cpp" line="6610"/>
- <location filename="onmainwindow.cpp" line="6982"/>
- <location filename="onmainwindow.cpp" line="7035"/>
- <location filename="onmainwindow.cpp" line="8090"/>
+ <location filename="onmainwindow.cpp" line="3290"/>
+ <source>Enter passwort for SSH proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="3311"/>
+ <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4466"/>
+ <location filename="onmainwindow.cpp" line="4499"/>
+ <location filename="onmainwindow.cpp" line="6663"/>
+ <location filename="onmainwindow.cpp" line="6747"/>
+ <location filename="onmainwindow.cpp" line="7119"/>
+ <location filename="onmainwindow.cpp" line="7172"/>
+ <location filename="onmainwindow.cpp" line="8227"/>
<source><b>Connection failed</b>
</source>
<translation><b>Error en la conexión</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3194"/>
- <location filename="onmainwindow.cpp" line="4252"/>
- <location filename="onmainwindow.cpp" line="4349"/>
- <location filename="onmainwindow.cpp" line="5772"/>
- <location filename="onmainwindow.cpp" line="5808"/>
- <location filename="onmainwindow.cpp" line="6532"/>
- <location filename="onmainwindow.cpp" line="6613"/>
- <location filename="onmainwindow.cpp" line="6985"/>
- <location filename="onmainwindow.cpp" line="7038"/>
- <location filename="onmainwindow.cpp" line="8093"/>
+ <location filename="onmainwindow.cpp" line="3314"/>
+ <location filename="onmainwindow.cpp" line="4372"/>
+ <location filename="onmainwindow.cpp" line="4469"/>
+ <location filename="onmainwindow.cpp" line="5895"/>
+ <location filename="onmainwindow.cpp" line="5931"/>
+ <location filename="onmainwindow.cpp" line="6666"/>
+ <location filename="onmainwindow.cpp" line="6750"/>
+ <location filename="onmainwindow.cpp" line="7122"/>
+ <location filename="onmainwindow.cpp" line="7175"/>
+ <location filename="onmainwindow.cpp" line="8230"/>
<source><b>Wrong password!</b><br><br></source>
<translation><b>Contraseña incorrecta</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3310"/>
+ <location filename="onmainwindow.cpp" line="3430"/>
<source>unknown</source>
<translation>desconocido</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3377"/>
+ <location filename="onmainwindow.cpp" line="3497"/>
<source>No server availabel</source>
<translation>Servidor no disponible</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3386"/>
- <location filename="onmainwindow.cpp" line="3702"/>
- <location filename="onmainwindow.cpp" line="4180"/>
- <location filename="onmainwindow.cpp" line="4321"/>
+ <location filename="onmainwindow.cpp" line="3506"/>
+ <location filename="onmainwindow.cpp" line="3822"/>
+ <location filename="onmainwindow.cpp" line="4300"/>
+ <location filename="onmainwindow.cpp" line="4441"/>
<source>Server not availabel</source>
<translation>Servidor no disponible</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3932"/>
- <location filename="onmainwindow.cpp" line="10225"/>
+ <location filename="onmainwindow.cpp" line="4052"/>
+ <location filename="onmainwindow.cpp" line="10347"/>
<source>Select session:</source>
<translation>Seleccionar sesión:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3948"/>
- <location filename="onmainwindow.cpp" line="4042"/>
- <location filename="onmainwindow.cpp" line="5203"/>
+ <location filename="onmainwindow.cpp" line="4068"/>
+ <location filename="onmainwindow.cpp" line="4162"/>
+ <location filename="onmainwindow.cpp" line="5326"/>
<source>running</source>
<translation>activa</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3950"/>
- <location filename="onmainwindow.cpp" line="4268"/>
+ <location filename="onmainwindow.cpp" line="4070"/>
+ <location filename="onmainwindow.cpp" line="4388"/>
<source>suspended</source>
<translation>suspendida</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3956"/>
+ <location filename="onmainwindow.cpp" line="4076"/>
<source>Desktop</source>
<translation>Escritorio</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3958"/>
+ <location filename="onmainwindow.cpp" line="4078"/>
<source>single application</source>
<translation>aplicación</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3960"/>
+ <location filename="onmainwindow.cpp" line="4080"/>
<source>shadow session</source>
<translation>sesión tipo shadow</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3993"/>
+ <location filename="onmainwindow.cpp" line="4113"/>
<source>Information</source>
<translation>Información</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3994"/>
+ <location filename="onmainwindow.cpp" line="4114"/>
<source>No accessible desktop found</source>
<translation>No se encontró ningún escritorio al que conectarse</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4007"/>
- <location filename="onmainwindow.cpp" line="10638"/>
+ <location filename="onmainwindow.cpp" line="4127"/>
+ <location filename="onmainwindow.cpp" line="10760"/>
<source>Filter</source>
<translation>Filtro</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4014"/>
+ <location filename="onmainwindow.cpp" line="4134"/>
<source>Select desktop:</source>
<translation>Elige escritorio:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4092"/>
- <location filename="onmainwindow.cpp" line="4112"/>
- <location filename="onmainwindow.cpp" line="5006"/>
- <location filename="onmainwindow.cpp" line="5415"/>
+ <location filename="onmainwindow.cpp" line="4212"/>
+ <location filename="onmainwindow.cpp" line="4232"/>
+ <location filename="onmainwindow.cpp" line="5126"/>
+ <location filename="onmainwindow.cpp" line="5538"/>
<source>Warning</source>
<translation>Atención</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4093"/>
- <location filename="onmainwindow.cpp" line="4113"/>
+ <location filename="onmainwindow.cpp" line="4213"/>
+ <location filename="onmainwindow.cpp" line="4233"/>
<source>Your current color depth is different to the color depth of your x2go-session. 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>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4101"/>
+ <location filename="onmainwindow.cpp" line="4221"/>
<source>24 or 32</source>
<translation>24 o 32</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4102"/>
- <location filename="onmainwindow.cpp" line="4122"/>
+ <location filename="onmainwindow.cpp" line="4222"/>
+ <location filename="onmainwindow.cpp" line="4242"/>
<source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source>
<translation> bit y reiniciar tu servidor X antes de reconectar a esta sesión x2go. <br>¿Recuperar esta sesión?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4206"/>
+ <location filename="onmainwindow.cpp" line="4326"/>
<source>suspending</source>
<translation>suspendiendo</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4235"/>
+ <location filename="onmainwindow.cpp" line="4355"/>
<source>terminating</source>
<translation>terminando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4382"/>
+ <location filename="onmainwindow.cpp" line="4502"/>
<source><b>Wrong Password!</b><br><br></source>
<translation><b>¡Contraseña incorrecta!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4798"/>
- <location filename="onmainwindow.cpp" line="6859"/>
+ <location filename="onmainwindow.cpp" line="4918"/>
+ <location filename="onmainwindow.cpp" line="6996"/>
<source>Unable to create folder:</source>
<translation>No se ha podido crear la carpeta:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4824"/>
+ <location filename="onmainwindow.cpp" line="4944"/>
<source>Unable to write file:</source>
<translation>No se ha podido guardar el archivo:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4948"/>
- <location filename="onmainwindow.cpp" line="9462"/>
+ <location filename="onmainwindow.cpp" line="5068"/>
+ <location filename="onmainwindow.cpp" line="9601"/>
<source>Attach X2Go window</source>
<translation>Añadir ventana X2Go</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4974"/>
- <location filename="onmainwindow.cpp" line="8164"/>
+ <location filename="onmainwindow.cpp" line="5094"/>
+ <location filename="onmainwindow.cpp" line="8303"/>
<source>Unable to create SSL tunnel:
</source>
<translation>No fue posible crear el tunel SSL:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5004"/>
+ <location filename="onmainwindow.cpp" line="5124"/>
<source>Unable to create SSL Tunnel:
</source>
<translation>No fue posible crear el tunel SSL:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5168"/>
+ <location filename="onmainwindow.cpp" line="5291"/>
<source>Finished</source>
<translation>Finalizada</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5192"/>
+ <location filename="onmainwindow.cpp" line="5315"/>
<source>starting</source>
<translation>iniciando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5196"/>
+ <location filename="onmainwindow.cpp" line="5319"/>
<source>resuming</source>
<translatorcomment>Not sure if trying to connect to a resumed session or the running session is being resumed.
@@ -1382,46 +1392,46 @@ Current translation is for trying to connect a resumed session. If not wil be be
<translation>restaurando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5259"/>
- <location filename="onmainwindow.cpp" line="5532"/>
- <location filename="onmainwindow.cpp" line="5551"/>
+ <location filename="onmainwindow.cpp" line="5382"/>
+ <location filename="onmainwindow.cpp" line="5655"/>
+ <location filename="onmainwindow.cpp" line="5674"/>
<source>Connection timeout, aborting</source>
<translation>Tiempo de conexión finalizado. Cancelando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5260"/>
+ <location filename="onmainwindow.cpp" line="5383"/>
<source>aborting</source>
<translation>cancelando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5416"/>
+ <location filename="onmainwindow.cpp" line="5539"/>
<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="onmainwindow.cpp" line="5500"/>
+ <location filename="onmainwindow.cpp" line="5623"/>
<source>Session</source>
<translation>Sesión</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5502"/>
- <location filename="onmainwindow.cpp" line="10306"/>
- <location filename="onmainwindow.cpp" line="10328"/>
+ <location filename="onmainwindow.cpp" line="5625"/>
+ <location filename="onmainwindow.cpp" line="10428"/>
+ <location filename="onmainwindow.cpp" line="10450"/>
<source>Display</source>
<translation>Monitor</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5504"/>
- <location filename="onmainwindow.cpp" line="10317"/>
+ <location filename="onmainwindow.cpp" line="5627"/>
+ <location filename="onmainwindow.cpp" line="10439"/>
<source>Creation time</source>
<translatorcomment>Not sure if "creation time" means the date the session was created</translatorcomment>
<translation>Sesión creada en</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5769"/>
- <location filename="onmainwindow.cpp" line="5805"/>
+ <location filename="onmainwindow.cpp" line="5892"/>
+ <location filename="onmainwindow.cpp" line="5928"/>
<source><b>Connection failed</b>
:
</source>
@@ -1429,296 +1439,296 @@ Los documentos no guardados se perderán</translation>
:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6166"/>
+ <location filename="onmainwindow.cpp" line="6300"/>
<source> (can't open file)</source>
<translation> (no se puede abrir el archivo)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6177"/>
- <location filename="onmainwindow.cpp" line="6187"/>
- <location filename="onmainwindow.cpp" line="6197"/>
+ <location filename="onmainwindow.cpp" line="6311"/>
+ <location filename="onmainwindow.cpp" line="6321"/>
+ <location filename="onmainwindow.cpp" line="6331"/>
<source> (file not exists)</source>
<translation> (el archivo no existe)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6221"/>
+ <location filename="onmainwindow.cpp" line="6355"/>
<source> (directory not exists)</source>
<translation> (la carpeta no existe)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6249"/>
+ <location filename="onmainwindow.cpp" line="6383"/>
<source>wrong value for argument"--link"</source>
<translation>valor incorrecto para el argumento "--link"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6267"/>
+ <location filename="onmainwindow.cpp" line="6401"/>
<source>wrong value for argument"--sound"</source>
<translation>valor incorrecto para el argumento "--sound"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6284"/>
- <location filename="onmainwindow.cpp" line="6295"/>
+ <location filename="onmainwindow.cpp" line="6418"/>
+ <location filename="onmainwindow.cpp" line="6429"/>
<source>wrong value for argument"--geometry"</source>
<translation>valor incorrecto para el argumento "--geometry"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6313"/>
+ <location filename="onmainwindow.cpp" line="6447"/>
<source>wrong value for argument"--set-kbd"</source>
<translation>valor incorrecto para el argumento "--set-kdb"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6330"/>
+ <location filename="onmainwindow.cpp" line="6464"/>
<source>wrong value for argument"--ldap"</source>
<translation>valor incorrecto para el argumento "--ldap"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6352"/>
+ <location filename="onmainwindow.cpp" line="6486"/>
<source>wrong value for argument"--ldap1"</source>
<translation>valor incorrecto para el argumento "--ldap1"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6371"/>
+ <location filename="onmainwindow.cpp" line="6505"/>
<source>wrong value for argument"--ldap2"</source>
<translation>valor incorrecto para el argumento "--ldap2"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6425"/>
+ <location filename="onmainwindow.cpp" line="6559"/>
<source>wrong value for argument"--pack"</source>
<translation>valor incorrecto para el argumento "--pack"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6433"/>
- <location filename="onmainwindow.cpp" line="6436"/>
+ <location filename="onmainwindow.cpp" line="6567"/>
+ <location filename="onmainwindow.cpp" line="6570"/>
<source>wrong parameter: </source>
<translation>parámetro incorrecto:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6487"/>
- <location filename="onmainwindow.cpp" line="6513"/>
+ <location filename="onmainwindow.cpp" line="6621"/>
+ <location filename="onmainwindow.cpp" line="6647"/>
<source>Options</source>
<translation>Opciones</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6492"/>
+ <location filename="onmainwindow.cpp" line="6626"/>
<source>Available pack methodes:</source>
<translation>Métodos disponibles:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7280"/>
+ <location filename="onmainwindow.cpp" line="7417"/>
<source>Support</source>
<translation>Soporte</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7285"/>
+ <location filename="onmainwindow.cpp" line="7422"/>
<source></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></source>
<translation></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7289"/>
+ <location filename="onmainwindow.cpp" line="7426"/>
<source><br>x2goplugin 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="onmainwindow.cpp" line="7293"/>
+ <location filename="onmainwindow.cpp" line="7430"/>
<source><br>Client for use with 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 fullscreen loginscreen (replacement for loginmanager like xdm). Please visit x2go.org for further information.</source>
<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 de sesión como xdm). Visita x2go.org para más información.</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7306"/>
+ <location filename="onmainwindow.cpp" line="7443"/>
<source><b>X2Go client V. </source>
<translation><b>cliente X2Go v. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7351"/>
+ <location filename="onmainwindow.cpp" line="7488"/>
<source>Please check LDAP Settings</source>
<translation>Revisa las opciones acceso a LDAP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7582"/>
+ <location filename="onmainwindow.cpp" line="7719"/>
<source>No valid card found</source>
<translation>No se encontró una semart card válida</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7630"/>
+ <location filename="onmainwindow.cpp" line="7767"/>
<source>This card is unknown by X2Go system</source>
<translation>El sistema C2Go no reconocoe esta smart card</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7658"/>
+ <location filename="onmainwindow.cpp" line="7795"/>
<source>Unable to create file: </source>
<translation>Impoble crear el archivo:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7926"/>
+ <location filename="onmainwindow.cpp" line="8063"/>
<source>Can't connect to X server
Please check your settings</source>
<translation>No se puede conectar con el servidor X
Comprueba los datos de configuración</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7927"/>
+ <location filename="onmainwindow.cpp" line="8064"/>
<source>Can't start X server
Please check your settings</source>
<translation>No se puede iniciar el servidor X
Comprueba los datos de configuración</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7941"/>
- <location filename="onmainwindow.cpp" line="8587"/>
- <location filename="onmainwindow.cpp" line="8615"/>
+ <location filename="onmainwindow.cpp" line="8078"/>
+ <location filename="onmainwindow.cpp" line="8726"/>
+ <location filename="onmainwindow.cpp" line="8754"/>
<source>Can't start X Server
Please check your installation</source>
<translation>No se puede iniciar el servidor X
Comprueba la instalación del sistema</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8113"/>
+ <location filename="onmainwindow.cpp" line="8251"/>
<source>Unable to execute: </source>
<translation>Imposible ejecutar el comando: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8129"/>
+ <location filename="onmainwindow.cpp" line="8268"/>
<source>Remote server does not support file system export through SSH Tunnel
Please update to a newer x2goserver package</source>
<translation>El servidor remoto no soporta el sistema de archivos exportado a través del tunel SSH
Actualiza el paquete x2goserver en el servidor</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8193"/>
+ <location filename="onmainwindow.cpp" line="8332"/>
<source>Unable to read :
</source>
<translation>Imposible leer:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8218"/>
+ <location filename="onmainwindow.cpp" line="8357"/>
<source>Unable to write :
</source>
<translation>Imposible escribir:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8306"/>
+ <location filename="onmainwindow.cpp" line="8445"/>
<source>WINDOWS-1252</source>
<translation>WINDOWS-1252</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8318"/>
+ <location filename="onmainwindow.cpp" line="8457"/>
<source>ISO8859-1</source>
<translation>ISO8859-1</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9551"/>
+ <location filename="onmainwindow.cpp" line="9689"/>
<source>X2Go Session</source>
<translation>Sesión X2Go</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9733"/>
+ <location filename="onmainwindow.cpp" line="9871"/>
<source>wrong value for argument"speed"</source>
<translation>valor incorrecto para el argumento "velocidad"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9863"/>
+ <location filename="onmainwindow.cpp" line="9985"/>
<source>Password:</source>
<translation>Contraseña:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9864"/>
+ <location filename="onmainwindow.cpp" line="9986"/>
<source>Keyboard layout:</source>
<translation>Tipo de teclado:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9905"/>
+ <location filename="onmainwindow.cpp" line="10027"/>
<source>Ok</source>
<translation>Ok</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9907"/>
- <location filename="onmainwindow.cpp" line="10229"/>
- <location filename="onmainwindow.cpp" line="10231"/>
+ <location filename="onmainwindow.cpp" line="10029"/>
+ <location filename="onmainwindow.cpp" line="10351"/>
+ <location filename="onmainwindow.cpp" line="10353"/>
<source>Cancel</source>
<translation>Cancelar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10044"/>
+ <location filename="onmainwindow.cpp" line="10166"/>
<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="onmainwindow.cpp" line="10054"/>
+ <location filename="onmainwindow.cpp" line="10176"/>
<source>Applications...</source>
<translation>Aplicaciones...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10067"/>
+ <location filename="onmainwindow.cpp" line="10189"/>
<source>Abort</source>
<translation>Cancelar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10079"/>
+ <location filename="onmainwindow.cpp" line="10201"/>
<source>Show details</source>
<translation>Mostrar detalles</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10227"/>
+ <location filename="onmainwindow.cpp" line="10349"/>
<source>Resume</source>
<translation>Desconectar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10239"/>
+ <location filename="onmainwindow.cpp" line="10361"/>
<source>New</source>
<translation>Nueva</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10242"/>
+ <location filename="onmainwindow.cpp" line="10364"/>
<source>Full access</source>
<translation>Acceso completo</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10245"/>
+ <location filename="onmainwindow.cpp" line="10367"/>
<source>View only</source>
<translation>Sólo ver</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10308"/>
+ <location filename="onmainwindow.cpp" line="10430"/>
<source>Status</source>
<translation>Estado</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10310"/>
+ <location filename="onmainwindow.cpp" line="10432"/>
<source>Command</source>
<translation>Comando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10312"/>
+ <location filename="onmainwindow.cpp" line="10434"/>
<source>Type</source>
<translation>Tipo</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10314"/>
+ <location filename="onmainwindow.cpp" line="10436"/>
<source>Server</source>
<translation>Servidor</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10319"/>
+ <location filename="onmainwindow.cpp" line="10441"/>
<source>Client IP</source>
<translation>IP del cliente</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10321"/>
+ <location filename="onmainwindow.cpp" line="10443"/>
<source>Session ID</source>
<translation>ID de la Sesión</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10325"/>
+ <location filename="onmainwindow.cpp" line="10447"/>
<source>User</source>
<translation>Usuario</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10356"/>
+ <location filename="onmainwindow.cpp" line="10478"/>
<source>Only my desktops</source>
<translation>Sólo mis escritorios</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10454"/>
+ <location filename="onmainwindow.cpp" line="10576"/>
<source>sshd not started, you'll need sshd for printing and file sharing
you can install sshd with
<b>sudo apt-get install openssh-server</b></source>
@@ -1727,12 +1737,12 @@ puedes instalar sshd con
<b>sudo apt-get install openssh-server</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10525"/>
+ <location filename="onmainwindow.cpp" line="10647"/>
<source>Restore toolbar</source>
<translation>Restaurar barra de herramientas</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10570"/>
+ <location filename="onmainwindow.cpp" line="10692"/>
<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>
@@ -2109,170 +2119,226 @@ Ejemplo:
<context>
<name>SessionWidget</name>
<message>
- <location filename="sessionwidget.cpp" line="52"/>
+ <location filename="sessionwidget.cpp" line="55"/>
<source>Session name:</source>
<translation>Nombre de la sesión:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="57"/>
+ <location filename="sessionwidget.cpp" line="60"/>
<source><< change icon</source>
<translation><< cambiar icono</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="60"/>
+ <location filename="sessionwidget.cpp" line="63"/>
<source>&Server</source>
<translation>&Servidor</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="93"/>
+ <location filename="sessionwidget.cpp" line="96"/>
+ <location filename="sessionwidget.cpp" line="154"/>
<source>Host:</source>
<translation>Host:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="94"/>
+ <location filename="sessionwidget.cpp" line="97"/>
+ <location filename="sessionwidget.cpp" line="160"/>
<source>Login:</source>
<translation>Usuario:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="95"/>
- <location filename="sessionwidget.cpp" line="237"/>
+ <location filename="sessionwidget.cpp" line="98"/>
+ <location filename="sessionwidget.cpp" line="360"/>
<source>SSH port:</source>
<translation>Puerto SSH:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="110"/>
+ <location filename="sessionwidget.cpp" line="113"/>
<source>Use RSA/DSA key for ssh connection:</source>
<translation>Usar claves RSA/DSA para la conexión ssh:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="117"/>
+ <location filename="sessionwidget.cpp" line="120"/>
<source>Try auto login (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="sessionwidget.cpp" line="118"/>
+ <location filename="sessionwidget.cpp" line="121"/>
<source>Kerberos 5 (GSSAPI) authentication</source>
<translation>Autenticación Kerberos 5 (GSSAPI)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="123"/>
+ <location filename="sessionwidget.cpp" line="124"/>
+ <source>Use Proxy server for SSH connection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="125"/>
+ <source>Proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="131"/>
+ <source>SSH</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="132"/>
+ <source>HTTP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="140"/>
+ <source>Same login as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="142"/>
+ <source>Same password as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="144"/>
+ <source>RSA/DSA key:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="149"/>
+ <source>ssh-agent or default ssh key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="151"/>
+ <source>Type:</source>
+ <translation type="unfinished">Tipo:</translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="155"/>
+ <source>Port:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="170"/>
<source>&Session type</source>
<translation>Tipo de &sesión</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="128"/>
+ <location filename="sessionwidget.cpp" line="175"/>
<source>Session type:</source>
<translation>Tipo de sesión:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="138"/>
- <location filename="sessionwidget.cpp" line="361"/>
+ <location filename="sessionwidget.cpp" line="185"/>
+ <location filename="sessionwidget.cpp" line="484"/>
<source>Connect to Windows terminal server</source>
<translation>Conectar a Windows Terminal Server</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="139"/>
+ <location filename="sessionwidget.cpp" line="186"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="140"/>
+ <location filename="sessionwidget.cpp" line="187"/>
<source>Connect to local desktop</source>
<translation>Conectar al escritorio local</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="141"/>
+ <location filename="sessionwidget.cpp" line="188"/>
<source>Custom desktop</source>
<translation>Escritorio personalizado</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="142"/>
+ <location filename="sessionwidget.cpp" line="189"/>
<source>Single application</source>
<translation>Aplicación</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="143"/>
+ <location filename="sessionwidget.cpp" line="190"/>
<source>Published applications</source>
<translation>Aplicaciones publicadas</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="145"/>
- <location filename="sessionwidget.cpp" line="305"/>
+ <location filename="sessionwidget.cpp" line="192"/>
+ <location filename="sessionwidget.cpp" line="428"/>
<source>Command:</source>
<translation>Comando:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="146"/>
+ <location filename="sessionwidget.cpp" line="193"/>
<source>Advanced options...</source>
<translation>Opciones avanzadas...</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="158"/>
- <location filename="sessionwidget.cpp" line="523"/>
- <location filename="sessionwidget.cpp" line="597"/>
+ <location filename="sessionwidget.cpp" line="205"/>
+ <location filename="sessionwidget.cpp" line="713"/>
+ <location filename="sessionwidget.cpp" line="808"/>
<source>Path to executable</source>
<translation>Ruta al ejecutable</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="168"/>
+ <location filename="sessionwidget.cpp" line="215"/>
<source>Direct RDP Connection</source>
<translation>Conexión RDP directa</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="233"/>
+ <location filename="sessionwidget.cpp" line="356"/>
<source>RDP port:</source>
<translation>Puerto RDP:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="249"/>
+ <location filename="sessionwidget.cpp" line="372"/>
<source>Open picture</source>
<translation>Abrir imagen</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="251"/>
+ <location filename="sessionwidget.cpp" line="374"/>
<source>Pictures</source>
<translation>Imágenes</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="272"/>
+ <location filename="sessionwidget.cpp" line="283"/>
+ <location filename="sessionwidget.cpp" line="395"/>
<source>Open key file</source>
<translation>Archivo con la clave open</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="274"/>
+ <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="397"/>
<source>All files</source>
<translation>Todos los archivos</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="284"/>
+ <location filename="sessionwidget.cpp" line="295"/>
+ <location filename="sessionwidget.cpp" line="407"/>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="296"/>
+ <location filename="sessionwidget.cpp" line="408"/>
<source>x2goclient is running in portable mode. You should use a path on your usb device to be able to access your data whereever you are</source>
<translation>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="sessionwidget.cpp" line="332"/>
- <location filename="sessionwidget.cpp" line="478"/>
+ <location filename="sessionwidget.cpp" line="455"/>
+ <location filename="sessionwidget.cpp" line="668"/>
<source>Server:</source>
<translation>Servidor:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="341"/>
- <location filename="sessionwidget.cpp" line="490"/>
+ <location filename="sessionwidget.cpp" line="464"/>
+ <location filename="sessionwidget.cpp" line="680"/>
<source>XDMCP server:</source>
<translation>Servidor XDMCP:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="362"/>
+ <location filename="sessionwidget.cpp" line="485"/>
<source>rdesktop command line options:</source>
<translation>opciones de lÃnea de comando para rdesktop:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="375"/>
- <location filename="sessionwidget.cpp" line="502"/>
+ <location filename="sessionwidget.cpp" line="498"/>
+ <location filename="sessionwidget.cpp" line="692"/>
<source>New session</source>
<translation>Nueva sesión</translation>
</message>
@@ -2420,17 +2486,17 @@ el sonido en conexiones a través de firewalls</translation>
<translation>LÃnea de comando:</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="642"/>
+ <location filename="settingswidget.cpp" line="645"/>
<source>us</source>
<translation>us</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="643"/>
+ <location filename="settingswidget.cpp" line="646"/>
<source>pc105/us</source>
<translation>pc105/us</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="757"/>
+ <location filename="settingswidget.cpp" line="760"/>
<source>password</source>
<translation>contraseña</translation>
</message>
@@ -2519,82 +2585,103 @@ el sonido en conexiones a través de firewalls</translation>
<context>
<name>SshMasterConnection</name>
<message>
- <location filename="sshmasterconnection.cpp" line="133"/>
+ <location filename="sshmasterconnection.cpp" line="170"/>
+ <source>SSH proxy connection error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="175"/>
+ <location filename="sshmasterconnection.cpp" line="181"/>
+ <source>SSH proxy connection error: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="197"/>
+ <source>Failed to create SSH proxy tunnel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="265"/>
<source>Can not initialize libssh</source>
<translation>No se puede inicializar libssh</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="159"/>
+ <location filename="sshmasterconnection.cpp" line="291"/>
<source>Can not create ssh session</source>
<translation>No se puede crear la sesión ssh</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="177"/>
+ <location filename="sshmasterconnection.cpp" line="319"/>
+ <source>Can not connect to proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="340"/>
<source>Can not connect to </source>
<translation>No se puede conectar a </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="218"/>
+ <location filename="sshmasterconnection.cpp" line="394"/>
<source>Authentication failed</source>
<translation>Fallo de autenticación</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="244"/>
+ <location filename="sshmasterconnection.cpp" line="420"/>
<source>channel_forward_listen failed</source>
<translation>error en channel_forward_listen</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="560"/>
+ <location filename="sshmasterconnection.cpp" line="830"/>
<source>Can not open file </source>
<translation>No se puede abrir el archivo</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="572"/>
+ <location filename="sshmasterconnection.cpp" line="842"/>
<source>Can not create remote file </source>
<translation>No se puede crear el archivo remoto</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="585"/>
+ <location filename="sshmasterconnection.cpp" line="855"/>
<source>Can not write to remote file </source>
<translation>No se puede escribir en el archivo remoto</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="642"/>
+ <location filename="sshmasterconnection.cpp" line="912"/>
<source>can not connect to </source>
<translation>no se puede conectar a </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="751"/>
+ <location filename="sshmasterconnection.cpp" line="1029"/>
<source>channel_open_forward failed</source>
<translation>error en channel_open_forward</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="770"/>
+ <location filename="sshmasterconnection.cpp" line="1048"/>
<source>channel_open_session failed</source>
<translation>error en channel_open_session</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="777"/>
+ <location filename="sshmasterconnection.cpp" line="1055"/>
<source>channel_request_exec failed</source>
<translation>error en channel_request_exec</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="842"/>
+ <location filename="sshmasterconnection.cpp" line="1120"/>
<source>error writing to socket</source>
<translation>error escribiendo en el socket</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="860"/>
+ <location filename="sshmasterconnection.cpp" line="1138"/>
<source>error reading channel</source>
<translation>error leyendo el canal</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="890"/>
+ <location filename="sshmasterconnection.cpp" line="1168"/>
<source>channel_write failed</source>
<translation>error en channel_write</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="902"/>
+ <location filename="sshmasterconnection.cpp" line="1180"/>
<source>error reading tcp socket</source>
<translation>error leyendo el socket tcp</translation>
</message>
@@ -2602,12 +2689,12 @@ el sonido en conexiones a través de firewalls</translation>
<context>
<name>SshProcess</name>
<message>
- <location filename="sshprocess.cpp" line="97"/>
+ <location filename="sshprocess.cpp" line="112"/>
<source>Error creating socket</source>
<translation>Error creando el socket</translation>
</message>
<message>
- <location filename="sshprocess.cpp" line="115"/>
+ <location filename="sshprocess.cpp" line="130"/>
<source>Error binding </source>
<translation>Error rellenando </translation>
</message>
diff --git a/x2goclient_fr.ts b/x2goclient_fr.ts
index 8a6843d..ee93847 100644
--- a/x2goclient_fr.ts
+++ b/x2goclient_fr.ts
@@ -723,822 +723,832 @@
<context>
<name>ONMainWindow</name>
<message>
- <location filename="onmainwindow.cpp" line="90"/>
- <location filename="onmainwindow.cpp" line="6030"/>
+ <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="6188"/>
<source>us</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="91"/>
+ <location filename="onmainwindow.cpp" line="93"/>
<source>pc105/us</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="140"/>
+ <location filename="onmainwindow.cpp" line="141"/>
<source>X2Go client</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="157"/>
- <location filename="onmainwindow.cpp" line="2972"/>
- <location filename="onmainwindow.cpp" line="5167"/>
+ <location filename="onmainwindow.cpp" line="158"/>
+ <location filename="onmainwindow.cpp" line="2999"/>
+ <location filename="onmainwindow.cpp" line="5306"/>
<source>connecting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="164"/>
+ <location filename="onmainwindow.cpp" line="165"/>
<source>Internet browser</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="165"/>
+ <location filename="onmainwindow.cpp" line="166"/>
<source>Email client</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="166"/>
+ <location filename="onmainwindow.cpp" line="167"/>
<source>OpenOffice.org</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="167"/>
+ <location filename="onmainwindow.cpp" line="168"/>
<source>Terminal</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="342"/>
+ <location filename="onmainwindow.cpp" line="343"/>
<source>&Settings ...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="346"/>
+ <location filename="onmainwindow.cpp" line="347"/>
<source>Support ...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="353"/>
- <location filename="onmainwindow.cpp" line="7276"/>
+ <location filename="onmainwindow.cpp" line="354"/>
+ <location filename="onmainwindow.cpp" line="7442"/>
<source>About X2GO client</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="557"/>
- <location filename="onmainwindow.cpp" line="1038"/>
- <location filename="onmainwindow.cpp" line="10021"/>
+ <location filename="onmainwindow.cpp" line="558"/>
+ <location filename="onmainwindow.cpp" line="1039"/>
+ <location filename="onmainwindow.cpp" line="10183"/>
<source>Share folder...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="560"/>
- <location filename="onmainwindow.cpp" line="1039"/>
- <location filename="onmainwindow.cpp" line="5223"/>
- <location filename="onmainwindow.cpp" line="10194"/>
+ <location filename="onmainwindow.cpp" line="561"/>
+ <location filename="onmainwindow.cpp" line="1040"/>
+ <location filename="onmainwindow.cpp" line="5362"/>
+ <location filename="onmainwindow.cpp" line="10356"/>
<source>Suspend</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="563"/>
- <location filename="onmainwindow.cpp" line="1040"/>
- <location filename="onmainwindow.cpp" line="10034"/>
+ <location filename="onmainwindow.cpp" line="564"/>
+ <location filename="onmainwindow.cpp" line="1041"/>
<location filename="onmainwindow.cpp" line="10196"/>
+ <location filename="onmainwindow.cpp" line="10358"/>
<source>Terminate</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="565"/>
+ <location filename="onmainwindow.cpp" line="566"/>
<source>Reconnect</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="569"/>
- <location filename="onmainwindow.cpp" line="9447"/>
+ <location filename="onmainwindow.cpp" line="570"/>
+ <location filename="onmainwindow.cpp" line="9626"/>
<source>Detach X2Go window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="572"/>
- <location filename="onmainwindow.cpp" line="10497"/>
+ <location filename="onmainwindow.cpp" line="573"/>
+ <location filename="onmainwindow.cpp" line="10659"/>
<source>Minimize toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="682"/>
- <location filename="onmainwindow.cpp" line="1987"/>
- <location filename="onmainwindow.cpp" line="7376"/>
+ <location filename="onmainwindow.cpp" line="683"/>
+ <location filename="onmainwindow.cpp" line="1991"/>
+ <location filename="onmainwindow.cpp" line="7542"/>
<source>Session:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="734"/>
+ <location filename="onmainwindow.cpp" line="735"/>
<source>&Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="735"/>
+ <location filename="onmainwindow.cpp" line="736"/>
<source>Ctrl+Q</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="736"/>
- <location filename="onmainwindow.cpp" line="1057"/>
+ <location filename="onmainwindow.cpp" line="737"/>
+ <location filename="onmainwindow.cpp" line="1058"/>
<source>Quit</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="739"/>
+ <location filename="onmainwindow.cpp" line="740"/>
<source>&New session ...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="740"/>
+ <location filename="onmainwindow.cpp" line="741"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="745"/>
+ <location filename="onmainwindow.cpp" line="746"/>
<source>Session management...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="746"/>
+ <location filename="onmainwindow.cpp" line="747"/>
<source>Ctrl+E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="756"/>
+ <location filename="onmainwindow.cpp" line="757"/>
<source>&Create session icon on desktop...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="765"/>
+ <location filename="onmainwindow.cpp" line="766"/>
<source>&Set broker password...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="776"/>
+ <location filename="onmainwindow.cpp" line="777"/>
<source>&Connectivity test...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="783"/>
- <location filename="onmainwindow.cpp" line="804"/>
+ <location filename="onmainwindow.cpp" line="784"/>
+ <location filename="onmainwindow.cpp" line="805"/>
<source>Show toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="789"/>
+ <location filename="onmainwindow.cpp" line="790"/>
<source>About Qt</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="806"/>
+ <location filename="onmainwindow.cpp" line="807"/>
<source>Ctrl+Q</source>
<comment>exit</comment>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="812"/>
+ <location filename="onmainwindow.cpp" line="813"/>
<source>&Session</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="813"/>
+ <location filename="onmainwindow.cpp" line="814"/>
<source>&Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="832"/>
+ <location filename="onmainwindow.cpp" line="833"/>
<source>&Help</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="871"/>
- <location filename="onmainwindow.cpp" line="1980"/>
- <location filename="onmainwindow.cpp" line="7369"/>
- <location filename="onmainwindow.cpp" line="9822"/>
+ <location filename="onmainwindow.cpp" line="872"/>
+ <location filename="onmainwindow.cpp" line="1984"/>
+ <location filename="onmainwindow.cpp" line="7535"/>
+ <location filename="onmainwindow.cpp" line="9984"/>
<source>Login:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
+ <location filename="onmainwindow.cpp" line="893"/>
<source>Operation failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="896"/>
+ <location filename="onmainwindow.cpp" line="897"/>
<source>Password changed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="920"/>
+ <location filename="onmainwindow.cpp" line="921"/>
<source>Wrong password!</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="969"/>
+ <location filename="onmainwindow.cpp" line="970"/>
<source><b>Authentication</b></source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1009"/>
+ <location filename="onmainwindow.cpp" line="1010"/>
<source>Restore</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1011"/>
- <location filename="onmainwindow.cpp" line="5065"/>
+ <location filename="onmainwindow.cpp" line="1012"/>
+ <location filename="onmainwindow.cpp" line="5201"/>
<source>Not connected</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1013"/>
+ <location filename="onmainwindow.cpp" line="1014"/>
<source>Multimedia</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1015"/>
+ <location filename="onmainwindow.cpp" line="1016"/>
<source>Development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1017"/>
+ <location filename="onmainwindow.cpp" line="1018"/>
<source>Education</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1019"/>
+ <location filename="onmainwindow.cpp" line="1020"/>
<source>Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1021"/>
+ <location filename="onmainwindow.cpp" line="1022"/>
<source>Graphics</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1023"/>
+ <location filename="onmainwindow.cpp" line="1024"/>
<source>Network</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1025"/>
+ <location filename="onmainwindow.cpp" line="1026"/>
<source>Office</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1027"/>
+ <location filename="onmainwindow.cpp" line="1028"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1029"/>
+ <location filename="onmainwindow.cpp" line="1030"/>
<source>System</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1031"/>
+ <location filename="onmainwindow.cpp" line="1032"/>
<source>Utility</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1033"/>
+ <location filename="onmainwindow.cpp" line="1034"/>
<source>Other</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1068"/>
+ <location filename="onmainwindow.cpp" line="1069"/>
<source>Left mouse button to hide/restore - Right mouse button to display context menu</source>
<oldsource>Left click to open the X2GoClient window or right click to get the context menu.</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
- <location filename="onmainwindow.cpp" line="920"/>
- <location filename="onmainwindow.cpp" line="1662"/>
- <location filename="onmainwindow.cpp" line="1691"/>
- <location filename="onmainwindow.cpp" line="1699"/>
- <location filename="onmainwindow.cpp" line="1845"/>
- <location filename="onmainwindow.cpp" line="1872"/>
- <location filename="onmainwindow.cpp" line="1875"/>
- <location filename="onmainwindow.cpp" line="2122"/>
- <location filename="onmainwindow.cpp" line="2345"/>
- <location filename="onmainwindow.cpp" line="2359"/>
- <location filename="onmainwindow.cpp" line="2372"/>
- <location filename="onmainwindow.cpp" line="2406"/>
- <location filename="onmainwindow.cpp" line="2451"/>
- <location filename="onmainwindow.cpp" line="3195"/>
- <location filename="onmainwindow.cpp" line="3373"/>
- <location filename="onmainwindow.cpp" line="3382"/>
- <location filename="onmainwindow.cpp" line="3692"/>
- <location filename="onmainwindow.cpp" line="4169"/>
- <location filename="onmainwindow.cpp" line="4244"/>
- <location filename="onmainwindow.cpp" line="4307"/>
- <location filename="onmainwindow.cpp" line="4340"/>
- <location filename="onmainwindow.cpp" line="4384"/>
- <location filename="onmainwindow.cpp" line="4787"/>
- <location filename="onmainwindow.cpp" line="4813"/>
- <location filename="onmainwindow.cpp" line="4962"/>
- <location filename="onmainwindow.cpp" line="5746"/>
- <location filename="onmainwindow.cpp" line="5782"/>
- <location filename="onmainwindow.cpp" line="6507"/>
- <location filename="onmainwindow.cpp" line="6588"/>
- <location filename="onmainwindow.cpp" line="6832"/>
- <location filename="onmainwindow.cpp" line="6960"/>
- <location filename="onmainwindow.cpp" line="7013"/>
- <location filename="onmainwindow.cpp" line="7319"/>
- <location filename="onmainwindow.cpp" line="7321"/>
- <location filename="onmainwindow.cpp" line="7551"/>
- <location filename="onmainwindow.cpp" line="7599"/>
- <location filename="onmainwindow.cpp" line="7627"/>
- <location filename="onmainwindow.cpp" line="8067"/>
- <location filename="onmainwindow.cpp" line="8082"/>
- <location filename="onmainwindow.cpp" line="8136"/>
- <location filename="onmainwindow.cpp" line="8164"/>
- <location filename="onmainwindow.cpp" line="8189"/>
- <location filename="onmainwindow.cpp" line="10413"/>
+ <location filename="onmainwindow.cpp" line="893"/>
+ <location filename="onmainwindow.cpp" line="921"/>
+ <location filename="onmainwindow.cpp" line="1666"/>
+ <location filename="onmainwindow.cpp" line="1695"/>
+ <location filename="onmainwindow.cpp" line="1703"/>
+ <location filename="onmainwindow.cpp" line="1849"/>
+ <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
+ <location filename="onmainwindow.cpp" line="2354"/>
+ <location filename="onmainwindow.cpp" line="2368"/>
+ <location filename="onmainwindow.cpp" line="2381"/>
+ <location filename="onmainwindow.cpp" line="2415"/>
+ <location filename="onmainwindow.cpp" line="2460"/>
+ <location filename="onmainwindow.cpp" line="3318"/>
+ <location filename="onmainwindow.cpp" line="3496"/>
+ <location filename="onmainwindow.cpp" line="3505"/>
+ <location filename="onmainwindow.cpp" line="3821"/>
+ <location filename="onmainwindow.cpp" line="4299"/>
+ <location filename="onmainwindow.cpp" line="4376"/>
+ <location filename="onmainwindow.cpp" line="4440"/>
+ <location filename="onmainwindow.cpp" line="4473"/>
+ <location filename="onmainwindow.cpp" line="4517"/>
+ <location filename="onmainwindow.cpp" line="4920"/>
+ <location filename="onmainwindow.cpp" line="4946"/>
+ <location filename="onmainwindow.cpp" line="5096"/>
+ <location filename="onmainwindow.cpp" line="5898"/>
+ <location filename="onmainwindow.cpp" line="5934"/>
+ <location filename="onmainwindow.cpp" line="6670"/>
+ <location filename="onmainwindow.cpp" line="6754"/>
+ <location filename="onmainwindow.cpp" line="6998"/>
+ <location filename="onmainwindow.cpp" line="7126"/>
+ <location filename="onmainwindow.cpp" line="7179"/>
+ <location filename="onmainwindow.cpp" line="7485"/>
+ <location filename="onmainwindow.cpp" line="7487"/>
+ <location filename="onmainwindow.cpp" line="7718"/>
+ <location filename="onmainwindow.cpp" line="7766"/>
+ <location filename="onmainwindow.cpp" line="7794"/>
+ <location filename="onmainwindow.cpp" line="8234"/>
+ <location filename="onmainwindow.cpp" line="8250"/>
+ <location filename="onmainwindow.cpp" line="8305"/>
+ <location filename="onmainwindow.cpp" line="8333"/>
+ <location filename="onmainwindow.cpp" line="8358"/>
+ <location filename="onmainwindow.cpp" line="10575"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1663"/>
- <location filename="onmainwindow.cpp" line="1846"/>
- <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1667"/>
+ <location filename="onmainwindow.cpp" line="1850"/>
+ <location filename="onmainwindow.cpp" line="1880"/>
<source>Please check LDAP settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1698"/>
+ <location filename="onmainwindow.cpp" line="1702"/>
<source>no X2Go server found in LDAP </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2010"/>
+ <location filename="onmainwindow.cpp" line="2014"/>
<source>Create session icon on desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2011"/>
+ <location filename="onmainwindow.cpp" line="2015"/>
<source>Desktop icons can be configured not to show x2goclient (hidden mode). If you like to use this feature you'll need to configure login by a gpg key or gpg smart card.
Use x2goclient hidden mode?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2022"/>
+ <location filename="onmainwindow.cpp" line="2026"/>
<source>New Session</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2072"/>
+ <location filename="onmainwindow.cpp" line="2081"/>
<source>X2Go Link to session </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2122"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
<source>X2Go sessions not found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2270"/>
+ <location filename="onmainwindow.cpp" line="2279"/>
<source>Are you sure you want to delete this session?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2578"/>
- <location filename="onmainwindow.cpp" line="5591"/>
+ <location filename="onmainwindow.cpp" line="2587"/>
+ <location filename="onmainwindow.cpp" line="5733"/>
<source>KDE</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2643"/>
+ <location filename="onmainwindow.cpp" line="2652"/>
<source>RDP connection</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2647"/>
+ <location filename="onmainwindow.cpp" line="2656"/>
<source>XDMCP</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2651"/>
+ <location filename="onmainwindow.cpp" line="2660"/>
<source>Connection to local desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2655"/>
+ <location filename="onmainwindow.cpp" line="2664"/>
<source> on </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3188"/>
- <location filename="onmainwindow.cpp" line="4237"/>
- <location filename="onmainwindow.cpp" line="4333"/>
- <location filename="onmainwindow.cpp" line="4366"/>
- <location filename="onmainwindow.cpp" line="6500"/>
- <location filename="onmainwindow.cpp" line="6581"/>
- <location filename="onmainwindow.cpp" line="6953"/>
- <location filename="onmainwindow.cpp" line="7006"/>
- <location filename="onmainwindow.cpp" line="8060"/>
+ <location filename="onmainwindow.cpp" line="3311"/>
+ <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4466"/>
+ <location filename="onmainwindow.cpp" line="4499"/>
+ <location filename="onmainwindow.cpp" line="6663"/>
+ <location filename="onmainwindow.cpp" line="6747"/>
+ <location filename="onmainwindow.cpp" line="7119"/>
+ <location filename="onmainwindow.cpp" line="7172"/>
+ <location filename="onmainwindow.cpp" line="8227"/>
<source><b>Connection failed</b>
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3191"/>
- <location filename="onmainwindow.cpp" line="4240"/>
- <location filename="onmainwindow.cpp" line="4336"/>
- <location filename="onmainwindow.cpp" line="5743"/>
- <location filename="onmainwindow.cpp" line="5779"/>
- <location filename="onmainwindow.cpp" line="6503"/>
- <location filename="onmainwindow.cpp" line="6584"/>
- <location filename="onmainwindow.cpp" line="6956"/>
- <location filename="onmainwindow.cpp" line="7009"/>
- <location filename="onmainwindow.cpp" line="8063"/>
+ <location filename="onmainwindow.cpp" line="3314"/>
+ <location filename="onmainwindow.cpp" line="4372"/>
+ <location filename="onmainwindow.cpp" line="4469"/>
+ <location filename="onmainwindow.cpp" line="5895"/>
+ <location filename="onmainwindow.cpp" line="5931"/>
+ <location filename="onmainwindow.cpp" line="6666"/>
+ <location filename="onmainwindow.cpp" line="6750"/>
+ <location filename="onmainwindow.cpp" line="7122"/>
+ <location filename="onmainwindow.cpp" line="7175"/>
+ <location filename="onmainwindow.cpp" line="8230"/>
<source><b>Wrong password!</b><br><br></source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3307"/>
+ <location filename="onmainwindow.cpp" line="3430"/>
<source>unknown</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3374"/>
+ <location filename="onmainwindow.cpp" line="3497"/>
<source>No server availabel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3923"/>
- <location filename="onmainwindow.cpp" line="10185"/>
+ <location filename="onmainwindow.cpp" line="4052"/>
+ <location filename="onmainwindow.cpp" line="10347"/>
<source>Select session:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3939"/>
- <location filename="onmainwindow.cpp" line="4033"/>
- <location filename="onmainwindow.cpp" line="5187"/>
+ <location filename="onmainwindow.cpp" line="4068"/>
+ <location filename="onmainwindow.cpp" line="4162"/>
+ <location filename="onmainwindow.cpp" line="5326"/>
<source>running</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3941"/>
- <location filename="onmainwindow.cpp" line="4256"/>
+ <location filename="onmainwindow.cpp" line="4070"/>
+ <location filename="onmainwindow.cpp" line="4388"/>
<source>suspended</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3947"/>
+ <location filename="onmainwindow.cpp" line="4076"/>
<source>Desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3949"/>
+ <location filename="onmainwindow.cpp" line="4078"/>
<source>single application</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3951"/>
+ <location filename="onmainwindow.cpp" line="4080"/>
<source>shadow session</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3984"/>
+ <location filename="onmainwindow.cpp" line="4113"/>
<source>Information</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3985"/>
+ <location filename="onmainwindow.cpp" line="4114"/>
<source>No accessible desktop found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3998"/>
- <location filename="onmainwindow.cpp" line="10598"/>
+ <location filename="onmainwindow.cpp" line="4127"/>
+ <location filename="onmainwindow.cpp" line="10760"/>
<source>Filter</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4005"/>
+ <location filename="onmainwindow.cpp" line="4134"/>
<source>Select desktop:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4083"/>
- <location filename="onmainwindow.cpp" line="4103"/>
- <location filename="onmainwindow.cpp" line="4991"/>
- <location filename="onmainwindow.cpp" line="5399"/>
+ <location filename="onmainwindow.cpp" line="4212"/>
+ <location filename="onmainwindow.cpp" line="4232"/>
+ <location filename="onmainwindow.cpp" line="5126"/>
+ <location filename="onmainwindow.cpp" line="5538"/>
<source>Warning</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4084"/>
- <location filename="onmainwindow.cpp" line="4104"/>
+ <location filename="onmainwindow.cpp" line="4213"/>
+ <location filename="onmainwindow.cpp" line="4233"/>
<source>Your current color depth is different to the color depth of your x2go-session. 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="onmainwindow.cpp" line="4092"/>
+ <location filename="onmainwindow.cpp" line="4221"/>
<source>24 or 32</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4093"/>
- <location filename="onmainwindow.cpp" line="4113"/>
+ <location filename="onmainwindow.cpp" line="4222"/>
+ <location filename="onmainwindow.cpp" line="4242"/>
<source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4096"/>
- <location filename="onmainwindow.cpp" line="4116"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4245"/>
<source>Yes</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2861"/>
+ <location filename="onmainwindow.cpp" line="2851"/>
+ <source>Enter passphrase to decrypt a key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="2879"/>
<source>Host key for server changed.
It is now: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2862"/>
+ <location filename="onmainwindow.cpp" line="2880"/>
<source>For security reasons, connection will be stopped</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2873"/>
+ <location filename="onmainwindow.cpp" line="2893"/>
<source>The host key for this server was not found but an othertype of key exists.An attacker might change the default server key toconfuse your client into thinking the key does not exist</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2895"/>
+ <location filename="onmainwindow.cpp" line="2919"/>
<source>Could not find known host file.If you accept the host key here, the file will be automatically created</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2900"/>
+ <location filename="onmainwindow.cpp" line="2924"/>
<source>The server is unknown. Do you trust the host key?
Public key hash: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4097"/>
- <location filename="onmainwindow.cpp" line="4117"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4226"/>
+ <location filename="onmainwindow.cpp" line="4246"/>
<source>No</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="2912"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2938"/>
<source>Host key verification failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2955"/>
<source>Authentication failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3383"/>
- <location filename="onmainwindow.cpp" line="3693"/>
- <location filename="onmainwindow.cpp" line="4170"/>
- <location filename="onmainwindow.cpp" line="4308"/>
+ <location filename="onmainwindow.cpp" line="3290"/>
+ <source>Enter passwort for SSH proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="3506"/>
+ <location filename="onmainwindow.cpp" line="3822"/>
+ <location filename="onmainwindow.cpp" line="4300"/>
+ <location filename="onmainwindow.cpp" line="4441"/>
<source>Server not availabel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4195"/>
+ <location filename="onmainwindow.cpp" line="4326"/>
<source>suspending</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4223"/>
+ <location filename="onmainwindow.cpp" line="4355"/>
<source>terminating</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4502"/>
<source><b>Wrong Password!</b><br><br></source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4785"/>
- <location filename="onmainwindow.cpp" line="6830"/>
+ <location filename="onmainwindow.cpp" line="4918"/>
+ <location filename="onmainwindow.cpp" line="6996"/>
<source>Unable to create folder:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4811"/>
+ <location filename="onmainwindow.cpp" line="4944"/>
<source>Unable to write file:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4934"/>
- <location filename="onmainwindow.cpp" line="9422"/>
+ <location filename="onmainwindow.cpp" line="5068"/>
+ <location filename="onmainwindow.cpp" line="9601"/>
<source>Attach X2Go window</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4960"/>
- <location filename="onmainwindow.cpp" line="8134"/>
+ <location filename="onmainwindow.cpp" line="5094"/>
+ <location filename="onmainwindow.cpp" line="8303"/>
<source>Unable to create SSL tunnel:
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4989"/>
+ <location filename="onmainwindow.cpp" line="5124"/>
<source>Unable to create SSL Tunnel:
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5152"/>
+ <location filename="onmainwindow.cpp" line="5291"/>
<source>Finished</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5176"/>
+ <location filename="onmainwindow.cpp" line="5315"/>
<source>starting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5180"/>
+ <location filename="onmainwindow.cpp" line="5319"/>
<source>resuming</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5243"/>
- <location filename="onmainwindow.cpp" line="5515"/>
- <location filename="onmainwindow.cpp" line="5533"/>
+ <location filename="onmainwindow.cpp" line="5382"/>
+ <location filename="onmainwindow.cpp" line="5655"/>
+ <location filename="onmainwindow.cpp" line="5674"/>
<source>Connection timeout, aborting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5244"/>
+ <location filename="onmainwindow.cpp" line="5383"/>
<source>aborting</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5400"/>
+ <location filename="onmainwindow.cpp" line="5539"/>
<source>Are you sure you want to terminate this session?
Unsaved documents will be lost</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5483"/>
+ <location filename="onmainwindow.cpp" line="5623"/>
<source>Session</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5485"/>
- <location filename="onmainwindow.cpp" line="10266"/>
- <location filename="onmainwindow.cpp" line="10288"/>
+ <location filename="onmainwindow.cpp" line="5625"/>
+ <location filename="onmainwindow.cpp" line="10428"/>
+ <location filename="onmainwindow.cpp" line="10450"/>
<source>Display</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5487"/>
- <location filename="onmainwindow.cpp" line="10277"/>
+ <location filename="onmainwindow.cpp" line="5627"/>
+ <location filename="onmainwindow.cpp" line="10439"/>
<source>Creation time</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5740"/>
- <location filename="onmainwindow.cpp" line="5776"/>
+ <location filename="onmainwindow.cpp" line="5892"/>
+ <location filename="onmainwindow.cpp" line="5928"/>
<source><b>Connection failed</b>
:
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6137"/>
+ <location filename="onmainwindow.cpp" line="6300"/>
<source> (can't open file)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6148"/>
- <location filename="onmainwindow.cpp" line="6158"/>
- <location filename="onmainwindow.cpp" line="6168"/>
+ <location filename="onmainwindow.cpp" line="6311"/>
+ <location filename="onmainwindow.cpp" line="6321"/>
+ <location filename="onmainwindow.cpp" line="6331"/>
<source> (file not exists)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6192"/>
+ <location filename="onmainwindow.cpp" line="6355"/>
<source> (directory not exists)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6220"/>
+ <location filename="onmainwindow.cpp" line="6383"/>
<source>wrong value for argument"--link"</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6238"/>
+ <location filename="onmainwindow.cpp" line="6401"/>
<source>wrong value for argument"--sound"</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6255"/>
- <location filename="onmainwindow.cpp" line="6266"/>
+ <location filename="onmainwindow.cpp" line="6418"/>
+ <location filename="onmainwindow.cpp" line="6429"/>
<source>wrong value for argument"--geometry"</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6284"/>
+ <location filename="onmainwindow.cpp" line="6447"/>
<source>wrong value for argument"--set-kbd"</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6301"/>
+ <location filename="onmainwindow.cpp" line="6464"/>
<source>wrong value for argument"--ldap"</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6323"/>
+ <location filename="onmainwindow.cpp" line="6486"/>
<source>wrong value for argument"--ldap1"</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6342"/>
+ <location filename="onmainwindow.cpp" line="6505"/>
<source>wrong value for argument"--ldap2"</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6396"/>
+ <location filename="onmainwindow.cpp" line="6559"/>
<source>wrong value for argument"--pack"</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6404"/>
- <location filename="onmainwindow.cpp" line="6407"/>
+ <location filename="onmainwindow.cpp" line="6567"/>
+ <location filename="onmainwindow.cpp" line="6570"/>
<source>wrong parameter: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6458"/>
- <location filename="onmainwindow.cpp" line="6484"/>
+ <location filename="onmainwindow.cpp" line="6621"/>
+ <location filename="onmainwindow.cpp" line="6647"/>
<source>Options</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6463"/>
+ <location filename="onmainwindow.cpp" line="6626"/>
<source>Available pack methodes:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7251"/>
+ <location filename="onmainwindow.cpp" line="7417"/>
<source>Support</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7256"/>
+ <location filename="onmainwindow.cpp" line="7422"/>
<source></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7260"/>
+ <location filename="onmainwindow.cpp" line="7426"/>
<source><br>x2goplugin 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="onmainwindow.cpp" line="7264"/>
+ <location filename="onmainwindow.cpp" line="7430"/>
<source><br>Client for use with 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 fullscreen loginscreen (replacement for loginmanager like xdm). Please visit x2go.org for further information.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7277"/>
+ <location filename="onmainwindow.cpp" line="7443"/>
<source><b>X2Go client V. </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7322"/>
+ <location filename="onmainwindow.cpp" line="7488"/>
<source>Please check LDAP Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7552"/>
+ <location filename="onmainwindow.cpp" line="7719"/>
<source>No valid card found</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7600"/>
+ <location filename="onmainwindow.cpp" line="7767"/>
<source>This card is unknown by X2Go system</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7628"/>
+ <location filename="onmainwindow.cpp" line="7795"/>
<source>Unable to create file: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7897"/>
+ <location filename="onmainwindow.cpp" line="8064"/>
<source>Can't start X server
Please check your settings</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7896"/>
+ <location filename="onmainwindow.cpp" line="8063"/>
<source>Can't connect to X server
Please check your settings</source>
<oldsource>Can't connect to X-Server
@@ -1546,179 +1556,179 @@ Please check your settings</oldsource>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7911"/>
- <location filename="onmainwindow.cpp" line="8557"/>
- <location filename="onmainwindow.cpp" line="8585"/>
+ <location filename="onmainwindow.cpp" line="8078"/>
+ <location filename="onmainwindow.cpp" line="8726"/>
+ <location filename="onmainwindow.cpp" line="8754"/>
<source>Can't start X Server
Please check your installation</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8083"/>
+ <location filename="onmainwindow.cpp" line="8251"/>
<source>Unable to execute: </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8099"/>
+ <location filename="onmainwindow.cpp" line="8268"/>
<source>Remote server does not support file system export through SSH Tunnel
Please update to a newer x2goserver package</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8163"/>
+ <location filename="onmainwindow.cpp" line="8332"/>
<source>Unable to read :
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8188"/>
+ <location filename="onmainwindow.cpp" line="8357"/>
<source>Unable to write :
</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9511"/>
+ <location filename="onmainwindow.cpp" line="9689"/>
<source>X2Go Session</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9823"/>
+ <location filename="onmainwindow.cpp" line="9985"/>
<source>Password:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9824"/>
+ <location filename="onmainwindow.cpp" line="9986"/>
<source>Keyboard layout:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9865"/>
+ <location filename="onmainwindow.cpp" line="10027"/>
<source>Ok</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9867"/>
- <location filename="onmainwindow.cpp" line="10189"/>
- <location filename="onmainwindow.cpp" line="10191"/>
+ <location filename="onmainwindow.cpp" line="10029"/>
+ <location filename="onmainwindow.cpp" line="10351"/>
+ <location filename="onmainwindow.cpp" line="10353"/>
<source>Cancel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10004"/>
+ <location filename="onmainwindow.cpp" line="10166"/>
<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="onmainwindow.cpp" line="10014"/>
+ <location filename="onmainwindow.cpp" line="10176"/>
<source>Applications...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10027"/>
+ <location filename="onmainwindow.cpp" line="10189"/>
<source>Abort</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10039"/>
+ <location filename="onmainwindow.cpp" line="10201"/>
<source>Show details</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10187"/>
+ <location filename="onmainwindow.cpp" line="10349"/>
<source>Resume</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10199"/>
+ <location filename="onmainwindow.cpp" line="10361"/>
<source>New</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10202"/>
+ <location filename="onmainwindow.cpp" line="10364"/>
<source>Full access</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10205"/>
+ <location filename="onmainwindow.cpp" line="10367"/>
<source>View only</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10268"/>
+ <location filename="onmainwindow.cpp" line="10430"/>
<source>Status</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10270"/>
+ <location filename="onmainwindow.cpp" line="10432"/>
<source>Command</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10272"/>
+ <location filename="onmainwindow.cpp" line="10434"/>
<source>Type</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10274"/>
+ <location filename="onmainwindow.cpp" line="10436"/>
<source>Server</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10279"/>
+ <location filename="onmainwindow.cpp" line="10441"/>
<source>Client IP</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10281"/>
+ <location filename="onmainwindow.cpp" line="10443"/>
<source>Session ID</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10285"/>
+ <location filename="onmainwindow.cpp" line="10447"/>
<source>User</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10316"/>
+ <location filename="onmainwindow.cpp" line="10478"/>
<source>Only my desktops</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10414"/>
+ <location filename="onmainwindow.cpp" line="10576"/>
<source>sshd not started, you'll need sshd for printing and file sharing
you can install sshd with
<b>sudo apt-get install openssh-server</b></source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10485"/>
+ <location filename="onmainwindow.cpp" line="10647"/>
<source>Restore toolbar</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10530"/>
+ <location filename="onmainwindow.cpp" line="10692"/>
<source><br><b> Click this button <br> to restore toolbar </b><br></source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="924"/>
- <location filename="onmainwindow.cpp" line="2560"/>
- <location filename="onmainwindow.cpp" line="10667"/>
+ <location filename="onmainwindow.cpp" line="925"/>
+ <location filename="onmainwindow.cpp" line="2569"/>
+ <location filename="onmainwindow.cpp" line="10829"/>
<source>Connecting to broker</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8276"/>
+ <location filename="onmainwindow.cpp" line="8445"/>
<source>WINDOWS-1252</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8288"/>
+ <location filename="onmainwindow.cpp" line="8457"/>
<source>ISO8859-1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9693"/>
+ <location filename="onmainwindow.cpp" line="9871"/>
<source>wrong value for argument"speed"</source>
<translation type="unfinished"></translation>
</message>
@@ -2089,170 +2099,226 @@ lpr -P hp_laserjet</source>
<context>
<name>SessionWidget</name>
<message>
- <location filename="sessionwidget.cpp" line="52"/>
+ <location filename="sessionwidget.cpp" line="55"/>
<source>Session name:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="57"/>
+ <location filename="sessionwidget.cpp" line="60"/>
<source><< change icon</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="60"/>
+ <location filename="sessionwidget.cpp" line="63"/>
<source>&Server</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="93"/>
+ <location filename="sessionwidget.cpp" line="96"/>
+ <location filename="sessionwidget.cpp" line="154"/>
<source>Host:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="94"/>
+ <location filename="sessionwidget.cpp" line="97"/>
+ <location filename="sessionwidget.cpp" line="160"/>
<source>Login:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="95"/>
- <location filename="sessionwidget.cpp" line="237"/>
+ <location filename="sessionwidget.cpp" line="98"/>
+ <location filename="sessionwidget.cpp" line="360"/>
<source>SSH port:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="110"/>
+ <location filename="sessionwidget.cpp" line="113"/>
<source>Use RSA/DSA key for ssh connection:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="117"/>
+ <location filename="sessionwidget.cpp" line="120"/>
<source>Try auto login (ssh-agent or default ssh key)</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="118"/>
+ <location filename="sessionwidget.cpp" line="121"/>
<source>Kerberos 5 (GSSAPI) authentication</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="123"/>
+ <location filename="sessionwidget.cpp" line="124"/>
+ <source>Use Proxy server for SSH connection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="125"/>
+ <source>Proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="131"/>
+ <source>SSH</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="132"/>
+ <source>HTTP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="140"/>
+ <source>Same login as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="142"/>
+ <source>Same password as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="144"/>
+ <source>RSA/DSA key:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="149"/>
+ <source>ssh-agent or default ssh key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="151"/>
+ <source>Type:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="155"/>
+ <source>Port:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="170"/>
<source>&Session type</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="128"/>
+ <location filename="sessionwidget.cpp" line="175"/>
<source>Session type:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="138"/>
- <location filename="sessionwidget.cpp" line="361"/>
+ <location filename="sessionwidget.cpp" line="185"/>
+ <location filename="sessionwidget.cpp" line="484"/>
<source>Connect to Windows terminal server</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="139"/>
+ <location filename="sessionwidget.cpp" line="186"/>
<source>XDMCP</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="140"/>
+ <location filename="sessionwidget.cpp" line="187"/>
<source>Connect to local desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="141"/>
+ <location filename="sessionwidget.cpp" line="188"/>
<source>Custom desktop</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="142"/>
+ <location filename="sessionwidget.cpp" line="189"/>
<source>Single application</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="143"/>
+ <location filename="sessionwidget.cpp" line="190"/>
<source>Published applications</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="145"/>
- <location filename="sessionwidget.cpp" line="305"/>
+ <location filename="sessionwidget.cpp" line="192"/>
+ <location filename="sessionwidget.cpp" line="428"/>
<source>Command:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="146"/>
+ <location filename="sessionwidget.cpp" line="193"/>
<source>Advanced options...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="158"/>
- <location filename="sessionwidget.cpp" line="523"/>
- <location filename="sessionwidget.cpp" line="597"/>
+ <location filename="sessionwidget.cpp" line="205"/>
+ <location filename="sessionwidget.cpp" line="713"/>
+ <location filename="sessionwidget.cpp" line="808"/>
<source>Path to executable</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="168"/>
+ <location filename="sessionwidget.cpp" line="215"/>
<source>Direct RDP Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="233"/>
+ <location filename="sessionwidget.cpp" line="356"/>
<source>RDP port:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="249"/>
+ <location filename="sessionwidget.cpp" line="372"/>
<source>Open picture</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="251"/>
+ <location filename="sessionwidget.cpp" line="374"/>
<source>Pictures</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="272"/>
+ <location filename="sessionwidget.cpp" line="283"/>
+ <location filename="sessionwidget.cpp" line="395"/>
<source>Open key file</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="274"/>
+ <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="397"/>
<source>All files</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="332"/>
- <location filename="sessionwidget.cpp" line="478"/>
+ <location filename="sessionwidget.cpp" line="455"/>
+ <location filename="sessionwidget.cpp" line="668"/>
<source>Server:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="341"/>
- <location filename="sessionwidget.cpp" line="490"/>
+ <location filename="sessionwidget.cpp" line="464"/>
+ <location filename="sessionwidget.cpp" line="680"/>
<source>XDMCP server:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="362"/>
+ <location filename="sessionwidget.cpp" line="485"/>
<source>rdesktop command line options:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="375"/>
- <location filename="sessionwidget.cpp" line="502"/>
+ <location filename="sessionwidget.cpp" line="498"/>
+ <location filename="sessionwidget.cpp" line="692"/>
<source>New session</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="284"/>
+ <location filename="sessionwidget.cpp" line="295"/>
+ <location filename="sessionwidget.cpp" line="407"/>
<source>Error</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="296"/>
+ <location filename="sessionwidget.cpp" line="408"/>
<source>x2goclient is running in portable mode. You should use a path on your usb device to be able to access your data whereever you are</source>
<translation type="unfinished"></translation>
</message>
@@ -2399,17 +2465,17 @@ sound system connections through firewalls</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="642"/>
+ <location filename="settingswidget.cpp" line="645"/>
<source>us</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="643"/>
+ <location filename="settingswidget.cpp" line="646"/>
<source>pc105/us</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="757"/>
+ <location filename="settingswidget.cpp" line="760"/>
<source>password</source>
<translation type="unfinished"></translation>
</message>
@@ -2498,82 +2564,103 @@ sound system connections through firewalls</source>
<context>
<name>SshMasterConnection</name>
<message>
- <location filename="sshmasterconnection.cpp" line="133"/>
+ <location filename="sshmasterconnection.cpp" line="170"/>
+ <source>SSH proxy connection error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="175"/>
+ <location filename="sshmasterconnection.cpp" line="181"/>
+ <source>SSH proxy connection error: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="197"/>
+ <source>Failed to create SSH proxy tunnel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="265"/>
<source>Can not initialize libssh</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="159"/>
+ <location filename="sshmasterconnection.cpp" line="291"/>
<source>Can not create ssh session</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="177"/>
+ <location filename="sshmasterconnection.cpp" line="319"/>
+ <source>Can not connect to proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="340"/>
<source>Can not connect to </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="218"/>
+ <location filename="sshmasterconnection.cpp" line="394"/>
<source>Authentication failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="244"/>
+ <location filename="sshmasterconnection.cpp" line="420"/>
<source>channel_forward_listen failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="560"/>
+ <location filename="sshmasterconnection.cpp" line="830"/>
<source>Can not open file </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="572"/>
+ <location filename="sshmasterconnection.cpp" line="842"/>
<source>Can not create remote file </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="585"/>
+ <location filename="sshmasterconnection.cpp" line="855"/>
<source>Can not write to remote file </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="642"/>
+ <location filename="sshmasterconnection.cpp" line="912"/>
<source>can not connect to </source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="751"/>
+ <location filename="sshmasterconnection.cpp" line="1029"/>
<source>channel_open_forward failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="770"/>
+ <location filename="sshmasterconnection.cpp" line="1048"/>
<source>channel_open_session failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="777"/>
+ <location filename="sshmasterconnection.cpp" line="1055"/>
<source>channel_request_exec failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="842"/>
+ <location filename="sshmasterconnection.cpp" line="1120"/>
<source>error writing to socket</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="860"/>
+ <location filename="sshmasterconnection.cpp" line="1138"/>
<source>error reading channel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="890"/>
+ <location filename="sshmasterconnection.cpp" line="1168"/>
<source>channel_write failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="902"/>
+ <location filename="sshmasterconnection.cpp" line="1180"/>
<source>error reading tcp socket</source>
<translation type="unfinished"></translation>
</message>
@@ -2581,12 +2668,12 @@ sound system connections through firewalls</source>
<context>
<name>SshProcess</name>
<message>
- <location filename="sshprocess.cpp" line="97"/>
+ <location filename="sshprocess.cpp" line="112"/>
<source>Error creating socket</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshprocess.cpp" line="115"/>
+ <location filename="sshprocess.cpp" line="130"/>
<source>Error binding </source>
<translation type="unfinished"></translation>
</message>
diff --git a/x2goclient_nb_no.ts b/x2goclient_nb_no.ts
index 7e2a6a4..824a295 100644
--- a/x2goclient_nb_no.ts
+++ b/x2goclient_nb_no.ts
@@ -733,42 +733,42 @@
<context>
<name>ONMainWindow</name>
<message>
- <location filename="onmainwindow.cpp" line="90"/>
- <location filename="onmainwindow.cpp" line="6030"/>
+ <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="6188"/>
<source>us</source>
<translation>no</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="91"/>
+ <location filename="onmainwindow.cpp" line="93"/>
<source>pc105/us</source>
<translation>pc105/de</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="346"/>
+ <location filename="onmainwindow.cpp" line="347"/>
<source>Support ...</source>
<translatorcomment>Need to double-check this one</translatorcomment>
<translation>Støtte ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="682"/>
- <location filename="onmainwindow.cpp" line="1987"/>
- <location filename="onmainwindow.cpp" line="7376"/>
+ <location filename="onmainwindow.cpp" line="683"/>
+ <location filename="onmainwindow.cpp" line="1991"/>
+ <location filename="onmainwindow.cpp" line="7542"/>
<source>Session:</source>
<translation>Sesjon:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="734"/>
+ <location filename="onmainwindow.cpp" line="735"/>
<source>&Quit</source>
<translation>&Avslutt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="735"/>
+ <location filename="onmainwindow.cpp" line="736"/>
<source>Ctrl+Q</source>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="736"/>
- <location filename="onmainwindow.cpp" line="1057"/>
+ <location filename="onmainwindow.cpp" line="737"/>
+ <location filename="onmainwindow.cpp" line="1058"/>
<source>Quit</source>
<translation>Avslutt</translation>
</message>
@@ -777,7 +777,7 @@
<translation type="obsolete">&Neue Sitzung ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="740"/>
+ <location filename="onmainwindow.cpp" line="741"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
@@ -786,7 +786,7 @@
<translation type="obsolete">Sitzungsverwaltung...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="746"/>
+ <location filename="onmainwindow.cpp" line="747"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
@@ -795,7 +795,7 @@
<translation type="obsolete">LDAP &Konfiguration ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10485"/>
+ <location filename="onmainwindow.cpp" line="10647"/>
<source>Restore toolbar</source>
<translation>Gjenopprett verktøylinjen</translation>
</message>
@@ -804,60 +804,60 @@
<translation type="obsolete">Ãber X2GO Client</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="789"/>
+ <location filename="onmainwindow.cpp" line="790"/>
<source>About Qt</source>
<translation>Om QT</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5483"/>
+ <location filename="onmainwindow.cpp" line="5623"/>
<source>Session</source>
<translation>Sesjon</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="806"/>
+ <location filename="onmainwindow.cpp" line="807"/>
<source>Ctrl+Q</source>
<comment>exit</comment>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="812"/>
+ <location filename="onmainwindow.cpp" line="813"/>
<source>&Session</source>
<translation>&Sesjon</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="813"/>
+ <location filename="onmainwindow.cpp" line="814"/>
<source>&Options</source>
<translation>&Innstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="832"/>
+ <location filename="onmainwindow.cpp" line="833"/>
<source>&Help</source>
<translation>&Hjelp</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9823"/>
+ <location filename="onmainwindow.cpp" line="9985"/>
<source>Password:</source>
<translation>Passord:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9824"/>
+ <location filename="onmainwindow.cpp" line="9986"/>
<source>Keyboard layout:</source>
<translation>Tastatur utseende:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9865"/>
+ <location filename="onmainwindow.cpp" line="10027"/>
<source>Ok</source>
<translation>Ok</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9867"/>
- <location filename="onmainwindow.cpp" line="10189"/>
- <location filename="onmainwindow.cpp" line="10191"/>
+ <location filename="onmainwindow.cpp" line="10029"/>
+ <location filename="onmainwindow.cpp" line="10351"/>
+ <location filename="onmainwindow.cpp" line="10353"/>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10014"/>
+ <location filename="onmainwindow.cpp" line="10176"/>
<source>Applications...</source>
<translation>Applikasjoner...</translation>
</message>
@@ -867,120 +867,120 @@
<translation type="obsolete">Ugyldig svar fra megleren</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
- <location filename="onmainwindow.cpp" line="920"/>
- <location filename="onmainwindow.cpp" line="1662"/>
- <location filename="onmainwindow.cpp" line="1691"/>
- <location filename="onmainwindow.cpp" line="1699"/>
- <location filename="onmainwindow.cpp" line="1845"/>
- <location filename="onmainwindow.cpp" line="1872"/>
- <location filename="onmainwindow.cpp" line="1875"/>
- <location filename="onmainwindow.cpp" line="2122"/>
- <location filename="onmainwindow.cpp" line="2345"/>
- <location filename="onmainwindow.cpp" line="2359"/>
- <location filename="onmainwindow.cpp" line="2372"/>
- <location filename="onmainwindow.cpp" line="2406"/>
- <location filename="onmainwindow.cpp" line="2451"/>
- <location filename="onmainwindow.cpp" line="3195"/>
- <location filename="onmainwindow.cpp" line="3373"/>
- <location filename="onmainwindow.cpp" line="3382"/>
- <location filename="onmainwindow.cpp" line="3692"/>
- <location filename="onmainwindow.cpp" line="4169"/>
- <location filename="onmainwindow.cpp" line="4244"/>
- <location filename="onmainwindow.cpp" line="4307"/>
- <location filename="onmainwindow.cpp" line="4340"/>
- <location filename="onmainwindow.cpp" line="4384"/>
- <location filename="onmainwindow.cpp" line="4787"/>
- <location filename="onmainwindow.cpp" line="4813"/>
- <location filename="onmainwindow.cpp" line="4962"/>
- <location filename="onmainwindow.cpp" line="5746"/>
- <location filename="onmainwindow.cpp" line="5782"/>
- <location filename="onmainwindow.cpp" line="6507"/>
- <location filename="onmainwindow.cpp" line="6588"/>
- <location filename="onmainwindow.cpp" line="6832"/>
- <location filename="onmainwindow.cpp" line="6960"/>
- <location filename="onmainwindow.cpp" line="7013"/>
- <location filename="onmainwindow.cpp" line="7319"/>
- <location filename="onmainwindow.cpp" line="7321"/>
- <location filename="onmainwindow.cpp" line="7551"/>
- <location filename="onmainwindow.cpp" line="7599"/>
- <location filename="onmainwindow.cpp" line="7627"/>
- <location filename="onmainwindow.cpp" line="8067"/>
- <location filename="onmainwindow.cpp" line="8082"/>
- <location filename="onmainwindow.cpp" line="8136"/>
- <location filename="onmainwindow.cpp" line="8164"/>
- <location filename="onmainwindow.cpp" line="8189"/>
- <location filename="onmainwindow.cpp" line="10413"/>
+ <location filename="onmainwindow.cpp" line="893"/>
+ <location filename="onmainwindow.cpp" line="921"/>
+ <location filename="onmainwindow.cpp" line="1666"/>
+ <location filename="onmainwindow.cpp" line="1695"/>
+ <location filename="onmainwindow.cpp" line="1703"/>
+ <location filename="onmainwindow.cpp" line="1849"/>
+ <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
+ <location filename="onmainwindow.cpp" line="2354"/>
+ <location filename="onmainwindow.cpp" line="2368"/>
+ <location filename="onmainwindow.cpp" line="2381"/>
+ <location filename="onmainwindow.cpp" line="2415"/>
+ <location filename="onmainwindow.cpp" line="2460"/>
+ <location filename="onmainwindow.cpp" line="3318"/>
+ <location filename="onmainwindow.cpp" line="3496"/>
+ <location filename="onmainwindow.cpp" line="3505"/>
+ <location filename="onmainwindow.cpp" line="3821"/>
+ <location filename="onmainwindow.cpp" line="4299"/>
+ <location filename="onmainwindow.cpp" line="4376"/>
+ <location filename="onmainwindow.cpp" line="4440"/>
+ <location filename="onmainwindow.cpp" line="4473"/>
+ <location filename="onmainwindow.cpp" line="4517"/>
+ <location filename="onmainwindow.cpp" line="4920"/>
+ <location filename="onmainwindow.cpp" line="4946"/>
+ <location filename="onmainwindow.cpp" line="5096"/>
+ <location filename="onmainwindow.cpp" line="5898"/>
+ <location filename="onmainwindow.cpp" line="5934"/>
+ <location filename="onmainwindow.cpp" line="6670"/>
+ <location filename="onmainwindow.cpp" line="6754"/>
+ <location filename="onmainwindow.cpp" line="6998"/>
+ <location filename="onmainwindow.cpp" line="7126"/>
+ <location filename="onmainwindow.cpp" line="7179"/>
+ <location filename="onmainwindow.cpp" line="7485"/>
+ <location filename="onmainwindow.cpp" line="7487"/>
+ <location filename="onmainwindow.cpp" line="7718"/>
+ <location filename="onmainwindow.cpp" line="7766"/>
+ <location filename="onmainwindow.cpp" line="7794"/>
+ <location filename="onmainwindow.cpp" line="8234"/>
+ <location filename="onmainwindow.cpp" line="8250"/>
+ <location filename="onmainwindow.cpp" line="8305"/>
+ <location filename="onmainwindow.cpp" line="8333"/>
+ <location filename="onmainwindow.cpp" line="8358"/>
+ <location filename="onmainwindow.cpp" line="10575"/>
<source>Error</source>
<translation>Feil</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2578"/>
- <location filename="onmainwindow.cpp" line="5591"/>
+ <location filename="onmainwindow.cpp" line="2587"/>
+ <location filename="onmainwindow.cpp" line="5733"/>
<source>KDE</source>
<translation>KDE</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2655"/>
+ <location filename="onmainwindow.cpp" line="2664"/>
<source> on </source>
<translation> på </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="871"/>
- <location filename="onmainwindow.cpp" line="1980"/>
- <location filename="onmainwindow.cpp" line="7369"/>
- <location filename="onmainwindow.cpp" line="9822"/>
+ <location filename="onmainwindow.cpp" line="872"/>
+ <location filename="onmainwindow.cpp" line="1984"/>
+ <location filename="onmainwindow.cpp" line="7535"/>
+ <location filename="onmainwindow.cpp" line="9984"/>
<source>Login:</source>
<translation>Brukernavn:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3923"/>
- <location filename="onmainwindow.cpp" line="10185"/>
+ <location filename="onmainwindow.cpp" line="4052"/>
+ <location filename="onmainwindow.cpp" line="10347"/>
<source>Select session:</source>
<translation>Velg sesjon:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10187"/>
+ <location filename="onmainwindow.cpp" line="10349"/>
<source>Resume</source>
<translation>Gjenoppta</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="560"/>
- <location filename="onmainwindow.cpp" line="1039"/>
- <location filename="onmainwindow.cpp" line="5223"/>
- <location filename="onmainwindow.cpp" line="10194"/>
+ <location filename="onmainwindow.cpp" line="561"/>
+ <location filename="onmainwindow.cpp" line="1040"/>
+ <location filename="onmainwindow.cpp" line="5362"/>
+ <location filename="onmainwindow.cpp" line="10356"/>
<source>Suspend</source>
<translatorcomment>I disagree with the word 'Suspend' here, if it was suspending then the session would be paused. As this is not the case, it's more like disconnect (and the counterpart: reconnect). I used the translation fro 'Disconnect' here, and will research the possibility of changing the Suspend word to Disconnect also in the english translation.</translatorcomment>
<translation>Koble fra</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="563"/>
- <location filename="onmainwindow.cpp" line="1040"/>
- <location filename="onmainwindow.cpp" line="10034"/>
+ <location filename="onmainwindow.cpp" line="564"/>
+ <location filename="onmainwindow.cpp" line="1041"/>
<location filename="onmainwindow.cpp" line="10196"/>
+ <location filename="onmainwindow.cpp" line="10358"/>
<source>Terminate</source>
<translatorcomment>Need to revisit this word to see if the chosen one is *strong* enough</translatorcomment>
<translation>Avslutte</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10199"/>
+ <location filename="onmainwindow.cpp" line="10361"/>
<source>New</source>
<translation>Ny</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5485"/>
- <location filename="onmainwindow.cpp" line="10266"/>
- <location filename="onmainwindow.cpp" line="10288"/>
+ <location filename="onmainwindow.cpp" line="5625"/>
+ <location filename="onmainwindow.cpp" line="10428"/>
+ <location filename="onmainwindow.cpp" line="10450"/>
<source>Display</source>
<translation>Skjerm</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10268"/>
+ <location filename="onmainwindow.cpp" line="10430"/>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10274"/>
+ <location filename="onmainwindow.cpp" line="10436"/>
<source>Server</source>
<translation>Server</translation>
</message>
@@ -989,20 +989,20 @@
<translation type="obsolete">Startzeit</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10279"/>
+ <location filename="onmainwindow.cpp" line="10441"/>
<source>Client IP</source>
<translation>Klient IP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3939"/>
- <location filename="onmainwindow.cpp" line="4033"/>
- <location filename="onmainwindow.cpp" line="5187"/>
+ <location filename="onmainwindow.cpp" line="4068"/>
+ <location filename="onmainwindow.cpp" line="4162"/>
+ <location filename="onmainwindow.cpp" line="5326"/>
<source>running</source>
<translation>aktiv</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3941"/>
- <location filename="onmainwindow.cpp" line="4256"/>
+ <location filename="onmainwindow.cpp" line="4070"/>
+ <location filename="onmainwindow.cpp" line="4388"/>
<source>suspended</source>
<translation>Frakoblet</translation>
</message>
@@ -1015,46 +1015,46 @@
<translation type="obsolete">Datei kann nicht geschrieben werden:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4989"/>
+ <location filename="onmainwindow.cpp" line="5124"/>
<source>Unable to create SSL Tunnel:
</source>
<translation>Klarer ikke å opprette SSL tunnel:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4083"/>
- <location filename="onmainwindow.cpp" line="4103"/>
- <location filename="onmainwindow.cpp" line="4991"/>
- <location filename="onmainwindow.cpp" line="5399"/>
+ <location filename="onmainwindow.cpp" line="4212"/>
+ <location filename="onmainwindow.cpp" line="4232"/>
+ <location filename="onmainwindow.cpp" line="5126"/>
+ <location filename="onmainwindow.cpp" line="5538"/>
<source>Warning</source>
<translation>Advarsel</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="157"/>
- <location filename="onmainwindow.cpp" line="2972"/>
- <location filename="onmainwindow.cpp" line="5167"/>
+ <location filename="onmainwindow.cpp" line="158"/>
+ <location filename="onmainwindow.cpp" line="2999"/>
+ <location filename="onmainwindow.cpp" line="5306"/>
<source>connecting</source>
<translation>kobler til</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5176"/>
+ <location filename="onmainwindow.cpp" line="5315"/>
<source>starting</source>
<translation>starter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5180"/>
+ <location filename="onmainwindow.cpp" line="5319"/>
<source>resuming</source>
<translation>gjenopptar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5243"/>
- <location filename="onmainwindow.cpp" line="5515"/>
- <location filename="onmainwindow.cpp" line="5533"/>
+ <location filename="onmainwindow.cpp" line="5382"/>
+ <location filename="onmainwindow.cpp" line="5655"/>
+ <location filename="onmainwindow.cpp" line="5674"/>
<source>Connection timeout, aborting</source>
<translation>Tilkoblingen tidsavbrutt, avbryter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5244"/>
+ <location filename="onmainwindow.cpp" line="5383"/>
<source>aborting</source>
<translation>Avbryter</translation>
</message>
@@ -1063,7 +1063,7 @@
<translation type="obsolete"><b>Sitzungs ID:<br>Server:<br>Login:<br>Display:<br>Startzeit:<br>Status:</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10027"/>
+ <location filename="onmainwindow.cpp" line="10189"/>
<source>Abort</source>
<translation>Avbryt</translation>
</message>
@@ -1072,78 +1072,78 @@
<translation type="obsolete">Zeige Details</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6137"/>
+ <location filename="onmainwindow.cpp" line="6300"/>
<source> (can't open file)</source>
<translation> (kan ikke åpne filen)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6148"/>
- <location filename="onmainwindow.cpp" line="6158"/>
- <location filename="onmainwindow.cpp" line="6168"/>
+ <location filename="onmainwindow.cpp" line="6311"/>
+ <location filename="onmainwindow.cpp" line="6321"/>
+ <location filename="onmainwindow.cpp" line="6331"/>
<source> (file not exists)</source>
<translation> (filen finnes ikke)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6192"/>
+ <location filename="onmainwindow.cpp" line="6355"/>
<source> (directory not exists)</source>
<translation> (mappen finnes ikke)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6220"/>
+ <location filename="onmainwindow.cpp" line="6383"/>
<source>wrong value for argument"--link"</source>
<translatorcomment>Chose to use 'parameteren' here, the direct translation is 'argument', but didn't fit in my opinion. The cmdline arguments, will they be translated as well?</translatorcomment>
<translation>ugyldig verdi for parameteren "--link"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6238"/>
+ <location filename="onmainwindow.cpp" line="6401"/>
<source>wrong value for argument"--sound"</source>
<translation>ugyldig verdi for parameteren "--sound"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6255"/>
- <location filename="onmainwindow.cpp" line="6266"/>
+ <location filename="onmainwindow.cpp" line="6418"/>
+ <location filename="onmainwindow.cpp" line="6429"/>
<source>wrong value for argument"--geometry"</source>
<translation>ugyldig verdi for parameteren "--geometry"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6284"/>
+ <location filename="onmainwindow.cpp" line="6447"/>
<source>wrong value for argument"--set-kbd"</source>
<translation>ugyldig verdi for parameteren "--set-kbd"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6301"/>
+ <location filename="onmainwindow.cpp" line="6464"/>
<source>wrong value for argument"--ldap"</source>
<translation>ugyldig verdi for parameteren "--ldap"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6396"/>
+ <location filename="onmainwindow.cpp" line="6559"/>
<source>wrong value for argument"--pack"</source>
<translation>ugyldig verdi for parameteren "--pack"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6404"/>
- <location filename="onmainwindow.cpp" line="6407"/>
+ <location filename="onmainwindow.cpp" line="6567"/>
+ <location filename="onmainwindow.cpp" line="6570"/>
<source>wrong parameter: </source>
<translation>ugyldig parameter: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6463"/>
+ <location filename="onmainwindow.cpp" line="6626"/>
<source>Available pack methodes:</source>
<translation>Tilgjengelige pakkemetoder:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7251"/>
+ <location filename="onmainwindow.cpp" line="7417"/>
<source>Support</source>
<translatorcomment>Will have to revisit this one, not sure if it fits</translatorcomment>
<translation>Støtte</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7256"/>
+ <location filename="onmainwindow.cpp" line="7422"/>
<source></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></source>
<translation></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7322"/>
+ <location filename="onmainwindow.cpp" line="7488"/>
<source>Please check LDAP Settings</source>
<translation>Vennligst sjekk LDAP innstillingene</translation>
</message>
@@ -1156,15 +1156,15 @@
<translation type="obsolete">Sind Sie sicher, dass Sie die Sitzung löschen wollen?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3188"/>
- <location filename="onmainwindow.cpp" line="4237"/>
- <location filename="onmainwindow.cpp" line="4333"/>
- <location filename="onmainwindow.cpp" line="4366"/>
- <location filename="onmainwindow.cpp" line="6500"/>
- <location filename="onmainwindow.cpp" line="6581"/>
- <location filename="onmainwindow.cpp" line="6953"/>
- <location filename="onmainwindow.cpp" line="7006"/>
- <location filename="onmainwindow.cpp" line="8060"/>
+ <location filename="onmainwindow.cpp" line="3311"/>
+ <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4466"/>
+ <location filename="onmainwindow.cpp" line="4499"/>
+ <location filename="onmainwindow.cpp" line="6663"/>
+ <location filename="onmainwindow.cpp" line="6747"/>
+ <location filename="onmainwindow.cpp" line="7119"/>
+ <location filename="onmainwindow.cpp" line="7172"/>
+ <location filename="onmainwindow.cpp" line="8227"/>
<source><b>Connection failed</b>
</source>
<translation><b>Tilkoblingen feilet</b>
@@ -1175,23 +1175,23 @@
<translation type="obsolete">es konnte kein Server gefunden werden</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10281"/>
+ <location filename="onmainwindow.cpp" line="10443"/>
<source>Session ID</source>
<translation>Sesjons ID</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4195"/>
+ <location filename="onmainwindow.cpp" line="4326"/>
<source>suspending</source>
<translation>Kobler fra</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4223"/>
+ <location filename="onmainwindow.cpp" line="4355"/>
<source>terminating</source>
<translation>Avslutter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5740"/>
- <location filename="onmainwindow.cpp" line="5776"/>
+ <location filename="onmainwindow.cpp" line="5892"/>
+ <location filename="onmainwindow.cpp" line="5928"/>
<source><b>Connection failed</b>
:
</source>
@@ -1226,7 +1226,7 @@
<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. Example: --ldap=ldapserver:389:o=organization,c=de --command=<cmd> Set default command, default value 'KDE' --sound=<0|1> Enable sound, default value '1' --geomerty=<W>x<H>|fullscreen Set default geometry, default value '800x600' --link=<modem|isdn|adsl
|wan|lan
> Set default link type, default 'lan' --pack=<packmethod> Set default pack method, default '16m-jpeg-9' --kbd-layout=<layout> Set default keyboard layout, default 'us' --kbd-type=<typed> Set default keyboard type, default 'pc105/us' --set-kbd=<0|1> Overwrite current keyboard settings, default '0'</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8163"/>
+ <location filename="onmainwindow.cpp" line="8332"/>
<source>Unable to read :
</source>
<translatorcomment>need to check the length of the norwegian string here, I don't know how it will look in the UI</translatorcomment>
@@ -1234,7 +1234,7 @@
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8188"/>
+ <location filename="onmainwindow.cpp" line="8357"/>
<source>Unable to write :
</source>
<translatorcomment>need to check the length of the norwegian string here, I don't know how it will look in the UI</translatorcomment>
@@ -1246,18 +1246,18 @@
<translation type="obsolete"><b>X2Go Client 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 X2Go Servers 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="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4502"/>
<source><b>Wrong Password!</b><br><br></source>
<translatorcomment>Should we actually tell that it's the password that's wrong? Isn't that considered bad practice in regards to security? I propose to use "Wrong Username or Password!" instead.</translatorcomment>
<translation><b>Feil passord!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6323"/>
+ <location filename="onmainwindow.cpp" line="6486"/>
<source>wrong value for argument"--ldap1"</source>
<translation>ugyldig verdi for parameteren "--ldap1"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6342"/>
+ <location filename="onmainwindow.cpp" line="6505"/>
<source>wrong value for argument"--ldap2"</source>
<translation>ugyldig verdi for parameteren "--ldap2"</translation>
</message>
@@ -1286,12 +1286,12 @@
<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. Example: --ldap=ldapserver:389:o=organization,c=de --ldap1=<host:port> LDAP Failover Server #1 --ldap2=<host:port> LDAP Failover Server #2 --command=<cmd> Set default command, default value 'KDE' --sound=<0|1> Enable sound, default value '1' --geomerty=<W>x<H>|fullscreen Set default geometry, default value '800x600' --link=<modem|isdn|adsl|wan
|lan>
Set default link type, default 'lan' --pack=<packmethod> Set default pack method, default '16m-jpeg-9' --kbd-layout=<layout> Set default keyboard layout, default 'us' --kbd-type=<typed> Set default keyboard type, default 'pc105/us' --set-kbd=<0|1> Overwrite current keyboard settings, default '0'</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7628"/>
+ <location filename="onmainwindow.cpp" line="7795"/>
<source>Unable to create file: </source>
<translation>Klarer ikke å opprette filen: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7552"/>
+ <location filename="onmainwindow.cpp" line="7719"/>
<source>No valid card found</source>
<translation>Ingen gyldige kort ble funnet</translation>
</message>
@@ -1300,14 +1300,14 @@
<translation type="obsolete">Diese Karte ist dem X2Go System unbekannt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="342"/>
+ <location filename="onmainwindow.cpp" line="343"/>
<source>&Settings ...</source>
<translatorcomment>Need to revisit the keybindings in all the Norwegian strings to check for consistency and collisions</translatorcomment>
<translation>&Innstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6458"/>
- <location filename="onmainwindow.cpp" line="6484"/>
+ <location filename="onmainwindow.cpp" line="6621"/>
+ <location filename="onmainwindow.cpp" line="6647"/>
<source>Options</source>
<translatorcomment>Hm.. Should we actually use different words here in Norwegian? Or could they mean the same? Need to check the UI first</translatorcomment>
<translation>Alternativer</translation>
@@ -1321,7 +1321,7 @@
<translation type="obsolete">Klarte ikke å koble til X-Serveren</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7896"/>
+ <location filename="onmainwindow.cpp" line="8063"/>
<source>Can't connect to X server
Please check your settings</source>
<oldsource>Can't connect to X-Server
@@ -1340,33 +1340,33 @@ Please check your settings</source>
Vennligst sjekk instillingene dine</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4084"/>
- <location filename="onmainwindow.cpp" line="4104"/>
+ <location filename="onmainwindow.cpp" line="4213"/>
+ <location filename="onmainwindow.cpp" line="4233"/>
<source>Your current color depth is different to the color depth of your x2go-session. 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>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4092"/>
+ <location filename="onmainwindow.cpp" line="4221"/>
<source>24 or 32</source>
<translation>24 eller 32</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4093"/>
- <location filename="onmainwindow.cpp" line="4113"/>
+ <location filename="onmainwindow.cpp" line="4222"/>
+ <location filename="onmainwindow.cpp" line="4242"/>
<source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source>
<translation> bit og deretter restarte X-Serveren før du kobler til denne x2go sesjonen. <br>Gjenoppta denne sesjonen uansett?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4096"/>
- <location filename="onmainwindow.cpp" line="4116"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4245"/>
<source>Yes</source>
<translation>Ja</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4097"/>
- <location filename="onmainwindow.cpp" line="4117"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4226"/>
+ <location filename="onmainwindow.cpp" line="4246"/>
<source>No</source>
<translation>Nei</translation>
</message>
@@ -1383,42 +1383,42 @@ Vennligst sjekk instillingene dine</translation>
<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 X2Go Servers 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="onmainwindow.cpp" line="166"/>
+ <location filename="onmainwindow.cpp" line="167"/>
<source>OpenOffice.org</source>
<translation>OpenOffice.org</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="167"/>
+ <location filename="onmainwindow.cpp" line="168"/>
<source>Terminal</source>
<translation>Terminal</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3307"/>
+ <location filename="onmainwindow.cpp" line="3430"/>
<source>unknown</source>
<translation>ukjent</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10270"/>
+ <location filename="onmainwindow.cpp" line="10432"/>
<source>Command</source>
<translation>Kommando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10272"/>
+ <location filename="onmainwindow.cpp" line="10434"/>
<source>Type</source>
<translation>Type</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3947"/>
+ <location filename="onmainwindow.cpp" line="4076"/>
<source>Desktop</source>
<translation>Skrivebord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3949"/>
+ <location filename="onmainwindow.cpp" line="4078"/>
<source>single application</source>
<translation>enkel applikasjon</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3951"/>
+ <location filename="onmainwindow.cpp" line="4080"/>
<source>shadow session</source>
<translatorcomment>hm.. Need to revisit this one, not sure if I should use a better technical term in Norwegian</translatorcomment>
<translation>skygge sesjonen</translation>
@@ -1428,316 +1428,326 @@ Vennligst sjekk instillingene dine</translation>
<translation type="obsolete"><br>Fehler in der Sudo Konfiguration</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8083"/>
+ <location filename="onmainwindow.cpp" line="8251"/>
<source>Unable to execute: </source>
<translation>Klarte ikke å utføre:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="140"/>
+ <location filename="onmainwindow.cpp" line="141"/>
<source>X2Go client</source>
<translation>X2Go klient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="164"/>
+ <location filename="onmainwindow.cpp" line="165"/>
<source>Internet browser</source>
<translation>Nettleser</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="165"/>
+ <location filename="onmainwindow.cpp" line="166"/>
<source>Email client</source>
<translation>Epost program</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="739"/>
+ <location filename="onmainwindow.cpp" line="740"/>
<source>&New session ...</source>
<translation>&Ny sesjon ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="745"/>
+ <location filename="onmainwindow.cpp" line="746"/>
<source>Session management...</source>
<translation>Sesjonshåndtering...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="783"/>
- <location filename="onmainwindow.cpp" line="804"/>
+ <location filename="onmainwindow.cpp" line="784"/>
+ <location filename="onmainwindow.cpp" line="805"/>
<source>Show toolbar</source>
<translation>Vis verktøylinje</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="353"/>
- <location filename="onmainwindow.cpp" line="7276"/>
+ <location filename="onmainwindow.cpp" line="354"/>
+ <location filename="onmainwindow.cpp" line="7442"/>
<source>About X2GO client</source>
<translation>Om X2GO klient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1663"/>
- <location filename="onmainwindow.cpp" line="1846"/>
- <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1667"/>
+ <location filename="onmainwindow.cpp" line="1850"/>
+ <location filename="onmainwindow.cpp" line="1880"/>
<source>Please check LDAP settings</source>
<translation>Vennligst sjekk LDAP innstillingene</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1698"/>
+ <location filename="onmainwindow.cpp" line="1702"/>
<source>no X2Go server found in LDAP </source>
<translation>Inge X2Go server ble funnet i LDAP </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2270"/>
+ <location filename="onmainwindow.cpp" line="2279"/>
<source>Are you sure you want to delete this session?</source>
<translation>Er du sikker på at du ønsker å fjerne denne sesjonen?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3191"/>
- <location filename="onmainwindow.cpp" line="4240"/>
- <location filename="onmainwindow.cpp" line="4336"/>
- <location filename="onmainwindow.cpp" line="5743"/>
- <location filename="onmainwindow.cpp" line="5779"/>
- <location filename="onmainwindow.cpp" line="6503"/>
- <location filename="onmainwindow.cpp" line="6584"/>
- <location filename="onmainwindow.cpp" line="6956"/>
- <location filename="onmainwindow.cpp" line="7009"/>
- <location filename="onmainwindow.cpp" line="8063"/>
+ <location filename="onmainwindow.cpp" line="3314"/>
+ <location filename="onmainwindow.cpp" line="4372"/>
+ <location filename="onmainwindow.cpp" line="4469"/>
+ <location filename="onmainwindow.cpp" line="5895"/>
+ <location filename="onmainwindow.cpp" line="5931"/>
+ <location filename="onmainwindow.cpp" line="6666"/>
+ <location filename="onmainwindow.cpp" line="6750"/>
+ <location filename="onmainwindow.cpp" line="7122"/>
+ <location filename="onmainwindow.cpp" line="7175"/>
+ <location filename="onmainwindow.cpp" line="8230"/>
<source><b>Wrong password!</b><br><br></source>
<translation><b>Feil passord!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3374"/>
+ <location filename="onmainwindow.cpp" line="3497"/>
<source>No server availabel</source>
<translation>Ingen tilgjengelig server</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1011"/>
- <location filename="onmainwindow.cpp" line="5065"/>
+ <location filename="onmainwindow.cpp" line="1012"/>
+ <location filename="onmainwindow.cpp" line="5201"/>
<source>Not connected</source>
<oldsource>Active connection</oldsource>
<translation>Ikke tilkoblet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5487"/>
- <location filename="onmainwindow.cpp" line="10277"/>
+ <location filename="onmainwindow.cpp" line="5627"/>
+ <location filename="onmainwindow.cpp" line="10439"/>
<source>Creation time</source>
<translation>Opprettelsestidspunkt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4785"/>
- <location filename="onmainwindow.cpp" line="6830"/>
+ <location filename="onmainwindow.cpp" line="4918"/>
+ <location filename="onmainwindow.cpp" line="6996"/>
<source>Unable to create folder:</source>
<translation>Klarer ikke å opprette katalogen:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2861"/>
+ <location filename="onmainwindow.cpp" line="2851"/>
+ <source>Enter passphrase to decrypt a key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="2879"/>
<source>Host key for server changed.
It is now: </source>
<translation>Vertsnøkkel for serveren har endret seg.
Den er nå: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2862"/>
+ <location filename="onmainwindow.cpp" line="2880"/>
<source>For security reasons, connection will be stopped</source>
<translation>Av hensyn til sikkerheten vil tilkoblingen bli stoppet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2873"/>
+ <location filename="onmainwindow.cpp" line="2893"/>
<source>The host key for this server was not found but an othertype of key exists.An attacker might change the default server key toconfuse your client into thinking the key does not exist</source>
<translation>Vertsnøkkelen for denne serveren ble ikke funnet, men en annen type av nøkkel eksisterer. En angriper kan endre standard server nøkkel for å lure klienten din til å tro at nøkkelen ikke finnes</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2895"/>
+ <location filename="onmainwindow.cpp" line="2919"/>
<source>Could not find known host 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>
- <location filename="onmainwindow.cpp" line="2900"/>
+ <location filename="onmainwindow.cpp" line="2924"/>
<source>The server is unknown. Do you trust the host key?
Public key hash: </source>
<translation>Serveren er ukjent. Stoler du på vertsnøkkelen?
Offentlig nøkkel: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="2912"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2938"/>
<source>Host key verification failed</source>
<translation>Verifiseringen av vertsnøkkelen feilet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2955"/>
<source>Authentication failed</source>
<translation>PÃ¥logging feilet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3383"/>
- <location filename="onmainwindow.cpp" line="3693"/>
- <location filename="onmainwindow.cpp" line="4170"/>
- <location filename="onmainwindow.cpp" line="4308"/>
+ <location filename="onmainwindow.cpp" line="3290"/>
+ <source>Enter passwort for SSH proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="3506"/>
+ <location filename="onmainwindow.cpp" line="3822"/>
+ <location filename="onmainwindow.cpp" line="4300"/>
+ <location filename="onmainwindow.cpp" line="4441"/>
<source>Server not availabel</source>
<translation>Serveren er ikke tilgjengelig</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4811"/>
+ <location filename="onmainwindow.cpp" line="4944"/>
<source>Unable to write file:</source>
<translation>Klarer ikke å skrive til filen:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4960"/>
- <location filename="onmainwindow.cpp" line="8134"/>
+ <location filename="onmainwindow.cpp" line="5094"/>
+ <location filename="onmainwindow.cpp" line="8303"/>
<source>Unable to create SSL tunnel:
</source>
<translation>Klarte ikke å opprette SSL tunnel:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10004"/>
+ <location filename="onmainwindow.cpp" line="10166"/>
<source><b>Session ID:<br>Server:<br>Username:<br>Display:<br>Creation time:<br>Status:</b></source>
<translatorcomment>Uncertain if the translation for "Creation time" is the most fitting one.</translatorcomment>
<translation><b>Sesjons ID:<br>Server:<br>Brukernavn:<br>Skjerm:<br>Opprettet:<br>Status:</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="557"/>
- <location filename="onmainwindow.cpp" line="1038"/>
- <location filename="onmainwindow.cpp" line="10021"/>
+ <location filename="onmainwindow.cpp" line="558"/>
+ <location filename="onmainwindow.cpp" line="1039"/>
+ <location filename="onmainwindow.cpp" line="10183"/>
<source>Share folder...</source>
<translation>Del mappe...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10039"/>
+ <location filename="onmainwindow.cpp" line="10201"/>
<source>Show details</source>
<translation>Vis detailjer</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7277"/>
+ <location filename="onmainwindow.cpp" line="7443"/>
<source><b>X2Go client V. </source>
<translation><b>X2Go klient v. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7600"/>
+ <location filename="onmainwindow.cpp" line="7767"/>
<source>This card is unknown by X2Go system</source>
<translatorcomment>Need to double-check if the translation of "card" is suitable here</translatorcomment>
<translation>Dette kortet er ukjent for X2Go systemet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7897"/>
+ <location filename="onmainwindow.cpp" line="8064"/>
<source>Can't start X server
Please check your settings</source>
<translation>Klarte ikke å starte X-Serveren
Vennligst sjekk instillingene dine</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8099"/>
+ <location filename="onmainwindow.cpp" line="8268"/>
<source>Remote server does not support file system export through SSH Tunnel
Please update to a newer x2goserver package</source>
<translation>Serveren støtter ikke eksport av filsystemet over en SSH Tunnel
Vennligst oppdater til en nyere x2goserver pakke</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="756"/>
+ <location filename="onmainwindow.cpp" line="757"/>
<source>&Create session icon on desktop...</source>
<translation>&Opprett sesjonsikon på skrivebordet...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="765"/>
+ <location filename="onmainwindow.cpp" line="766"/>
<source>&Set broker password...</source>
<translatorcomment>Still uncertain what to best use as a translation for "broker"</translatorcomment>
<translation>&Sett megler passord...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="776"/>
+ <location filename="onmainwindow.cpp" line="777"/>
<source>&Connectivity test...</source>
<translation>&Tilkoblings-test...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
+ <location filename="onmainwindow.cpp" line="893"/>
<source>Operation failed</source>
<translation>Handlingen feilet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="896"/>
+ <location filename="onmainwindow.cpp" line="897"/>
<source>Password changed</source>
<translation>Passordet er endret</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="920"/>
+ <location filename="onmainwindow.cpp" line="921"/>
<source>Wrong password!</source>
<translation>Feil passord!</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="969"/>
+ <location filename="onmainwindow.cpp" line="970"/>
<source><b>Authentication</b></source>
<translation><b>Autentisering</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1009"/>
+ <location filename="onmainwindow.cpp" line="1010"/>
<source>Restore</source>
<translation>Gjenopprett</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1013"/>
+ <location filename="onmainwindow.cpp" line="1014"/>
<source>Multimedia</source>
<translation>Multimedia</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1015"/>
+ <location filename="onmainwindow.cpp" line="1016"/>
<source>Development</source>
<translation>Utvikling</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1017"/>
+ <location filename="onmainwindow.cpp" line="1018"/>
<source>Education</source>
<translation>Opplæring</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1019"/>
+ <location filename="onmainwindow.cpp" line="1020"/>
<source>Game</source>
<translation>Spill</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1021"/>
+ <location filename="onmainwindow.cpp" line="1022"/>
<source>Graphics</source>
<translation>Grafikk</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1023"/>
+ <location filename="onmainwindow.cpp" line="1024"/>
<source>Network</source>
<translation>Nettverk</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1025"/>
+ <location filename="onmainwindow.cpp" line="1026"/>
<source>Office</source>
<translation>Kontor</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1027"/>
+ <location filename="onmainwindow.cpp" line="1028"/>
<source>Settings</source>
<translation>Innstillinger</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1029"/>
+ <location filename="onmainwindow.cpp" line="1030"/>
<source>System</source>
<translation>System</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1031"/>
+ <location filename="onmainwindow.cpp" line="1032"/>
<source>Utility</source>
<translation>Verktøy</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1033"/>
+ <location filename="onmainwindow.cpp" line="1034"/>
<source>Other</source>
<translation>Andre</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1068"/>
+ <location filename="onmainwindow.cpp" line="1069"/>
<source>Left mouse button to hide/restore - Right mouse button to display context menu</source>
<oldsource>Left click to open the X2GoClient window or right click to get the context menu.</oldsource>
<translatorcomment>According to the Norwegian skolelinux translation projects discussion on the words "context menu", I've chosen to follow their guidance and used "sprettoppmeny"</translatorcomment>
<translation>Venstre museknapp for å skjule/gjenopprette - Høyre museknapp viser sprettoppmeny</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2010"/>
+ <location filename="onmainwindow.cpp" line="2014"/>
<source>Create session icon on desktop</source>
<translation>Opprett sesjonsikon på skrivebordet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2011"/>
+ <location filename="onmainwindow.cpp" line="2015"/>
<source>Desktop icons can be configured not to show x2goclient (hidden mode). If you like to use this feature you'll need to configure login by a gpg key or gpg smart card.
Use x2goclient hidden mode?</source>
@@ -1746,45 +1756,45 @@ Use x2goclient hidden mode?</source>
Ãnsker du Ã¥ aktivere skjult modus for x2goklient?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2022"/>
+ <location filename="onmainwindow.cpp" line="2026"/>
<source>New Session</source>
<translation>Ny sesjon</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2122"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
<source>X2Go sessions not found</source>
<translation>X2Go sesjoner ble ikke funnet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2643"/>
+ <location filename="onmainwindow.cpp" line="2652"/>
<source>RDP connection</source>
<translation>RDP tilkobling</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2072"/>
+ <location filename="onmainwindow.cpp" line="2081"/>
<source>X2Go Link to session </source>
<translatorcomment>Uncertain of the context here, need to doublecheck this.</translatorcomment>
<translation>X2Go kobling til sesjon </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="569"/>
- <location filename="onmainwindow.cpp" line="9447"/>
+ <location filename="onmainwindow.cpp" line="570"/>
+ <location filename="onmainwindow.cpp" line="9626"/>
<source>Detach X2Go window</source>
<translation>Løsne X2Go vindu</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4934"/>
- <location filename="onmainwindow.cpp" line="9422"/>
+ <location filename="onmainwindow.cpp" line="5068"/>
+ <location filename="onmainwindow.cpp" line="9601"/>
<source>Attach X2Go window</source>
<translation>Feste X2Go vindu</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5152"/>
+ <location filename="onmainwindow.cpp" line="5291"/>
<source>Finished</source>
<translation>Ferdig</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5400"/>
+ <location filename="onmainwindow.cpp" line="5539"/>
<source>Are you sure you want to terminate this session?
Unsaved documents will be lost</source>
<translation>Er du sikker på at du vil avslutte denne sesjonen?
@@ -1795,27 +1805,27 @@ Ulagrede data vil gå tapt</translation>
<translation type="obsolete"></b><br> (C. 2006-2009 <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 X2Go Servers 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="onmainwindow.cpp" line="7911"/>
- <location filename="onmainwindow.cpp" line="8557"/>
- <location filename="onmainwindow.cpp" line="8585"/>
+ <location filename="onmainwindow.cpp" line="8078"/>
+ <location filename="onmainwindow.cpp" line="8726"/>
+ <location filename="onmainwindow.cpp" line="8754"/>
<source>Can't start X Server
Please check your installation</source>
<translation>Klarer ikke å starte X Serveren
Vennligst sjekk din installasjon</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9511"/>
+ <location filename="onmainwindow.cpp" line="9689"/>
<source>X2Go Session</source>
<translation>X2Go sesjon</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="572"/>
- <location filename="onmainwindow.cpp" line="10497"/>
+ <location filename="onmainwindow.cpp" line="573"/>
+ <location filename="onmainwindow.cpp" line="10659"/>
<source>Minimize toolbar</source>
<translation>Minimer verktøylinje</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10530"/>
+ <location filename="onmainwindow.cpp" line="10692"/>
<source><br><b> Click this button <br> to restore toolbar </b><br></source>
<translation><br><b> Trykk her <br> for å gjenopprette <br> verktøylinjen </b><br></translation>
</message>
@@ -1824,7 +1834,7 @@ Vennligst sjekk din installasjon</translation>
<translation type="obsolete">Konfigurationsdatei lässt sich nicht öffnen:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10414"/>
+ <location filename="onmainwindow.cpp" line="10576"/>
<source>sshd not started, you'll need sshd for printing and file sharing
you can install sshd with
<b>sudo apt-get install openssh-server</b></source>
@@ -1833,65 +1843,65 @@ Du kan installere sshd med:
<b>sudo apt-get install openssh-server</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2651"/>
+ <location filename="onmainwindow.cpp" line="2660"/>
<source>Connection to local desktop</source>
<translation>Tilkobling til lokalt skrivebord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3984"/>
+ <location filename="onmainwindow.cpp" line="4113"/>
<source>Information</source>
<translation>Informasjon</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3998"/>
- <location filename="onmainwindow.cpp" line="10598"/>
+ <location filename="onmainwindow.cpp" line="4127"/>
+ <location filename="onmainwindow.cpp" line="10760"/>
<source>Filter</source>
<translation>Filter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4005"/>
+ <location filename="onmainwindow.cpp" line="4134"/>
<source>Select desktop:</source>
<translation>Velg skrivebord:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10205"/>
+ <location filename="onmainwindow.cpp" line="10367"/>
<source>View only</source>
<translation>Kun vis</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10285"/>
+ <location filename="onmainwindow.cpp" line="10447"/>
<source>User</source>
<translation>Bruker</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2647"/>
+ <location filename="onmainwindow.cpp" line="2656"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3985"/>
+ <location filename="onmainwindow.cpp" line="4114"/>
<source>No accessible desktop found</source>
<translation>Ingen tilgjengelige skrivebord ble funnet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10202"/>
+ <location filename="onmainwindow.cpp" line="10364"/>
<source>Full access</source>
<translation>Full tilgang</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10316"/>
+ <location filename="onmainwindow.cpp" line="10478"/>
<source>Only my desktops</source>
<translation>Kun mine skrivebord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="565"/>
+ <location filename="onmainwindow.cpp" line="566"/>
<source>Reconnect</source>
<translation>Gjenoppkoble</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="924"/>
- <location filename="onmainwindow.cpp" line="2560"/>
- <location filename="onmainwindow.cpp" line="10667"/>
+ <location filename="onmainwindow.cpp" line="925"/>
+ <location filename="onmainwindow.cpp" line="2569"/>
+ <location filename="onmainwindow.cpp" line="10829"/>
<source>Connecting to broker</source>
<translation>Koble til megleren</translation>
</message>
@@ -1900,27 +1910,27 @@ Du kan installere sshd med:
<translation type="obsolete"></b><br> (C. 2006-2010 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7260"/>
+ <location filename="onmainwindow.cpp" line="7426"/>
<source><br>x2goplugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></source>
<translation><br>x2goplugin modusen ble sponset av <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7264"/>
+ <location filename="onmainwindow.cpp" line="7430"/>
<source><br>Client for use with 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 fullscreen loginscreen (replacement for loginmanager like xdm). Please visit x2go.org for further information.</source>
<translation><br>Ein Client für den Zugriff auf die serverbasierende Anwendungsumgebung X2Go. Mit Hilfe dieser Anwendung können Sie Sitzungen eines X2Go Servers 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="onmainwindow.cpp" line="8276"/>
+ <location filename="onmainwindow.cpp" line="8445"/>
<source>WINDOWS-1252</source>
<translation>WINDOWS-1252</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8288"/>
+ <location filename="onmainwindow.cpp" line="8457"/>
<source>ISO8859-1</source>
<translation>ISO8859-1</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9693"/>
+ <location filename="onmainwindow.cpp" line="9871"/>
<source>wrong value for argument"speed"</source>
<translation>wrong value for argument"speed"</translation>
</message>
@@ -2305,171 +2315,227 @@ Eksempel:
<context>
<name>SessionWidget</name>
<message>
- <location filename="sessionwidget.cpp" line="52"/>
+ <location filename="sessionwidget.cpp" line="55"/>
<source>Session name:</source>
<translation>Sesjonsnavn:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="57"/>
+ <location filename="sessionwidget.cpp" line="60"/>
<source><< change icon</source>
<translation><< endre ikon</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="60"/>
+ <location filename="sessionwidget.cpp" line="63"/>
<source>&Server</source>
<translation>&Server</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="93"/>
+ <location filename="sessionwidget.cpp" line="96"/>
+ <location filename="sessionwidget.cpp" line="154"/>
<source>Host:</source>
<translation>Vert:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="94"/>
+ <location filename="sessionwidget.cpp" line="97"/>
+ <location filename="sessionwidget.cpp" line="160"/>
<source>Login:</source>
<translation>Brukernavn:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="95"/>
- <location filename="sessionwidget.cpp" line="237"/>
+ <location filename="sessionwidget.cpp" line="98"/>
+ <location filename="sessionwidget.cpp" line="360"/>
<source>SSH port:</source>
<translation>SSH port:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="110"/>
+ <location filename="sessionwidget.cpp" line="113"/>
<source>Use RSA/DSA key for ssh connection:</source>
<translation>Bruk RSA/DSA nøkkel for SSH tilkobling:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="117"/>
+ <location filename="sessionwidget.cpp" line="120"/>
<source>Try auto login (ssh-agent or default ssh key)</source>
<translation>Forsøk automatisk pålogging (SSH agent, eller standard SSH nøkkel)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="118"/>
+ <location filename="sessionwidget.cpp" line="121"/>
<source>Kerberos 5 (GSSAPI) authentication</source>
<translation>Kerberos 5 (GSSAPI) autentisering</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="123"/>
+ <location filename="sessionwidget.cpp" line="124"/>
+ <source>Use Proxy server for SSH connection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="125"/>
+ <source>Proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="131"/>
+ <source>SSH</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="132"/>
+ <source>HTTP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="140"/>
+ <source>Same login as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="142"/>
+ <source>Same password as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="144"/>
+ <source>RSA/DSA key:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="149"/>
+ <source>ssh-agent or default ssh key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="151"/>
+ <source>Type:</source>
+ <translation type="unfinished">Type:</translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="155"/>
+ <source>Port:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="170"/>
<source>&Session type</source>
<translation>&Sesjontype</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="128"/>
+ <location filename="sessionwidget.cpp" line="175"/>
<source>Session type:</source>
<translation>Sesjontype:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="138"/>
- <location filename="sessionwidget.cpp" line="361"/>
+ <location filename="sessionwidget.cpp" line="185"/>
+ <location filename="sessionwidget.cpp" line="484"/>
<source>Connect to Windows terminal server</source>
<translation>Koble til Windows terminal server</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="139"/>
+ <location filename="sessionwidget.cpp" line="186"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="140"/>
+ <location filename="sessionwidget.cpp" line="187"/>
<source>Connect to local desktop</source>
<translation>Koble til lokalt skrivebord</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="141"/>
+ <location filename="sessionwidget.cpp" line="188"/>
<source>Custom desktop</source>
<translatorcomment>The normal "brukertilpasset" doesn't fit here</translatorcomment>
<translation>Selvvalgt skrivebord</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="142"/>
+ <location filename="sessionwidget.cpp" line="189"/>
<source>Single application</source>
<translation>Enkel applikasjon</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="143"/>
+ <location filename="sessionwidget.cpp" line="190"/>
<source>Published applications</source>
<translation>Publiserte applikasjoner</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="145"/>
- <location filename="sessionwidget.cpp" line="305"/>
+ <location filename="sessionwidget.cpp" line="192"/>
+ <location filename="sessionwidget.cpp" line="428"/>
<source>Command:</source>
<translation>Kommando:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="146"/>
+ <location filename="sessionwidget.cpp" line="193"/>
<source>Advanced options...</source>
<translation>Avanserte alternativer...</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="158"/>
- <location filename="sessionwidget.cpp" line="523"/>
- <location filename="sessionwidget.cpp" line="597"/>
+ <location filename="sessionwidget.cpp" line="205"/>
+ <location filename="sessionwidget.cpp" line="713"/>
+ <location filename="sessionwidget.cpp" line="808"/>
<source>Path to executable</source>
<translation>Sti til programfil</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="168"/>
+ <location filename="sessionwidget.cpp" line="215"/>
<source>Direct RDP Connection</source>
<translation>Direktekobling med RDP</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="233"/>
+ <location filename="sessionwidget.cpp" line="356"/>
<source>RDP port:</source>
<translation>RDP port:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="249"/>
+ <location filename="sessionwidget.cpp" line="372"/>
<source>Open picture</source>
<translation>Ã
pne bilde</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="251"/>
+ <location filename="sessionwidget.cpp" line="374"/>
<source>Pictures</source>
<translation>Bilder</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="272"/>
+ <location filename="sessionwidget.cpp" line="283"/>
+ <location filename="sessionwidget.cpp" line="395"/>
<source>Open key file</source>
<translation>Ã
pne nøkkelfil</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="274"/>
+ <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="397"/>
<source>All files</source>
<translation>Alle filer</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="284"/>
+ <location filename="sessionwidget.cpp" line="295"/>
+ <location filename="sessionwidget.cpp" line="407"/>
<source>Error</source>
<translation>Feil</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="296"/>
+ <location filename="sessionwidget.cpp" line="408"/>
<source>x2goclient is running in portable mode. You should use a path on your usb device to be able to access your data whereever you are</source>
<translation>x2goclient kjører i portabel modus. Du burde bruke en sti på din USB enhet for å kunne benytte dataene dine uavhengig av hvor du er</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="332"/>
- <location filename="sessionwidget.cpp" line="478"/>
+ <location filename="sessionwidget.cpp" line="455"/>
+ <location filename="sessionwidget.cpp" line="668"/>
<source>Server:</source>
<translation>Server:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="341"/>
- <location filename="sessionwidget.cpp" line="490"/>
+ <location filename="sessionwidget.cpp" line="464"/>
+ <location filename="sessionwidget.cpp" line="680"/>
<source>XDMCP server:</source>
<translation>XDMCP server:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="362"/>
+ <location filename="sessionwidget.cpp" line="485"/>
<source>rdesktop command line options:</source>
<translation>rdesktop kommandolinjevalg:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="375"/>
- <location filename="sessionwidget.cpp" line="502"/>
+ <location filename="sessionwidget.cpp" line="498"/>
+ <location filename="sessionwidget.cpp" line="692"/>
<source>New session</source>
<translation>Ny sesjon</translation>
</message>
@@ -2618,17 +2684,17 @@ lydsystem forbindelser gjennom brannmurer</translation>
<translation>Kommandolinje:</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="642"/>
+ <location filename="settingswidget.cpp" line="645"/>
<source>us</source>
<translation>no</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="643"/>
+ <location filename="settingswidget.cpp" line="646"/>
<source>pc105/us</source>
<translation>pc105/no</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="757"/>
+ <location filename="settingswidget.cpp" line="760"/>
<source>password</source>
<translation>passord</translation>
</message>
@@ -2718,85 +2784,106 @@ lydsystem forbindelser gjennom brannmurer</translation>
<context>
<name>SshMasterConnection</name>
<message>
- <location filename="sshmasterconnection.cpp" line="133"/>
+ <location filename="sshmasterconnection.cpp" line="170"/>
+ <source>SSH proxy connection error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="175"/>
+ <location filename="sshmasterconnection.cpp" line="181"/>
+ <source>SSH proxy connection error: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="197"/>
+ <source>Failed to create SSH proxy tunnel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="265"/>
<source>Can not initialize libssh</source>
<translatorcomment>I need to revisit the word 'initiere', a better word could be 'klargjøre'</translatorcomment>
<translation>Klarer ikke å initiere libssh</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="159"/>
+ <location filename="sshmasterconnection.cpp" line="291"/>
<source>Can not create ssh session</source>
<translation>Klarer ikke å opprette ssh sesjon</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="177"/>
+ <location filename="sshmasterconnection.cpp" line="319"/>
+ <source>Can not connect to proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="340"/>
<source>Can not connect to </source>
<translation>Klarer ikke å koble til </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="218"/>
+ <location filename="sshmasterconnection.cpp" line="394"/>
<source>Authentication failed</source>
<translation>Autentisering feilet</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="244"/>
+ <location filename="sshmasterconnection.cpp" line="420"/>
<source>channel_forward_listen failed</source>
<translatorcomment>I'm not sure if this is a static variable which shouldn't be translated or not, but I left it as I believe it's a variable.</translatorcomment>
<translation>channel_forward_listen feilet</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="560"/>
+ <location filename="sshmasterconnection.cpp" line="830"/>
<source>Can not open file </source>
<translation>Kan ikke åpne filen </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="572"/>
+ <location filename="sshmasterconnection.cpp" line="842"/>
<source>Can not create remote file </source>
<translation>Klarer ikke å opprette fil over nettverket </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="585"/>
+ <location filename="sshmasterconnection.cpp" line="855"/>
<source>Can not write to remote file </source>
<translation>Klarer ikke å skrive til filen over nettverket </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="642"/>
+ <location filename="sshmasterconnection.cpp" line="912"/>
<source>can not connect to </source>
<translation>Klarer ikke å koble til </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="751"/>
+ <location filename="sshmasterconnection.cpp" line="1029"/>
<source>channel_open_forward failed</source>
<translation>channel_open_forward feilet</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="770"/>
+ <location filename="sshmasterconnection.cpp" line="1048"/>
<source>channel_open_session failed</source>
<translation>channel_open_session feilet</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="777"/>
+ <location filename="sshmasterconnection.cpp" line="1055"/>
<source>channel_request_exec failed</source>
<translation>channel_request_exec feilet</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="842"/>
+ <location filename="sshmasterconnection.cpp" line="1120"/>
<source>error writing to socket</source>
<translatorcomment>Really not any great words to best translate socket into...</translatorcomment>
<translation>feil ved skriving til sokkelen</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="860"/>
+ <location filename="sshmasterconnection.cpp" line="1138"/>
<source>error reading channel</source>
<translation>feil under lesing av kanalen</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="890"/>
+ <location filename="sshmasterconnection.cpp" line="1168"/>
<source>channel_write failed</source>
<translation>channel_write feilet</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="902"/>
+ <location filename="sshmasterconnection.cpp" line="1180"/>
<source>error reading tcp socket</source>
<translation>feil ved lesing av tcp sokkelen</translation>
</message>
@@ -2804,12 +2891,12 @@ lydsystem forbindelser gjennom brannmurer</translation>
<context>
<name>SshProcess</name>
<message>
- <location filename="sshprocess.cpp" line="97"/>
+ <location filename="sshprocess.cpp" line="112"/>
<source>Error creating socket</source>
<translation>feil under opprettelse av sokkelen</translation>
</message>
<message>
- <location filename="sshprocess.cpp" line="115"/>
+ <location filename="sshprocess.cpp" line="130"/>
<source>Error binding </source>
<translation>Feil ved binding </translation>
</message>
diff --git a/x2goclient_ru.ts b/x2goclient_ru.ts
index 5ce98ae..a06cdb7 100644
--- a/x2goclient_ru.ts
+++ b/x2goclient_ru.ts
@@ -1129,41 +1129,41 @@ sound system connections through firewalls</source>
<context>
<name>ONMainWindow</name>
<message>
- <location filename="onmainwindow.cpp" line="90"/>
- <location filename="onmainwindow.cpp" line="6030"/>
+ <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="6188"/>
<source>us</source>
<translation>ru</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="91"/>
+ <location filename="onmainwindow.cpp" line="93"/>
<source>pc105/us</source>
<translation>pc105/ru</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="346"/>
+ <location filename="onmainwindow.cpp" line="347"/>
<source>Support ...</source>
<translation>ÐоддеÑжка ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="682"/>
- <location filename="onmainwindow.cpp" line="1987"/>
- <location filename="onmainwindow.cpp" line="7376"/>
+ <location filename="onmainwindow.cpp" line="683"/>
+ <location filename="onmainwindow.cpp" line="1991"/>
+ <location filename="onmainwindow.cpp" line="7542"/>
<source>Session:</source>
<translation>СеÑÑиÑ:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="734"/>
+ <location filename="onmainwindow.cpp" line="735"/>
<source>&Quit</source>
<translation>&ÐÑÑ
од</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="735"/>
+ <location filename="onmainwindow.cpp" line="736"/>
<source>Ctrl+Q</source>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="736"/>
- <location filename="onmainwindow.cpp" line="1057"/>
+ <location filename="onmainwindow.cpp" line="737"/>
+ <location filename="onmainwindow.cpp" line="1058"/>
<source>Quit</source>
<translation>ÐÑÑ
од</translation>
</message>
@@ -1172,7 +1172,7 @@ sound system connections through firewalls</source>
<translation type="obsolete">&ÐÐ¾Ð²Ð°Ñ ÑеÑÑÐ¸Ñ ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="740"/>
+ <location filename="onmainwindow.cpp" line="741"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
@@ -1181,17 +1181,17 @@ sound system connections through firewalls</source>
<translation type="obsolete">УпÑавление ÑеÑÑиÑми...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="746"/>
+ <location filename="onmainwindow.cpp" line="747"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="342"/>
+ <location filename="onmainwindow.cpp" line="343"/>
<source>&Settings ...</source>
<translation>&УÑÑановки ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10485"/>
+ <location filename="onmainwindow.cpp" line="10647"/>
<source>Restore toolbar</source>
<translation>ÐоÑÑÑановиÑÑ Ð¿Ð°Ð½ÐµÐ»Ñ Ð¸Ð½ÑÑÑÑменÑов</translation>
</message>
@@ -1200,68 +1200,68 @@ sound system connections through firewalls</source>
<translation type="obsolete">РпÑогÑамме "X2GO Client"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="789"/>
+ <location filename="onmainwindow.cpp" line="790"/>
<source>About Qt</source>
<translation>Ð Qt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5483"/>
+ <location filename="onmainwindow.cpp" line="5623"/>
<source>Session</source>
<translation>СеÑÑиÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="806"/>
+ <location filename="onmainwindow.cpp" line="807"/>
<source>Ctrl+Q</source>
<comment>exit</comment>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="812"/>
+ <location filename="onmainwindow.cpp" line="813"/>
<source>&Session</source>
<translation>&СеÑÑиÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="813"/>
+ <location filename="onmainwindow.cpp" line="814"/>
<source>&Options</source>
<translation>&ÐпÑии</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="832"/>
+ <location filename="onmainwindow.cpp" line="833"/>
<source>&Help</source>
<translation>&ÐомоÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="871"/>
- <location filename="onmainwindow.cpp" line="1980"/>
- <location filename="onmainwindow.cpp" line="7369"/>
- <location filename="onmainwindow.cpp" line="9822"/>
+ <location filename="onmainwindow.cpp" line="872"/>
+ <location filename="onmainwindow.cpp" line="1984"/>
+ <location filename="onmainwindow.cpp" line="7535"/>
+ <location filename="onmainwindow.cpp" line="9984"/>
<source>Login:</source>
<translation>ÐолÑзоваÑелÑ:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9823"/>
+ <location filename="onmainwindow.cpp" line="9985"/>
<source>Password:</source>
<translation>ÐаÑолÑ:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9824"/>
+ <location filename="onmainwindow.cpp" line="9986"/>
<source>Keyboard layout:</source>
<translation>РаÑкладка ÐлавиаÑÑÑÑ:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9865"/>
+ <location filename="onmainwindow.cpp" line="10027"/>
<source>Ok</source>
<translation>ÐÐ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9867"/>
- <location filename="onmainwindow.cpp" line="10189"/>
- <location filename="onmainwindow.cpp" line="10191"/>
+ <location filename="onmainwindow.cpp" line="10029"/>
+ <location filename="onmainwindow.cpp" line="10351"/>
+ <location filename="onmainwindow.cpp" line="10353"/>
<source>Cancel</source>
<translation>ÐÑмена</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10014"/>
+ <location filename="onmainwindow.cpp" line="10176"/>
<source>Applications...</source>
<translation>ÐÑиложениÑ...</translation>
</message>
@@ -1270,55 +1270,55 @@ sound system connections through firewalls</source>
<translation type="obsolete">ÐевеÑнÑй оÑÐ²ÐµÑ Ð±ÑокеÑа</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
- <location filename="onmainwindow.cpp" line="920"/>
- <location filename="onmainwindow.cpp" line="1662"/>
- <location filename="onmainwindow.cpp" line="1691"/>
- <location filename="onmainwindow.cpp" line="1699"/>
- <location filename="onmainwindow.cpp" line="1845"/>
- <location filename="onmainwindow.cpp" line="1872"/>
- <location filename="onmainwindow.cpp" line="1875"/>
- <location filename="onmainwindow.cpp" line="2122"/>
- <location filename="onmainwindow.cpp" line="2345"/>
- <location filename="onmainwindow.cpp" line="2359"/>
- <location filename="onmainwindow.cpp" line="2372"/>
- <location filename="onmainwindow.cpp" line="2406"/>
- <location filename="onmainwindow.cpp" line="2451"/>
- <location filename="onmainwindow.cpp" line="3195"/>
- <location filename="onmainwindow.cpp" line="3373"/>
- <location filename="onmainwindow.cpp" line="3382"/>
- <location filename="onmainwindow.cpp" line="3692"/>
- <location filename="onmainwindow.cpp" line="4169"/>
- <location filename="onmainwindow.cpp" line="4244"/>
- <location filename="onmainwindow.cpp" line="4307"/>
- <location filename="onmainwindow.cpp" line="4340"/>
- <location filename="onmainwindow.cpp" line="4384"/>
- <location filename="onmainwindow.cpp" line="4787"/>
- <location filename="onmainwindow.cpp" line="4813"/>
- <location filename="onmainwindow.cpp" line="4962"/>
- <location filename="onmainwindow.cpp" line="5746"/>
- <location filename="onmainwindow.cpp" line="5782"/>
- <location filename="onmainwindow.cpp" line="6507"/>
- <location filename="onmainwindow.cpp" line="6588"/>
- <location filename="onmainwindow.cpp" line="6832"/>
- <location filename="onmainwindow.cpp" line="6960"/>
- <location filename="onmainwindow.cpp" line="7013"/>
- <location filename="onmainwindow.cpp" line="7319"/>
- <location filename="onmainwindow.cpp" line="7321"/>
- <location filename="onmainwindow.cpp" line="7551"/>
- <location filename="onmainwindow.cpp" line="7599"/>
- <location filename="onmainwindow.cpp" line="7627"/>
- <location filename="onmainwindow.cpp" line="8067"/>
- <location filename="onmainwindow.cpp" line="8082"/>
- <location filename="onmainwindow.cpp" line="8136"/>
- <location filename="onmainwindow.cpp" line="8164"/>
- <location filename="onmainwindow.cpp" line="8189"/>
- <location filename="onmainwindow.cpp" line="10413"/>
+ <location filename="onmainwindow.cpp" line="893"/>
+ <location filename="onmainwindow.cpp" line="921"/>
+ <location filename="onmainwindow.cpp" line="1666"/>
+ <location filename="onmainwindow.cpp" line="1695"/>
+ <location filename="onmainwindow.cpp" line="1703"/>
+ <location filename="onmainwindow.cpp" line="1849"/>
+ <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
+ <location filename="onmainwindow.cpp" line="2354"/>
+ <location filename="onmainwindow.cpp" line="2368"/>
+ <location filename="onmainwindow.cpp" line="2381"/>
+ <location filename="onmainwindow.cpp" line="2415"/>
+ <location filename="onmainwindow.cpp" line="2460"/>
+ <location filename="onmainwindow.cpp" line="3318"/>
+ <location filename="onmainwindow.cpp" line="3496"/>
+ <location filename="onmainwindow.cpp" line="3505"/>
+ <location filename="onmainwindow.cpp" line="3821"/>
+ <location filename="onmainwindow.cpp" line="4299"/>
+ <location filename="onmainwindow.cpp" line="4376"/>
+ <location filename="onmainwindow.cpp" line="4440"/>
+ <location filename="onmainwindow.cpp" line="4473"/>
+ <location filename="onmainwindow.cpp" line="4517"/>
+ <location filename="onmainwindow.cpp" line="4920"/>
+ <location filename="onmainwindow.cpp" line="4946"/>
+ <location filename="onmainwindow.cpp" line="5096"/>
+ <location filename="onmainwindow.cpp" line="5898"/>
+ <location filename="onmainwindow.cpp" line="5934"/>
+ <location filename="onmainwindow.cpp" line="6670"/>
+ <location filename="onmainwindow.cpp" line="6754"/>
+ <location filename="onmainwindow.cpp" line="6998"/>
+ <location filename="onmainwindow.cpp" line="7126"/>
+ <location filename="onmainwindow.cpp" line="7179"/>
+ <location filename="onmainwindow.cpp" line="7485"/>
+ <location filename="onmainwindow.cpp" line="7487"/>
+ <location filename="onmainwindow.cpp" line="7718"/>
+ <location filename="onmainwindow.cpp" line="7766"/>
+ <location filename="onmainwindow.cpp" line="7794"/>
+ <location filename="onmainwindow.cpp" line="8234"/>
+ <location filename="onmainwindow.cpp" line="8250"/>
+ <location filename="onmainwindow.cpp" line="8305"/>
+ <location filename="onmainwindow.cpp" line="8333"/>
+ <location filename="onmainwindow.cpp" line="8358"/>
+ <location filename="onmainwindow.cpp" line="10575"/>
<source>Error</source>
<translation>ÐÑибка</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7322"/>
+ <location filename="onmainwindow.cpp" line="7488"/>
<source>Please check LDAP Settings</source>
<translation>ÐÑовеÑÑе наÑÑÑойки LDAP</translation>
</message>
@@ -1331,32 +1331,32 @@ sound system connections through firewalls</source>
<translation type="obsolete">УдалиÑÑ ÑеÑÑиÑ?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2578"/>
- <location filename="onmainwindow.cpp" line="5591"/>
+ <location filename="onmainwindow.cpp" line="2587"/>
+ <location filename="onmainwindow.cpp" line="5733"/>
<source>KDE</source>
<translation>KDE</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2655"/>
+ <location filename="onmainwindow.cpp" line="2664"/>
<source> on </source>
<translation> на </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3188"/>
- <location filename="onmainwindow.cpp" line="4237"/>
- <location filename="onmainwindow.cpp" line="4333"/>
- <location filename="onmainwindow.cpp" line="4366"/>
- <location filename="onmainwindow.cpp" line="6500"/>
- <location filename="onmainwindow.cpp" line="6581"/>
- <location filename="onmainwindow.cpp" line="6953"/>
- <location filename="onmainwindow.cpp" line="7006"/>
- <location filename="onmainwindow.cpp" line="8060"/>
+ <location filename="onmainwindow.cpp" line="3311"/>
+ <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4466"/>
+ <location filename="onmainwindow.cpp" line="4499"/>
+ <location filename="onmainwindow.cpp" line="6663"/>
+ <location filename="onmainwindow.cpp" line="6747"/>
+ <location filename="onmainwindow.cpp" line="7119"/>
+ <location filename="onmainwindow.cpp" line="7172"/>
+ <location filename="onmainwindow.cpp" line="8227"/>
<source><b>Connection failed</b>
</source>
<translation><b>ÐÑибка ÑоединениÑ</b><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4502"/>
<source><b>Wrong Password!</b><br><br></source>
<translation><b>ÐевеÑнÑй паÑолÑ!</b><br><br></translation>
</message>
@@ -1365,51 +1365,51 @@ sound system connections through firewalls</source>
<translation type="obsolete">Ðе доÑÑÑпен ни один ÑеÑвеÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3923"/>
- <location filename="onmainwindow.cpp" line="10185"/>
+ <location filename="onmainwindow.cpp" line="4052"/>
+ <location filename="onmainwindow.cpp" line="10347"/>
<source>Select session:</source>
<translation>СеÑÑиÑ:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10187"/>
+ <location filename="onmainwindow.cpp" line="10349"/>
<source>Resume</source>
<translation>ÐоÑÑÑановиÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="560"/>
- <location filename="onmainwindow.cpp" line="1039"/>
- <location filename="onmainwindow.cpp" line="5223"/>
- <location filename="onmainwindow.cpp" line="10194"/>
+ <location filename="onmainwindow.cpp" line="561"/>
+ <location filename="onmainwindow.cpp" line="1040"/>
+ <location filename="onmainwindow.cpp" line="5362"/>
+ <location filename="onmainwindow.cpp" line="10356"/>
<source>Suspend</source>
<translation>ÐÑеÑваÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="563"/>
- <location filename="onmainwindow.cpp" line="1040"/>
- <location filename="onmainwindow.cpp" line="10034"/>
+ <location filename="onmainwindow.cpp" line="564"/>
+ <location filename="onmainwindow.cpp" line="1041"/>
<location filename="onmainwindow.cpp" line="10196"/>
+ <location filename="onmainwindow.cpp" line="10358"/>
<source>Terminate</source>
<translation>ÐавеÑÑиÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10199"/>
+ <location filename="onmainwindow.cpp" line="10361"/>
<source>New</source>
<translation>ÐоваÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5485"/>
- <location filename="onmainwindow.cpp" line="10266"/>
- <location filename="onmainwindow.cpp" line="10288"/>
+ <location filename="onmainwindow.cpp" line="5625"/>
+ <location filename="onmainwindow.cpp" line="10428"/>
+ <location filename="onmainwindow.cpp" line="10450"/>
<source>Display</source>
<translation>ÐиÑплей</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10268"/>
+ <location filename="onmainwindow.cpp" line="10430"/>
<source>Status</source>
<translation>СÑаÑÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10274"/>
+ <location filename="onmainwindow.cpp" line="10436"/>
<source>Server</source>
<translation>СеÑвеÑ</translation>
</message>
@@ -1418,121 +1418,131 @@ sound system connections through firewalls</source>
<translation type="obsolete">ÐÑÐµÐ¼Ñ ÑозданиÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10279"/>
+ <location filename="onmainwindow.cpp" line="10441"/>
<source>Client IP</source>
<translation>IP клиенÑа</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10281"/>
+ <location filename="onmainwindow.cpp" line="10443"/>
<source>Session ID</source>
<translation>ID ÑеÑÑии</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3939"/>
- <location filename="onmainwindow.cpp" line="4033"/>
- <location filename="onmainwindow.cpp" line="5187"/>
+ <location filename="onmainwindow.cpp" line="4068"/>
+ <location filename="onmainwindow.cpp" line="4162"/>
+ <location filename="onmainwindow.cpp" line="5326"/>
<source>running</source>
<translation>акÑивна</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3941"/>
- <location filename="onmainwindow.cpp" line="4256"/>
+ <location filename="onmainwindow.cpp" line="4070"/>
+ <location filename="onmainwindow.cpp" line="4388"/>
<source>suspended</source>
<translation>пÑеÑвана</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4083"/>
- <location filename="onmainwindow.cpp" line="4103"/>
- <location filename="onmainwindow.cpp" line="4991"/>
- <location filename="onmainwindow.cpp" line="5399"/>
+ <location filename="onmainwindow.cpp" line="4212"/>
+ <location filename="onmainwindow.cpp" line="4232"/>
+ <location filename="onmainwindow.cpp" line="5126"/>
+ <location filename="onmainwindow.cpp" line="5538"/>
<source>Warning</source>
<translation>ÐÑедÑпÑеждение</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4084"/>
- <location filename="onmainwindow.cpp" line="4104"/>
+ <location filename="onmainwindow.cpp" line="4213"/>
+ <location filename="onmainwindow.cpp" line="4233"/>
<source>Your current color depth is different to the color depth of your x2go-session. 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>ÐлÑбина ÑвеÑа ваÑего диÑÐ¿Ð»ÐµÑ Ð½Ðµ ÑооÑвеÑÑÑвÑÐµÑ Ð³Ð»Ñбине ÑвеÑа данной ÑеÑÑии. ÐÑо Ð¼Ð¾Ð¶ÐµÑ Ð¿Ð¾Ð¼ÐµÑаÑÑ Ð²Ð¾ÑÑÑÐ°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑеÑÑии и в болÑÑинÑÑве ÑлÑÑаев<b>ÑеÑÑÐ¸Ñ Ð±ÑÐ´ÐµÑ ÑÑеÑÑна</b> РекомендÑеÑÑÑ Ð¸Ð·Ð¼ÐµÐ½Ð¸ÑÑ Ð³Ð»ÑÐ±Ð¸Ð½Ñ ÑвеÑа ваÑего диÑÐ¿Ð»ÐµÑ Ð½Ð°(sp)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4092"/>
+ <location filename="onmainwindow.cpp" line="4221"/>
<source>24 or 32</source>
<translation>24 или 32</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4093"/>
- <location filename="onmainwindow.cpp" line="4113"/>
+ <location filename="onmainwindow.cpp" line="4222"/>
+ <location filename="onmainwindow.cpp" line="4242"/>
<source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source>
<translation> Ð±Ð¸Ñ Ð¸ пеÑезапÑÑÑиÑÑ X-ÑеÑÐ²ÐµÑ Ð´Ð¾ воÑÑÑÐ°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ ÑеÑÑии.<br>ÐопÑобоваÑÑ Ð²Ð¾ÑÑÑановиÑÑ ÑеÑÑÐ¸Ñ Ð½Ðµ ÑмоÑÑÑ Ð½Ð° данное пÑедÑпÑеждение?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4096"/>
- <location filename="onmainwindow.cpp" line="4116"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4245"/>
<source>Yes</source>
<translation>Ðа</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2861"/>
+ <location filename="onmainwindow.cpp" line="2851"/>
+ <source>Enter passphrase to decrypt a key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="2879"/>
<source>Host key for server changed.
It is now: </source>
<translation>ÐлÑÑ Ð½Ð° ÑеÑвеÑе изменен:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2862"/>
+ <location filename="onmainwindow.cpp" line="2880"/>
<source>For security reasons, connection will be stopped</source>
<translation>Ðз ÑообÑажений безопаÑноÑÑи Ñоединение бÑÐ´ÐµÑ ÑазоÑвано</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2873"/>
+ <location filename="onmainwindow.cpp" line="2893"/>
<source>The host key for this server was not found but an othertype of key exists.An attacker might change the default server key toconfuse your client into thinking the key does not exist</source>
<translation>ÐлÑÑ Ð´Ð»Ñ ÑÑого ÑеÑвеÑа не найден, но дÑÑгой ваÑÐ¸Ð°Ð½Ñ ÐºÐ»ÑÑа ÑÑÑеÑÑвÑеÑ. ÐлоÑмÑÑленик мог измениÑÑ ÐºÐ»ÑÑ ÑеÑвеÑа по ÑмолÑаниÑ, ÑÑо Ð±Ñ Ð²Ð²ÐµÑÑи Ð²Ð°Ñ ÐºÐ»Ð¸ÐµÐ½Ñ Ð² заблÑждение, ÑÑо ÑÑÐ¾Ñ ÐºÐ»ÑÑ Ð½Ðµ ÑÑÑеÑÑвÑеÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2895"/>
+ <location filename="onmainwindow.cpp" line="2919"/>
<source>Could not find known host file.If you accept the host key here, the file will be automatically created</source>
<translation>Ðе Ð¼Ð¾Ð³Ñ Ð½Ð°Ð¹Ñи Ñайл Ñ ÐºÐ»ÑÑами. ÐÑли Ð²Ñ Ð¿ÑимеÑе ÑÑÐ¾Ñ ÐºÐ»ÑÑ, Ñайл бÑÐ´ÐµÑ Ñоздан авÑомаÑиÑеÑки</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2900"/>
+ <location filename="onmainwindow.cpp" line="2924"/>
<source>The server is unknown. Do you trust the host key?
Public key hash: </source>
<translation>СеÑÐ²ÐµÑ Ð½Ðµ извеÑÑен. ÐовеÑÑеÑе ли Ð²Ñ ÑÑÐ¾Ð¼Ñ ÐºÐ»ÑÑÑ?
Public key hash: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4097"/>
- <location filename="onmainwindow.cpp" line="4117"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4226"/>
+ <location filename="onmainwindow.cpp" line="4246"/>
<source>No</source>
<translation>ÐеÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="2912"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2938"/>
<source>Host key verification failed</source>
<translation>ÐÑибка пÑовеÑки клÑÑа</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2955"/>
<source>Authentication failed</source>
<translation>ÐÑибка авÑоÑизаÑии</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3383"/>
- <location filename="onmainwindow.cpp" line="3693"/>
- <location filename="onmainwindow.cpp" line="4170"/>
- <location filename="onmainwindow.cpp" line="4308"/>
+ <location filename="onmainwindow.cpp" line="3290"/>
+ <source>Enter passwort for SSH proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="3506"/>
+ <location filename="onmainwindow.cpp" line="3822"/>
+ <location filename="onmainwindow.cpp" line="4300"/>
+ <location filename="onmainwindow.cpp" line="4441"/>
<source>Server not availabel</source>
<translation>СеÑÐ²ÐµÑ Ð½Ðµ доÑÑÑпен</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4195"/>
+ <location filename="onmainwindow.cpp" line="4326"/>
<source>suspending</source>
<translation>пÑеÑÑваеÑÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4223"/>
+ <location filename="onmainwindow.cpp" line="4355"/>
<source>terminating</source>
<translation>завеÑÑаеÑÑÑ</translation>
</message>
@@ -1545,38 +1555,38 @@ Public key hash: </translation>
<translation type="obsolete">Ðевозможно запиÑаÑÑ Ñайл:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4989"/>
+ <location filename="onmainwindow.cpp" line="5124"/>
<source>Unable to create SSL Tunnel:
</source>
<translation>ÐÑибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ SSL ÑÑнелÑ:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="157"/>
- <location filename="onmainwindow.cpp" line="2972"/>
- <location filename="onmainwindow.cpp" line="5167"/>
+ <location filename="onmainwindow.cpp" line="158"/>
+ <location filename="onmainwindow.cpp" line="2999"/>
+ <location filename="onmainwindow.cpp" line="5306"/>
<source>connecting</source>
<translation>Ñоединение</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5176"/>
+ <location filename="onmainwindow.cpp" line="5315"/>
<source>starting</source>
<translation>запÑÑк</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5180"/>
+ <location filename="onmainwindow.cpp" line="5319"/>
<source>resuming</source>
<translation>воÑÑÑановление</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5243"/>
- <location filename="onmainwindow.cpp" line="5515"/>
- <location filename="onmainwindow.cpp" line="5533"/>
+ <location filename="onmainwindow.cpp" line="5382"/>
+ <location filename="onmainwindow.cpp" line="5655"/>
+ <location filename="onmainwindow.cpp" line="5674"/>
<source>Connection timeout, aborting</source>
<translation>ТаймаÑÑ ÑоединениÑ, оÑмена</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5244"/>
+ <location filename="onmainwindow.cpp" line="5383"/>
<source>aborting</source>
<translation>оÑмена</translation>
</message>
@@ -1585,7 +1595,7 @@ Public key hash: </translation>
<translation type="obsolete"><b>ID ÑеÑÑии:<br>СеÑвеÑ:<br>ÐолÑзоваÑелÑ:<br>ÐиÑплей:<br>ÐÑÐµÐ¼Ñ ÑозданиÑ:<br>СÑаÑÑÑ:</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10027"/>
+ <location filename="onmainwindow.cpp" line="10189"/>
<source>Abort</source>
<translation>ÐÑмена</translation>
</message>
@@ -1598,8 +1608,8 @@ Public key hash: </translation>
<translation type="obsolete">ÐоказаÑÑ Ð´ÐµÑали</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5740"/>
- <location filename="onmainwindow.cpp" line="5776"/>
+ <location filename="onmainwindow.cpp" line="5892"/>
+ <location filename="onmainwindow.cpp" line="5928"/>
<source><b>Connection failed</b>
:
</source>
@@ -1607,87 +1617,87 @@ Public key hash: </translation>
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6137"/>
+ <location filename="onmainwindow.cpp" line="6300"/>
<source> (can't open file)</source>
<translation> (невозможно оÑкÑÑÑÑ Ñайл)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6148"/>
- <location filename="onmainwindow.cpp" line="6158"/>
- <location filename="onmainwindow.cpp" line="6168"/>
+ <location filename="onmainwindow.cpp" line="6311"/>
+ <location filename="onmainwindow.cpp" line="6321"/>
+ <location filename="onmainwindow.cpp" line="6331"/>
<source> (file not exists)</source>
<translation> (Ñайл не ÑÑÑеÑÑвÑеÑ)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6192"/>
+ <location filename="onmainwindow.cpp" line="6355"/>
<source> (directory not exists)</source>
<translation> (каÑалог не ÑÑÑеÑÑвÑеÑ)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6220"/>
+ <location filename="onmainwindow.cpp" line="6383"/>
<source>wrong value for argument"--link"</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6238"/>
+ <location filename="onmainwindow.cpp" line="6401"/>
<source>wrong value for argument"--sound"</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6255"/>
- <location filename="onmainwindow.cpp" line="6266"/>
+ <location filename="onmainwindow.cpp" line="6418"/>
+ <location filename="onmainwindow.cpp" line="6429"/>
<source>wrong value for argument"--geometry"</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6284"/>
+ <location filename="onmainwindow.cpp" line="6447"/>
<source>wrong value for argument"--set-kbd"</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6301"/>
+ <location filename="onmainwindow.cpp" line="6464"/>
<source>wrong value for argument"--ldap"</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6323"/>
+ <location filename="onmainwindow.cpp" line="6486"/>
<source>wrong value for argument"--ldap1"</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6342"/>
+ <location filename="onmainwindow.cpp" line="6505"/>
<source>wrong value for argument"--ldap2"</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6396"/>
+ <location filename="onmainwindow.cpp" line="6559"/>
<source>wrong value for argument"--pack"</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6404"/>
- <location filename="onmainwindow.cpp" line="6407"/>
+ <location filename="onmainwindow.cpp" line="6567"/>
+ <location filename="onmainwindow.cpp" line="6570"/>
<source>wrong parameter: </source>
<translation>wrong parameter: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6458"/>
- <location filename="onmainwindow.cpp" line="6484"/>
+ <location filename="onmainwindow.cpp" line="6621"/>
+ <location filename="onmainwindow.cpp" line="6647"/>
<source>Options</source>
<translation>ÐпÑии</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6463"/>
+ <location filename="onmainwindow.cpp" line="6626"/>
<source>Available pack methodes:</source>
<translation>Available pack methodes:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7251"/>
+ <location filename="onmainwindow.cpp" line="7417"/>
<source>Support</source>
<translation>ÐоддеÑжка</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7256"/>
+ <location filename="onmainwindow.cpp" line="7422"/>
<source></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></source>
<translation></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
@@ -1696,14 +1706,14 @@ Public key hash: </translation>
<translation type="obsolete">Ðевозможно пÑоÑиÑаÑÑ RSA клÑÑ:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8163"/>
+ <location filename="onmainwindow.cpp" line="8332"/>
<source>Unable to read :
</source>
<translation>Ðевозможно пÑоÑиÑаÑÑ :
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8188"/>
+ <location filename="onmainwindow.cpp" line="8357"/>
<source>Unable to write :
</source>
<translation>Ðевозможно запиÑаÑÑ :
@@ -1718,7 +1728,7 @@ Public key hash: </translation>
<translation type="obsolete"></b><br> (C. 2006-2007 Oleksandr Shneyder, Heinz-Markus Graesing)<br><br>ÐÐ»Ð¸ÐµÐ½Ñ ÑеÑевого окÑÑÐ¶ÐµÐ½Ð¸Ñ X2Go. ÐаннÑй ÐºÐ»Ð¸ÐµÐ½Ñ Ð¿ÑедназнаÑен Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ñ ÑеÑвеÑом (ÑеÑвеÑами) X2Go и запÑÑка, воÑÑÑÐ°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ завеÑÑÐµÐ½Ð¸Ñ Ñдаленной ÑеÑÑии. ÐÐ»Ð¸ÐµÐ½Ñ X2Go ÑоÑ
ÑанÑÐµÑ Ð½Ð°ÑÑÑойки Ñоединений и Ð¼Ð¾Ð¶ÐµÑ Ð·Ð°Ð¿ÑаÑиваÑÑ Ð¸Ð½ÑоÑмаÑÐ¸Ñ Ð¾ полÑзоваÑелÑÑ
из LDAP. РпоÑледнем ÑлÑÑае ÐºÐ»Ð¸ÐµÐ½Ñ Ð¼Ð¾Ð¶ÐµÑ Ð¸ÑполÑзоваÑÑÑÑ ÐºÐ°Ðº Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ Ð²Ñ
ода в ÑиÑÑÐµÐ¼Ñ (замена менеджеÑа подобного xdm) Ð´Ð»Ñ Ð¾ÐºÑÑÐ¶ÐµÐ½Ð¸Ñ "ÑонкиÑ
клиенÑов" X2Go. ÐоÑеÑиÑе http://x2go.org Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ Ð±Ð¾Ð»ÐµÐµ деÑалÑной инÑоÑмаÑии.</transl
ation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7552"/>
+ <location filename="onmainwindow.cpp" line="7719"/>
<source>No valid card found</source>
<translation>ФоÑÐ¼Ð°Ñ ÐºÐ°ÑÑÑ Ð½ÐµÐ¸Ð·Ð²ÐµÑÑен</translation>
</message>
@@ -1727,7 +1737,7 @@ Public key hash: </translation>
<translation type="obsolete">ÐÑа каÑÑа не ÑконÑигÑÑиÑована Ð´Ð»Ñ Ð¸ÑполÑÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ X2Go</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7628"/>
+ <location filename="onmainwindow.cpp" line="7795"/>
<source>Unable to create file: </source>
<translation>Ðевозможно ÑоздаÑÑ Ñайл: </translation>
</message>
@@ -1736,7 +1746,7 @@ Public key hash: </translation>
<translation type="obsolete">Ðевозможно пÑиÑоединиÑÑÑÑ Ðº X-ÑеÑвеÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7896"/>
+ <location filename="onmainwindow.cpp" line="8063"/>
<source>Can't connect to X server
Please check your settings</source>
<oldsource>Can't connect to X-Server
@@ -1767,42 +1777,42 @@ Please check your settings</source>
<translation type="obsolete">ÐоÑÑовÑй клиенÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="166"/>
+ <location filename="onmainwindow.cpp" line="167"/>
<source>OpenOffice.org</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="167"/>
+ <location filename="onmainwindow.cpp" line="168"/>
<source>Terminal</source>
<translation>ТеÑминал</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3307"/>
+ <location filename="onmainwindow.cpp" line="3430"/>
<source>unknown</source>
<translation>неизвеÑÑно</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10270"/>
+ <location filename="onmainwindow.cpp" line="10432"/>
<source>Command</source>
<translation>Ðоманда</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10272"/>
+ <location filename="onmainwindow.cpp" line="10434"/>
<source>Type</source>
<translation>Тип</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3947"/>
+ <location filename="onmainwindow.cpp" line="4076"/>
<source>Desktop</source>
<translation>ÐконнÑй менеджеÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3949"/>
+ <location filename="onmainwindow.cpp" line="4078"/>
<source>single application</source>
<translation>пÑиложение</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3951"/>
+ <location filename="onmainwindow.cpp" line="4080"/>
<source>shadow session</source>
<translation>ÑÐµÐ½ÐµÐ²Ð°Ñ ÑеÑÑиÑ</translation>
</message>
@@ -1811,264 +1821,264 @@ Please check your settings</source>
<translation type="obsolete"><br>ÐÑибка наÑÑÑоек "sudo"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8083"/>
+ <location filename="onmainwindow.cpp" line="8251"/>
<source>Unable to execute: </source>
<translation>Ðевозможно вÑполниÑÑ: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="140"/>
+ <location filename="onmainwindow.cpp" line="141"/>
<source>X2Go client</source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="164"/>
+ <location filename="onmainwindow.cpp" line="165"/>
<source>Internet browser</source>
<translation>Ðеб-бÑоÑзеÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="165"/>
+ <location filename="onmainwindow.cpp" line="166"/>
<source>Email client</source>
<translation>ÐоÑÑовÑй клиенÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="739"/>
+ <location filename="onmainwindow.cpp" line="740"/>
<source>&New session ...</source>
<translation>&ÐÐ¾Ð²Ð°Ñ ÑеÑÑÐ¸Ñ ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="745"/>
+ <location filename="onmainwindow.cpp" line="746"/>
<source>Session management...</source>
<translation>УпÑавление ÑеÑÑиÑми...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="783"/>
- <location filename="onmainwindow.cpp" line="804"/>
+ <location filename="onmainwindow.cpp" line="784"/>
+ <location filename="onmainwindow.cpp" line="805"/>
<source>Show toolbar</source>
<translation>ÐÐ°Ð½ÐµÐ»Ñ Ð¸Ð½ÑÑÑÑменÑов</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="353"/>
- <location filename="onmainwindow.cpp" line="7276"/>
+ <location filename="onmainwindow.cpp" line="354"/>
+ <location filename="onmainwindow.cpp" line="7442"/>
<source>About X2GO client</source>
<translation>РпÑогÑамме "X2GO Client"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1663"/>
- <location filename="onmainwindow.cpp" line="1846"/>
- <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1667"/>
+ <location filename="onmainwindow.cpp" line="1850"/>
+ <location filename="onmainwindow.cpp" line="1880"/>
<source>Please check LDAP settings</source>
<translation>ÐÑовеÑÑÑе наÑÑÑойки LDAP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1698"/>
+ <location filename="onmainwindow.cpp" line="1702"/>
<source>no X2Go server found in LDAP </source>
<translation>СеÑÐ²ÐµÑ X2Go не найден в LDAP </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2270"/>
+ <location filename="onmainwindow.cpp" line="2279"/>
<source>Are you sure you want to delete this session?</source>
<translation>УдалиÑÑ ÑеÑÑиÑ?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3191"/>
- <location filename="onmainwindow.cpp" line="4240"/>
- <location filename="onmainwindow.cpp" line="4336"/>
- <location filename="onmainwindow.cpp" line="5743"/>
- <location filename="onmainwindow.cpp" line="5779"/>
- <location filename="onmainwindow.cpp" line="6503"/>
- <location filename="onmainwindow.cpp" line="6584"/>
- <location filename="onmainwindow.cpp" line="6956"/>
- <location filename="onmainwindow.cpp" line="7009"/>
- <location filename="onmainwindow.cpp" line="8063"/>
+ <location filename="onmainwindow.cpp" line="3314"/>
+ <location filename="onmainwindow.cpp" line="4372"/>
+ <location filename="onmainwindow.cpp" line="4469"/>
+ <location filename="onmainwindow.cpp" line="5895"/>
+ <location filename="onmainwindow.cpp" line="5931"/>
+ <location filename="onmainwindow.cpp" line="6666"/>
+ <location filename="onmainwindow.cpp" line="6750"/>
+ <location filename="onmainwindow.cpp" line="7122"/>
+ <location filename="onmainwindow.cpp" line="7175"/>
+ <location filename="onmainwindow.cpp" line="8230"/>
<source><b>Wrong password!</b><br><br></source>
<translation><b>ÐевеÑнÑй паÑолÑ!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3374"/>
+ <location filename="onmainwindow.cpp" line="3497"/>
<source>No server availabel</source>
<translation>Ðе доÑÑÑпен ни один ÑеÑвеÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1011"/>
- <location filename="onmainwindow.cpp" line="5065"/>
+ <location filename="onmainwindow.cpp" line="1012"/>
+ <location filename="onmainwindow.cpp" line="5201"/>
<source>Not connected</source>
<oldsource>Active connection</oldsource>
<translation>Соединение не ÑÑÑановлено</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5487"/>
- <location filename="onmainwindow.cpp" line="10277"/>
+ <location filename="onmainwindow.cpp" line="5627"/>
+ <location filename="onmainwindow.cpp" line="10439"/>
<source>Creation time</source>
<translation>ÐÑÐµÐ¼Ñ ÑозданиÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4785"/>
- <location filename="onmainwindow.cpp" line="6830"/>
+ <location filename="onmainwindow.cpp" line="4918"/>
+ <location filename="onmainwindow.cpp" line="6996"/>
<source>Unable to create folder:</source>
<translation>Ðевозможно ÑоздаÑÑ ÐºÐ°Ñалог:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4811"/>
+ <location filename="onmainwindow.cpp" line="4944"/>
<source>Unable to write file:</source>
<translation>Ðевозможно запиÑаÑÑ Ñайл:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4960"/>
- <location filename="onmainwindow.cpp" line="8134"/>
+ <location filename="onmainwindow.cpp" line="5094"/>
+ <location filename="onmainwindow.cpp" line="8303"/>
<source>Unable to create SSL tunnel:
</source>
<translation>ÐÑибка ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ SSL ÑÑнелÑ:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10004"/>
+ <location filename="onmainwindow.cpp" line="10166"/>
<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="onmainwindow.cpp" line="557"/>
- <location filename="onmainwindow.cpp" line="1038"/>
- <location filename="onmainwindow.cpp" line="10021"/>
+ <location filename="onmainwindow.cpp" line="558"/>
+ <location filename="onmainwindow.cpp" line="1039"/>
+ <location filename="onmainwindow.cpp" line="10183"/>
<source>Share folder...</source>
<translation>ÐкÑпоÑÑ ÐºÐ°Ñалога...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10039"/>
+ <location filename="onmainwindow.cpp" line="10201"/>
<source>Show details</source>
<translation>ÐоказаÑÑ Ð´ÐµÑали</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7277"/>
+ <location filename="onmainwindow.cpp" line="7443"/>
<source><b>X2Go client V. </source>
<translation><b>X2Go Client V. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7600"/>
+ <location filename="onmainwindow.cpp" line="7767"/>
<source>This card is unknown by X2Go system</source>
<translation>ÐÑа каÑÑа не ÑконÑигÑÑиÑована Ð´Ð»Ñ Ð¸ÑполÑÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ X2Go</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7897"/>
+ <location filename="onmainwindow.cpp" line="8064"/>
<source>Can't start X server
Please check your settings</source>
<translation>Ðевозможно запÑÑÑиÑÑ X-СеÑвеÑ
ÐÑовеÑÑÑе наÑÑÑойки</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8099"/>
+ <location filename="onmainwindow.cpp" line="8268"/>
<source>Remote server does not support file system export through SSH Tunnel
Please update to a newer x2goserver package</source>
<translation>УдаленнÑй ÑеÑÐ²ÐµÑ Ð½Ðµ поддеÑÐ¶Ð¸Ð²Ð°ÐµÑ ÑкÑпоÑÑ Ñайловой ÑиÑÑÐµÐ¼Ñ ÑеÑез SSH ÑÑннелÑ
ÐожалÑйÑÑа обновиÑе Ð¿Ð°ÐºÐµÑ x2goserver</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="756"/>
+ <location filename="onmainwindow.cpp" line="757"/>
<source>&Create session icon on desktop...</source>
<translation>&СоздаÑÑ ÑÑлÑк ÑеÑÑии на ÑабоÑем ÑÑоле...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="765"/>
+ <location filename="onmainwindow.cpp" line="766"/>
<source>&Set broker password...</source>
<translation>&УÑÑановиÑÑ Ð¿Ð°ÑÐ¾Ð»Ñ Ð½Ð° бÑокеÑе...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="776"/>
+ <location filename="onmainwindow.cpp" line="777"/>
<source>&Connectivity test...</source>
<translation>&ТеÑÑ ÑоединениÑ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
+ <location filename="onmainwindow.cpp" line="893"/>
<source>Operation failed</source>
<translation>ÐÑибка</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="896"/>
+ <location filename="onmainwindow.cpp" line="897"/>
<source>Password changed</source>
<translation>ÐаÑÐ¾Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="920"/>
+ <location filename="onmainwindow.cpp" line="921"/>
<source>Wrong password!</source>
<translation>ÐевеÑнÑй паÑолÑ!</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="969"/>
+ <location filename="onmainwindow.cpp" line="970"/>
<source><b>Authentication</b></source>
<translation><b>ÐвÑоÑизаÑиÑ</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1009"/>
+ <location filename="onmainwindow.cpp" line="1010"/>
<source>Restore</source>
<translation>ÐоÑÑÑановиÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1013"/>
+ <location filename="onmainwindow.cpp" line="1014"/>
<source>Multimedia</source>
<translation>ÐÑлÑÑимедиа</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1015"/>
+ <location filename="onmainwindow.cpp" line="1016"/>
<source>Development</source>
<translation>РазÑабоÑка</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1017"/>
+ <location filename="onmainwindow.cpp" line="1018"/>
<source>Education</source>
<translation>ÐбÑÑение</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1019"/>
+ <location filename="onmainwindow.cpp" line="1020"/>
<source>Game</source>
<translation>ÐгÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1021"/>
+ <location filename="onmainwindow.cpp" line="1022"/>
<source>Graphics</source>
<translation>ÐÑаÑика</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1023"/>
+ <location filename="onmainwindow.cpp" line="1024"/>
<source>Network</source>
<translation>СеÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1025"/>
+ <location filename="onmainwindow.cpp" line="1026"/>
<source>Office</source>
<translation>ÐÑиÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1027"/>
+ <location filename="onmainwindow.cpp" line="1028"/>
<source>Settings</source>
<translation>УÑÑановки</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1029"/>
+ <location filename="onmainwindow.cpp" line="1030"/>
<source>System</source>
<translation>СиÑÑема</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1031"/>
+ <location filename="onmainwindow.cpp" line="1032"/>
<source>Utility</source>
<translation>УÑилиÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1033"/>
+ <location filename="onmainwindow.cpp" line="1034"/>
<source>Other</source>
<translation>ÐÑÑгие</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1068"/>
+ <location filename="onmainwindow.cpp" line="1069"/>
<source>Left mouse button to hide/restore - Right mouse button to display context menu</source>
<oldsource>Left click to open the X2GoClient window or right click to get the context menu.</oldsource>
<translation>ЩелÑок левой кнопкой: ÑпÑÑÑаÑÑ/воÑÑÑановиÑÑ - пÑавой: оÑобÑазиÑÑ ÐºÐ¾Ð½ÑекÑÑное менÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2010"/>
+ <location filename="onmainwindow.cpp" line="2014"/>
<source>Create session icon on desktop</source>
<translation>СоздаÑÑ ÑÑлÑк ÑеÑÑии на ÑабоÑем ÑÑоле</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2011"/>
+ <location filename="onmainwindow.cpp" line="2015"/>
<source>Desktop icons can be configured not to show x2goclient (hidden mode). If you like to use this feature you'll need to configure login by a gpg key or gpg smart card.
Use x2goclient hidden mode?</source>
@@ -2077,44 +2087,44 @@ Use x2goclient hidden mode?</source>
ÐкÑивиÑоваÑÑ ÑкÑÑÑÑй Ñежим?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2022"/>
+ <location filename="onmainwindow.cpp" line="2026"/>
<source>New Session</source>
<translation>ÐÐ¾Ð²Ð°Ñ ÑеÑÑиÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2122"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
<source>X2Go sessions not found</source>
<translation>СеÑÑÐ¸Ñ X2Go не найдена</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2643"/>
+ <location filename="onmainwindow.cpp" line="2652"/>
<source>RDP connection</source>
<translation>RDP Ñоединение</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2072"/>
+ <location filename="onmainwindow.cpp" line="2081"/>
<source>X2Go Link to session </source>
<translation></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="569"/>
- <location filename="onmainwindow.cpp" line="9447"/>
+ <location filename="onmainwindow.cpp" line="570"/>
+ <location filename="onmainwindow.cpp" line="9626"/>
<source>Detach X2Go window</source>
<translation>ÐÑÑоединиÑÑ Ð¾ÐºÐ½Ð¾</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4934"/>
- <location filename="onmainwindow.cpp" line="9422"/>
+ <location filename="onmainwindow.cpp" line="5068"/>
+ <location filename="onmainwindow.cpp" line="9601"/>
<source>Attach X2Go window</source>
<translation>ÐÑиÑоединиÑÑ Ð¾ÐºÐ½Ð¾</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5152"/>
+ <location filename="onmainwindow.cpp" line="5291"/>
<source>Finished</source>
<translation>завеÑÑена</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5400"/>
+ <location filename="onmainwindow.cpp" line="5539"/>
<source>Are you sure you want to terminate this session?
Unsaved documents will be lost</source>
<translation>ÐÑ ÑвеÑенÑ, ÑÑо Ñ
оÑиÑе ÑдалиÑÑ ÑÑÑ ÑеÑÑиÑ?
@@ -2125,27 +2135,27 @@ Unsaved documents will be lost</source>
<translation type="obsolete"></b><br> (C. 2006-2009 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br><br>ÐÐ»Ð¸ÐµÐ½Ñ ÑеÑевого окÑÑÐ¶ÐµÐ½Ð¸Ñ X2Go. ÐаннÑй ÐºÐ»Ð¸ÐµÐ½Ñ Ð¿ÑедназнаÑен Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ñ ÑеÑвеÑом (ÑеÑвеÑами) X2Go и запÑÑка, воÑÑÑÐ°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ завеÑÑÐµÐ½Ð¸Ñ Ñдаленной ÑеÑÑии. ÐÐ»Ð¸ÐµÐ½Ñ X2Go ÑоÑ
ÑанÑÐµÑ Ð½Ð°ÑÑÑойки Ñоединений и Ð¼Ð¾Ð¶ÐµÑ Ð·Ð°Ð¿ÑаÑиваÑÑ Ð¸Ð½ÑоÑмаÑÐ¸Ñ Ð¾ полÑзоваÑелÑÑ
из LDAP. РпоÑледнем ÑлÑÑае ÐºÐ»Ð¸ÐµÐ½Ñ Ð¼Ð¾Ð¶ÐµÑ Ð¸ÑполÑзоваÑÑÑÑ ÐºÐ°Ðº Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ Ð²Ñ
ода в ÑиÑÑÐµÐ¼Ñ (замена менеджеÑа подобного xdm) Ð´Ð»Ñ Ð¾ÐºÑÑÐ¶ÐµÐ½Ð¸Ñ "ÑонкиÑ
клиенÑов" X2Go. ÐоÑеÑиÑе http://x2go.org Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ Ð±Ð¾Ð»ÐµÐµ деÑалÑÐ
½Ð¾Ð¹ и
нÑоÑмаÑии. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7911"/>
- <location filename="onmainwindow.cpp" line="8557"/>
- <location filename="onmainwindow.cpp" line="8585"/>
+ <location filename="onmainwindow.cpp" line="8078"/>
+ <location filename="onmainwindow.cpp" line="8726"/>
+ <location filename="onmainwindow.cpp" line="8754"/>
<source>Can't start X Server
Please check your installation</source>
<translation>Ðевозможно запÑÑÑиÑÑ X Server
ÐеÑеÑÑÑановиÑе X2Go Client</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9511"/>
+ <location filename="onmainwindow.cpp" line="9689"/>
<source>X2Go Session</source>
<translation>СеÑÑÐ¸Ñ X2Go</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="572"/>
- <location filename="onmainwindow.cpp" line="10497"/>
+ <location filename="onmainwindow.cpp" line="573"/>
+ <location filename="onmainwindow.cpp" line="10659"/>
<source>Minimize toolbar</source>
<translation>СвеÑнÑÑÑ Ð¿Ð°Ð½ÐµÐ»Ñ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10530"/>
+ <location filename="onmainwindow.cpp" line="10692"/>
<source><br><b> Click this button <br> to restore toolbar </b><br></source>
<translation><br><b> ЩелкниÑе по ÑÑой иконке <br> ÑÑÐ¾Ð±Ñ Ð²Ð¾ÑÑÑановиÑÑ Ð¿Ð°Ð½ÐµÐ»Ñ Ð¸Ð½ÑÑÑÑменÑов </b><br></translation>
</message>
@@ -2154,7 +2164,7 @@ Please check your installation</source>
<translation type="obsolete">Ðевозможно оÑкÑÑÑÑ Ñайл:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10414"/>
+ <location filename="onmainwindow.cpp" line="10576"/>
<source>sshd not started, you'll need sshd for printing and file sharing
you can install sshd with
<b>sudo apt-get install openssh-server</b></source>
@@ -2163,65 +2173,65 @@ you can install sshd with
<b>sudo apt-get install openssh-server</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2651"/>
+ <location filename="onmainwindow.cpp" line="2660"/>
<source>Connection to local desktop</source>
<translation>Соединение Ñ Ð»Ð¾ÐºÐ°Ð»ÑнÑм деÑкÑопом</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3984"/>
+ <location filename="onmainwindow.cpp" line="4113"/>
<source>Information</source>
<translation>ÐнÑоÑмаÑиÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3998"/>
- <location filename="onmainwindow.cpp" line="10598"/>
+ <location filename="onmainwindow.cpp" line="4127"/>
+ <location filename="onmainwindow.cpp" line="10760"/>
<source>Filter</source>
<translation>ФилÑÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4005"/>
+ <location filename="onmainwindow.cpp" line="4134"/>
<source>Select desktop:</source>
<translation>ÐÑбÑаÑÑ Ð´ÐµÑкÑоп:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10205"/>
+ <location filename="onmainwindow.cpp" line="10367"/>
<source>View only</source>
<translation>ТолÑко ÑмоÑÑеÑÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10285"/>
+ <location filename="onmainwindow.cpp" line="10447"/>
<source>User</source>
<translation>ÐолÑзоваÑелÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2647"/>
+ <location filename="onmainwindow.cpp" line="2656"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3985"/>
+ <location filename="onmainwindow.cpp" line="4114"/>
<source>No accessible desktop found</source>
<translation>ÐоÑÑÑпнÑй деÑкÑоп не найден</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10202"/>
+ <location filename="onmainwindow.cpp" line="10364"/>
<source>Full access</source>
<translation>ÐолнÑй доÑÑÑп</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10316"/>
+ <location filename="onmainwindow.cpp" line="10478"/>
<source>Only my desktops</source>
<translation>ТолÑко мои деÑкÑопÑ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="565"/>
+ <location filename="onmainwindow.cpp" line="566"/>
<source>Reconnect</source>
<translation>ÐовÑоÑиÑÑ Ñоединение</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="924"/>
- <location filename="onmainwindow.cpp" line="2560"/>
- <location filename="onmainwindow.cpp" line="10667"/>
+ <location filename="onmainwindow.cpp" line="925"/>
+ <location filename="onmainwindow.cpp" line="2569"/>
+ <location filename="onmainwindow.cpp" line="10829"/>
<source>Connecting to broker</source>
<translation>Соединение Ñ Ð±ÑокеÑом</translation>
</message>
@@ -2230,27 +2240,27 @@ you can install sshd with
<translation type="obsolete"></b><br> (C. 2006-2010 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7260"/>
+ <location filename="onmainwindow.cpp" line="7426"/>
<source><br>x2goplugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></source>
<translation><br>x2goplugin бÑл ÑазÑабоÑан пÑи поддеÑжке <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7264"/>
+ <location filename="onmainwindow.cpp" line="7430"/>
<source><br>Client for use with 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 fullscreen loginscreen (replacement for loginmanager like xdm). Please visit x2go.org for further information.</source>
<translation><br>ÐÐ»Ð¸ÐµÐ½Ñ ÑеÑевого окÑÑÐ¶ÐµÐ½Ð¸Ñ X2Go. ÐаннÑй ÐºÐ»Ð¸ÐµÐ½Ñ Ð¿ÑедназнаÑен Ð´Ð»Ñ ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ Ñ ÑеÑвеÑом (ÑеÑвеÑами) X2Go и запÑÑка, воÑÑÑÐ°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¸Ð»Ð¸ завеÑÑÐµÐ½Ð¸Ñ Ñдаленной ÑеÑÑии. ÐÐ»Ð¸ÐµÐ½Ñ X2Go ÑоÑ
ÑанÑÐµÑ Ð½Ð°ÑÑÑойки Ñоединений и Ð¼Ð¾Ð¶ÐµÑ Ð·Ð°Ð¿ÑаÑиваÑÑ Ð¸Ð½ÑоÑмаÑÐ¸Ñ Ð¾ полÑзоваÑелÑÑ
из LDAP. РпоÑледнем ÑлÑÑае ÐºÐ»Ð¸ÐµÐ½Ñ Ð¼Ð¾Ð¶ÐµÑ Ð¸ÑполÑзоваÑÑÑÑ ÐºÐ°Ðº Ð¼ÐµÐ½ÐµÐ´Ð¶ÐµÑ Ð²Ñ
ода в ÑиÑÑÐµÐ¼Ñ (замена менеджеÑа подобного xdm) Ð´Ð»Ñ Ð¾ÐºÑÑÐ¶ÐµÐ½Ð¸Ñ "ÑонкиÑ
клиенÑов" X2Go. ÐоÑеÑиÑе http://x2go.org Ð´Ð»Ñ Ð¿Ð¾Ð»ÑÑÐµÐ½Ð¸Ñ Ð±Ð¾Ð»ÐµÐµ деÑалÑной инÑоÑмаÑии.</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8276"/>
+ <location filename="onmainwindow.cpp" line="8445"/>
<source>WINDOWS-1252</source>
<translation>WINDOWS-1251</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8288"/>
+ <location filename="onmainwindow.cpp" line="8457"/>
<source>ISO8859-1</source>
<translation>KOI8-R</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9693"/>
+ <location filename="onmainwindow.cpp" line="9871"/>
<source>wrong value for argument"speed"</source>
<translation>wrong value for argument"speed"</translation>
</message>
@@ -2667,170 +2677,226 @@ Example:
<context>
<name>SessionWidget</name>
<message>
- <location filename="sessionwidget.cpp" line="52"/>
+ <location filename="sessionwidget.cpp" line="55"/>
<source>Session name:</source>
<translation>ÐÐ¼Ñ ÑеÑÑии:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="57"/>
+ <location filename="sessionwidget.cpp" line="60"/>
<source><< change icon</source>
<translation><< измениÑÑ Ð·Ð½Ð°Ñок</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="60"/>
+ <location filename="sessionwidget.cpp" line="63"/>
<source>&Server</source>
<translation>&СеÑвеÑ</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="93"/>
+ <location filename="sessionwidget.cpp" line="96"/>
+ <location filename="sessionwidget.cpp" line="154"/>
<source>Host:</source>
<translation>ХоÑÑ:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="94"/>
+ <location filename="sessionwidget.cpp" line="97"/>
+ <location filename="sessionwidget.cpp" line="160"/>
<source>Login:</source>
<translation>ÐолÑзоваÑелÑ:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="95"/>
- <location filename="sessionwidget.cpp" line="237"/>
+ <location filename="sessionwidget.cpp" line="98"/>
+ <location filename="sessionwidget.cpp" line="360"/>
<source>SSH port:</source>
<translation>SSH поÑÑ:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="110"/>
+ <location filename="sessionwidget.cpp" line="113"/>
<source>Use RSA/DSA key for ssh connection:</source>
<translation>RSA/DSA клÑÑ Ð´Ð»Ñ ssh ÑоединениÑ:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="117"/>
+ <location filename="sessionwidget.cpp" line="120"/>
<source>Try auto login (ssh-agent or default ssh key)</source>
<translation>ÐвÑомаÑиÑеÑкое Ñоединение Ñ SSH клÑÑом по ÑмолÑÐ°Ð½Ð¸Ñ Ð¸Ð»Ð¸ пÑогÑаммой ssh-agent</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="118"/>
+ <location filename="sessionwidget.cpp" line="121"/>
<source>Kerberos 5 (GSSAPI) authentication</source>
<translation>ÐвÑоÑизаÑÐ¸Ñ Kerberos 5 (GSSAPI)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="123"/>
+ <location filename="sessionwidget.cpp" line="124"/>
+ <source>Use Proxy server for SSH connection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="125"/>
+ <source>Proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="131"/>
+ <source>SSH</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="132"/>
+ <source>HTTP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="140"/>
+ <source>Same login as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="142"/>
+ <source>Same password as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="144"/>
+ <source>RSA/DSA key:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="149"/>
+ <source>ssh-agent or default ssh key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="151"/>
+ <source>Type:</source>
+ <translation type="unfinished">Тип:</translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="155"/>
+ <source>Port:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="170"/>
<source>&Session type</source>
<translation>&Тип ÑеÑÑии</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="128"/>
+ <location filename="sessionwidget.cpp" line="175"/>
<source>Session type:</source>
<translation>Тип ÑеÑÑии:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="138"/>
- <location filename="sessionwidget.cpp" line="361"/>
+ <location filename="sessionwidget.cpp" line="185"/>
+ <location filename="sessionwidget.cpp" line="484"/>
<source>Connect to Windows terminal server</source>
<translation>Соединение Ñ ÑеÑминалÑнÑм ÑеÑвеÑом Windows</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="141"/>
+ <location filename="sessionwidget.cpp" line="188"/>
<source>Custom desktop</source>
<translation>ÐÑÑгой оконнÑй менеджеÑ</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="142"/>
+ <location filename="sessionwidget.cpp" line="189"/>
<source>Single application</source>
<translation>ÐÑиложение</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="143"/>
+ <location filename="sessionwidget.cpp" line="190"/>
<source>Published applications</source>
<translation>УдаленнÑе пÑиложениÑ</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="145"/>
- <location filename="sessionwidget.cpp" line="305"/>
+ <location filename="sessionwidget.cpp" line="192"/>
+ <location filename="sessionwidget.cpp" line="428"/>
<source>Command:</source>
<translation>Ðоманда:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="146"/>
+ <location filename="sessionwidget.cpp" line="193"/>
<source>Advanced options...</source>
<translation>ÐÑодвинÑÑÑе ÑÑÑановки...</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="158"/>
- <location filename="sessionwidget.cpp" line="523"/>
- <location filename="sessionwidget.cpp" line="597"/>
+ <location filename="sessionwidget.cpp" line="205"/>
+ <location filename="sessionwidget.cpp" line="713"/>
+ <location filename="sessionwidget.cpp" line="808"/>
<source>Path to executable</source>
<translation>ÐÑÑÑ Ðº иÑполнÑÐµÐ¼Ð¾Ð¼Ñ ÑайлÑ</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="168"/>
+ <location filename="sessionwidget.cpp" line="215"/>
<source>Direct RDP Connection</source>
<translation>ÐÑÑмое RDP Ñоединение</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="233"/>
+ <location filename="sessionwidget.cpp" line="356"/>
<source>RDP port:</source>
<translation>RDP поÑÑ:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="249"/>
+ <location filename="sessionwidget.cpp" line="372"/>
<source>Open picture</source>
<translation>ÐÑкÑÑÑÑ Ð¸Ð·Ð¾Ð±Ñажение</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="251"/>
+ <location filename="sessionwidget.cpp" line="374"/>
<source>Pictures</source>
<translation>ÐзобÑажениÑ</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="272"/>
+ <location filename="sessionwidget.cpp" line="283"/>
+ <location filename="sessionwidget.cpp" line="395"/>
<source>Open key file</source>
<translation>ÐÑкÑÑÑÑ Ñайл Ñ ÐºÐ»ÑÑом</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="274"/>
+ <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="397"/>
<source>All files</source>
<translation>ÐÑе ÑайлÑ</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="332"/>
- <location filename="sessionwidget.cpp" line="478"/>
+ <location filename="sessionwidget.cpp" line="455"/>
+ <location filename="sessionwidget.cpp" line="668"/>
<source>Server:</source>
<translation>СеÑвеÑ:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="362"/>
+ <location filename="sessionwidget.cpp" line="485"/>
<source>rdesktop command line options:</source>
<translation>ÐпÑии командной ÑÑÑоки rdesktop:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="375"/>
- <location filename="sessionwidget.cpp" line="502"/>
+ <location filename="sessionwidget.cpp" line="498"/>
+ <location filename="sessionwidget.cpp" line="692"/>
<source>New session</source>
<translation>ÐÐ¾Ð²Ð°Ñ ÑеÑÑиÑ</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="140"/>
+ <location filename="sessionwidget.cpp" line="187"/>
<source>Connect to local desktop</source>
<translation>Соединение Ñ Ð»Ð¾ÐºÐ°Ð»ÑнÑм деÑкÑопом</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="341"/>
- <location filename="sessionwidget.cpp" line="490"/>
+ <location filename="sessionwidget.cpp" line="464"/>
+ <location filename="sessionwidget.cpp" line="680"/>
<source>XDMCP server:</source>
<translation>СеÑÐ²ÐµÑ XDMCP:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="139"/>
+ <location filename="sessionwidget.cpp" line="186"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="284"/>
+ <location filename="sessionwidget.cpp" line="295"/>
+ <location filename="sessionwidget.cpp" line="407"/>
<source>Error</source>
<translation>ÐÑибка</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="296"/>
+ <location filename="sessionwidget.cpp" line="408"/>
<source>x2goclient is running in portable mode. You should use a path on your usb device to be able to access your data whereever you are</source>
<translation>x2goclient запÑÑен в "пеÑеноÑимом" Ñежиме. ÐожалÑйÑÑа вÑбеÑиÑе пÑÑÑ Ð½Ð°Ñ
одÑÑийÑÑ Ð² пÑеделаÑ
иÑполÑзÑемого ноÑиÑÐµÐ»Ñ Ð´Ð»Ñ Ñого, ÑÑо Ð±Ñ Ð²Ñегда имеÑÑ Ð´Ð¾ÑÑÑп к ÐаÑим даннÑм</translation>
</message>
@@ -2978,17 +3044,17 @@ sound system connections through firewalls</source>
<translation>ÐÐ¾Ð¼Ð°Ð½Ð´Ð½Ð°Ñ ÑÑÑока:</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="642"/>
+ <location filename="settingswidget.cpp" line="645"/>
<source>us</source>
<translation>ru</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="643"/>
+ <location filename="settingswidget.cpp" line="646"/>
<source>pc105/us</source>
<translation>pc105/ru</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="757"/>
+ <location filename="settingswidget.cpp" line="760"/>
<source>password</source>
<translation>паÑолÑ</translation>
</message>
@@ -3077,82 +3143,103 @@ sound system connections through firewalls</source>
<context>
<name>SshMasterConnection</name>
<message>
- <location filename="sshmasterconnection.cpp" line="133"/>
+ <location filename="sshmasterconnection.cpp" line="170"/>
+ <source>SSH proxy connection error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="175"/>
+ <location filename="sshmasterconnection.cpp" line="181"/>
+ <source>SSH proxy connection error: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="197"/>
+ <source>Failed to create SSH proxy tunnel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="265"/>
<source>Can not initialize libssh</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="159"/>
+ <location filename="sshmasterconnection.cpp" line="291"/>
<source>Can not create ssh session</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="177"/>
+ <location filename="sshmasterconnection.cpp" line="319"/>
+ <source>Can not connect to proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="340"/>
<source>Can not connect to </source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="218"/>
+ <location filename="sshmasterconnection.cpp" line="394"/>
<source>Authentication failed</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="244"/>
+ <location filename="sshmasterconnection.cpp" line="420"/>
<source>channel_forward_listen failed</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="560"/>
+ <location filename="sshmasterconnection.cpp" line="830"/>
<source>Can not open file </source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="572"/>
+ <location filename="sshmasterconnection.cpp" line="842"/>
<source>Can not create remote file </source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="585"/>
+ <location filename="sshmasterconnection.cpp" line="855"/>
<source>Can not write to remote file </source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="642"/>
+ <location filename="sshmasterconnection.cpp" line="912"/>
<source>can not connect to </source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="751"/>
+ <location filename="sshmasterconnection.cpp" line="1029"/>
<source>channel_open_forward failed</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="770"/>
+ <location filename="sshmasterconnection.cpp" line="1048"/>
<source>channel_open_session failed</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="777"/>
+ <location filename="sshmasterconnection.cpp" line="1055"/>
<source>channel_request_exec failed</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="842"/>
+ <location filename="sshmasterconnection.cpp" line="1120"/>
<source>error writing to socket</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="860"/>
+ <location filename="sshmasterconnection.cpp" line="1138"/>
<source>error reading channel</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="890"/>
+ <location filename="sshmasterconnection.cpp" line="1168"/>
<source>channel_write failed</source>
<translation></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="902"/>
+ <location filename="sshmasterconnection.cpp" line="1180"/>
<source>error reading tcp socket</source>
<translation></translation>
</message>
@@ -3160,12 +3247,12 @@ sound system connections through firewalls</source>
<context>
<name>SshProcess</name>
<message>
- <location filename="sshprocess.cpp" line="97"/>
+ <location filename="sshprocess.cpp" line="112"/>
<source>Error creating socket</source>
<translation></translation>
</message>
<message>
- <location filename="sshprocess.cpp" line="115"/>
+ <location filename="sshprocess.cpp" line="130"/>
<source>Error binding </source>
<translation></translation>
</message>
diff --git a/x2goclient_sv.ts b/x2goclient_sv.ts
index 68c7e54..9633a18 100644
--- a/x2goclient_sv.ts
+++ b/x2goclient_sv.ts
@@ -729,368 +729,368 @@
<context>
<name>ONMainWindow</name>
<message>
- <location filename="onmainwindow.cpp" line="90"/>
- <location filename="onmainwindow.cpp" line="6032"/>
+ <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="6188"/>
<source>us</source>
<translation>se</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="91"/>
+ <location filename="onmainwindow.cpp" line="93"/>
<source>pc105/us</source>
<translation>pc105/se</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="140"/>
+ <location filename="onmainwindow.cpp" line="141"/>
<source>X2Go client</source>
<translation>X2Go-klient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="157"/>
- <location filename="onmainwindow.cpp" line="2974"/>
- <location filename="onmainwindow.cpp" line="5169"/>
+ <location filename="onmainwindow.cpp" line="158"/>
+ <location filename="onmainwindow.cpp" line="2999"/>
+ <location filename="onmainwindow.cpp" line="5306"/>
<source>connecting</source>
<translation>ansluter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="164"/>
+ <location filename="onmainwindow.cpp" line="165"/>
<source>Internet browser</source>
<translation>Webbläsare</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="165"/>
+ <location filename="onmainwindow.cpp" line="166"/>
<source>Email client</source>
<translation>E-postklient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="166"/>
+ <location filename="onmainwindow.cpp" line="167"/>
<source>OpenOffice.org</source>
<translation>OpenOffice.org</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="167"/>
+ <location filename="onmainwindow.cpp" line="168"/>
<source>Terminal</source>
<translation>Terminal</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="342"/>
+ <location filename="onmainwindow.cpp" line="343"/>
<source>&Settings ...</source>
<translation>&Inställningar...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="346"/>
+ <location filename="onmainwindow.cpp" line="347"/>
<source>Support ...</source>
<translation>Hjälp ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="353"/>
- <location filename="onmainwindow.cpp" line="7278"/>
+ <location filename="onmainwindow.cpp" line="354"/>
+ <location filename="onmainwindow.cpp" line="7442"/>
<source>About X2GO client</source>
<translation>Om X2Go-klient</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="557"/>
- <location filename="onmainwindow.cpp" line="1038"/>
- <location filename="onmainwindow.cpp" line="10033"/>
+ <location filename="onmainwindow.cpp" line="558"/>
+ <location filename="onmainwindow.cpp" line="1039"/>
+ <location filename="onmainwindow.cpp" line="10183"/>
<source>Share folder...</source>
<translation>Dela mapp ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="560"/>
- <location filename="onmainwindow.cpp" line="1039"/>
- <location filename="onmainwindow.cpp" line="5225"/>
- <location filename="onmainwindow.cpp" line="10206"/>
+ <location filename="onmainwindow.cpp" line="561"/>
+ <location filename="onmainwindow.cpp" line="1040"/>
+ <location filename="onmainwindow.cpp" line="5362"/>
+ <location filename="onmainwindow.cpp" line="10356"/>
<source>Suspend</source>
<translation>Vila</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="563"/>
- <location filename="onmainwindow.cpp" line="1040"/>
- <location filename="onmainwindow.cpp" line="10046"/>
- <location filename="onmainwindow.cpp" line="10208"/>
+ <location filename="onmainwindow.cpp" line="564"/>
+ <location filename="onmainwindow.cpp" line="1041"/>
+ <location filename="onmainwindow.cpp" line="10196"/>
+ <location filename="onmainwindow.cpp" line="10358"/>
<source>Terminate</source>
<translation>Avsluta</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="565"/>
+ <location filename="onmainwindow.cpp" line="566"/>
<source>Reconnect</source>
<translation>Ã
teranslut</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="569"/>
- <location filename="onmainwindow.cpp" line="9459"/>
+ <location filename="onmainwindow.cpp" line="570"/>
+ <location filename="onmainwindow.cpp" line="9626"/>
<source>Detach X2Go window</source>
<translation>Koppla lös X2Go-fönster</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="572"/>
- <location filename="onmainwindow.cpp" line="10509"/>
+ <location filename="onmainwindow.cpp" line="573"/>
+ <location filename="onmainwindow.cpp" line="10659"/>
<source>Minimize toolbar</source>
<translation>Minimera verktygsrad</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="682"/>
- <location filename="onmainwindow.cpp" line="1989"/>
- <location filename="onmainwindow.cpp" line="7378"/>
+ <location filename="onmainwindow.cpp" line="683"/>
+ <location filename="onmainwindow.cpp" line="1991"/>
+ <location filename="onmainwindow.cpp" line="7542"/>
<source>Session:</source>
<translation>Session:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="734"/>
+ <location filename="onmainwindow.cpp" line="735"/>
<source>&Quit</source>
<translation>&Avsluta</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="735"/>
+ <location filename="onmainwindow.cpp" line="736"/>
<source>Ctrl+Q</source>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="736"/>
- <location filename="onmainwindow.cpp" line="1057"/>
+ <location filename="onmainwindow.cpp" line="737"/>
+ <location filename="onmainwindow.cpp" line="1058"/>
<source>Quit</source>
<translation>Avsluta</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="739"/>
+ <location filename="onmainwindow.cpp" line="740"/>
<source>&New session ...</source>
<translation>&Ny session...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="740"/>
+ <location filename="onmainwindow.cpp" line="741"/>
<source>Ctrl+N</source>
<translation>Ctrl+N</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="745"/>
+ <location filename="onmainwindow.cpp" line="746"/>
<source>Session management...</source>
<translatorcomment>Added Alt shortcut, same letter as Ctrl shortcut (like &New session...)</translatorcomment>
<translation>S&essionshantering...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="746"/>
+ <location filename="onmainwindow.cpp" line="747"/>
<source>Ctrl+E</source>
<translation>Ctrl+E</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="756"/>
+ <location filename="onmainwindow.cpp" line="757"/>
<source>&Create session icon on desktop...</source>
<translation>S&kapa sessionsgenväg på Skrivbordet...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="765"/>
+ <location filename="onmainwindow.cpp" line="766"/>
<source>&Set broker password...</source>
<translation>&Ange agentlösenord...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="776"/>
+ <location filename="onmainwindow.cpp" line="777"/>
<source>&Connectivity test...</source>
<translation>&Testa anslutning...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="783"/>
- <location filename="onmainwindow.cpp" line="804"/>
+ <location filename="onmainwindow.cpp" line="784"/>
+ <location filename="onmainwindow.cpp" line="805"/>
<source>Show toolbar</source>
<translation>Visa verktygsrad</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="789"/>
+ <location filename="onmainwindow.cpp" line="790"/>
<source>About Qt</source>
<translation>Om Qt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="806"/>
+ <location filename="onmainwindow.cpp" line="807"/>
<source>Ctrl+Q</source>
<comment>exit</comment>
<translation>Ctrl+Q</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="812"/>
+ <location filename="onmainwindow.cpp" line="813"/>
<source>&Session</source>
<translation>&Session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="813"/>
+ <location filename="onmainwindow.cpp" line="814"/>
<source>&Options</source>
<translation>&Alternativ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="832"/>
+ <location filename="onmainwindow.cpp" line="833"/>
<source>&Help</source>
<translation>&Hjälp</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="871"/>
- <location filename="onmainwindow.cpp" line="1982"/>
- <location filename="onmainwindow.cpp" line="7371"/>
- <location filename="onmainwindow.cpp" line="9834"/>
+ <location filename="onmainwindow.cpp" line="872"/>
+ <location filename="onmainwindow.cpp" line="1984"/>
+ <location filename="onmainwindow.cpp" line="7535"/>
+ <location filename="onmainwindow.cpp" line="9984"/>
<source>Login:</source>
<translation>Användare:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
- <location filename="onmainwindow.cpp" line="920"/>
- <location filename="onmainwindow.cpp" line="1664"/>
- <location filename="onmainwindow.cpp" line="1693"/>
- <location filename="onmainwindow.cpp" line="1701"/>
- <location filename="onmainwindow.cpp" line="1847"/>
- <location filename="onmainwindow.cpp" line="1874"/>
- <location filename="onmainwindow.cpp" line="1877"/>
- <location filename="onmainwindow.cpp" line="2124"/>
- <location filename="onmainwindow.cpp" line="2347"/>
- <location filename="onmainwindow.cpp" line="2361"/>
- <location filename="onmainwindow.cpp" line="2374"/>
- <location filename="onmainwindow.cpp" line="2408"/>
- <location filename="onmainwindow.cpp" line="2453"/>
- <location filename="onmainwindow.cpp" line="3197"/>
- <location filename="onmainwindow.cpp" line="3375"/>
- <location filename="onmainwindow.cpp" line="3384"/>
- <location filename="onmainwindow.cpp" line="3694"/>
- <location filename="onmainwindow.cpp" line="4171"/>
- <location filename="onmainwindow.cpp" line="4246"/>
- <location filename="onmainwindow.cpp" line="4309"/>
- <location filename="onmainwindow.cpp" line="4342"/>
- <location filename="onmainwindow.cpp" line="4386"/>
- <location filename="onmainwindow.cpp" line="4789"/>
- <location filename="onmainwindow.cpp" line="4815"/>
- <location filename="onmainwindow.cpp" line="4964"/>
- <location filename="onmainwindow.cpp" line="5748"/>
- <location filename="onmainwindow.cpp" line="5784"/>
- <location filename="onmainwindow.cpp" line="6509"/>
- <location filename="onmainwindow.cpp" line="6590"/>
- <location filename="onmainwindow.cpp" line="6834"/>
- <location filename="onmainwindow.cpp" line="6962"/>
- <location filename="onmainwindow.cpp" line="7015"/>
- <location filename="onmainwindow.cpp" line="7321"/>
- <location filename="onmainwindow.cpp" line="7323"/>
- <location filename="onmainwindow.cpp" line="7553"/>
- <location filename="onmainwindow.cpp" line="7601"/>
- <location filename="onmainwindow.cpp" line="7629"/>
- <location filename="onmainwindow.cpp" line="8069"/>
- <location filename="onmainwindow.cpp" line="8084"/>
- <location filename="onmainwindow.cpp" line="8138"/>
- <location filename="onmainwindow.cpp" line="8166"/>
- <location filename="onmainwindow.cpp" line="8191"/>
- <location filename="onmainwindow.cpp" line="10425"/>
+ <location filename="onmainwindow.cpp" line="893"/>
+ <location filename="onmainwindow.cpp" line="921"/>
+ <location filename="onmainwindow.cpp" line="1666"/>
+ <location filename="onmainwindow.cpp" line="1695"/>
+ <location filename="onmainwindow.cpp" line="1703"/>
+ <location filename="onmainwindow.cpp" line="1849"/>
+ <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
+ <location filename="onmainwindow.cpp" line="2354"/>
+ <location filename="onmainwindow.cpp" line="2368"/>
+ <location filename="onmainwindow.cpp" line="2381"/>
+ <location filename="onmainwindow.cpp" line="2415"/>
+ <location filename="onmainwindow.cpp" line="2460"/>
+ <location filename="onmainwindow.cpp" line="3318"/>
+ <location filename="onmainwindow.cpp" line="3496"/>
+ <location filename="onmainwindow.cpp" line="3505"/>
+ <location filename="onmainwindow.cpp" line="3821"/>
+ <location filename="onmainwindow.cpp" line="4299"/>
+ <location filename="onmainwindow.cpp" line="4376"/>
+ <location filename="onmainwindow.cpp" line="4440"/>
+ <location filename="onmainwindow.cpp" line="4473"/>
+ <location filename="onmainwindow.cpp" line="4517"/>
+ <location filename="onmainwindow.cpp" line="4920"/>
+ <location filename="onmainwindow.cpp" line="4946"/>
+ <location filename="onmainwindow.cpp" line="5096"/>
+ <location filename="onmainwindow.cpp" line="5898"/>
+ <location filename="onmainwindow.cpp" line="5934"/>
+ <location filename="onmainwindow.cpp" line="6670"/>
+ <location filename="onmainwindow.cpp" line="6754"/>
+ <location filename="onmainwindow.cpp" line="6998"/>
+ <location filename="onmainwindow.cpp" line="7126"/>
+ <location filename="onmainwindow.cpp" line="7179"/>
+ <location filename="onmainwindow.cpp" line="7485"/>
+ <location filename="onmainwindow.cpp" line="7487"/>
+ <location filename="onmainwindow.cpp" line="7718"/>
+ <location filename="onmainwindow.cpp" line="7766"/>
+ <location filename="onmainwindow.cpp" line="7794"/>
+ <location filename="onmainwindow.cpp" line="8234"/>
+ <location filename="onmainwindow.cpp" line="8250"/>
+ <location filename="onmainwindow.cpp" line="8305"/>
+ <location filename="onmainwindow.cpp" line="8333"/>
+ <location filename="onmainwindow.cpp" line="8358"/>
+ <location filename="onmainwindow.cpp" line="10575"/>
<source>Error</source>
<translation>Fel</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
+ <location filename="onmainwindow.cpp" line="893"/>
<source>Operation failed</source>
<translation>Operation misslyckades</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="896"/>
+ <location filename="onmainwindow.cpp" line="897"/>
<source>Password changed</source>
<translation>Lösenord ändrat</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="920"/>
+ <location filename="onmainwindow.cpp" line="921"/>
<source>Wrong password!</source>
<translation>Fel lösenord!</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="924"/>
- <location filename="onmainwindow.cpp" line="2562"/>
- <location filename="onmainwindow.cpp" line="10679"/>
+ <location filename="onmainwindow.cpp" line="925"/>
+ <location filename="onmainwindow.cpp" line="2569"/>
+ <location filename="onmainwindow.cpp" line="10829"/>
<source>Connecting to broker</source>
<translation>Ansluter till agent</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="969"/>
+ <location filename="onmainwindow.cpp" line="970"/>
<source><b>Authentication</b></source>
<translation><b>Autentisering</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1009"/>
+ <location filename="onmainwindow.cpp" line="1010"/>
<source>Restore</source>
<translation>Ã
terställ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1011"/>
- <location filename="onmainwindow.cpp" line="5067"/>
+ <location filename="onmainwindow.cpp" line="1012"/>
+ <location filename="onmainwindow.cpp" line="5201"/>
<source>Not connected</source>
<translation>Ej ansluten</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1013"/>
+ <location filename="onmainwindow.cpp" line="1014"/>
<source>Multimedia</source>
<translation>Ljud och video</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1015"/>
+ <location filename="onmainwindow.cpp" line="1016"/>
<source>Development</source>
<translation>Programmering</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1017"/>
+ <location filename="onmainwindow.cpp" line="1018"/>
<source>Education</source>
<translation>Utbildning</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1019"/>
+ <location filename="onmainwindow.cpp" line="1020"/>
<source>Game</source>
<translation>Spel</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1021"/>
+ <location filename="onmainwindow.cpp" line="1022"/>
<source>Graphics</source>
<translation>Grafik</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1023"/>
+ <location filename="onmainwindow.cpp" line="1024"/>
<source>Network</source>
<translation>Nätverk</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1025"/>
+ <location filename="onmainwindow.cpp" line="1026"/>
<source>Office</source>
<translation>Kontor</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1027"/>
+ <location filename="onmainwindow.cpp" line="1028"/>
<source>Settings</source>
<translation>Inställningar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1029"/>
+ <location filename="onmainwindow.cpp" line="1030"/>
<source>System</source>
<translation>System</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1031"/>
+ <location filename="onmainwindow.cpp" line="1032"/>
<source>Utility</source>
<translation>Verktyg</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1033"/>
+ <location filename="onmainwindow.cpp" line="1034"/>
<source>Other</source>
<translation>Ãvrigt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1068"/>
+ <location filename="onmainwindow.cpp" line="1069"/>
<source>Left mouse button to hide/restore - Right mouse button to display 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="onmainwindow.cpp" line="1665"/>
- <location filename="onmainwindow.cpp" line="1848"/>
- <location filename="onmainwindow.cpp" line="1878"/>
+ <location filename="onmainwindow.cpp" line="1667"/>
+ <location filename="onmainwindow.cpp" line="1850"/>
+ <location filename="onmainwindow.cpp" line="1880"/>
<source>Please check LDAP settings</source>
<translation>Kontrollera LDAP-inställningar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1700"/>
+ <location filename="onmainwindow.cpp" line="1702"/>
<source>no X2Go server found in LDAP </source>
<translation>ingen X2Go-server hittades i LDAP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2012"/>
+ <location filename="onmainwindow.cpp" line="2014"/>
<source>Create session icon on desktop</source>
<translation>Skapa sessionsgenväg på Skrivbordet</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2013"/>
+ <location filename="onmainwindow.cpp" line="2015"/>
<source>Desktop icons can be configured not to show x2goclient (hidden mode). If you like to use this feature you'll need to configure login by a gpg key or gpg smart card.
Use x2goclient hidden mode?</source>
@@ -1099,334 +1099,344 @@ Use x2goclient hidden mode?</source>
Använd dolt läge?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2024"/>
+ <location filename="onmainwindow.cpp" line="2026"/>
<source>New Session</source>
<translation>Ny session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2074"/>
+ <location filename="onmainwindow.cpp" line="2081"/>
<source>X2Go Link to session </source>
<translation>Länk till X2Go-session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2124"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
<source>X2Go sessions not found</source>
<translation>X2Go-sessioner hittades inte</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2272"/>
+ <location filename="onmainwindow.cpp" line="2279"/>
<source>Are you sure you want to delete this session?</source>
<translation>Ãr du säker pÃ¥ att du vill radera denna session?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2580"/>
- <location filename="onmainwindow.cpp" line="5593"/>
+ <location filename="onmainwindow.cpp" line="2587"/>
+ <location filename="onmainwindow.cpp" line="5733"/>
<source>KDE</source>
<translation>KDE</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2645"/>
+ <location filename="onmainwindow.cpp" line="2652"/>
<source>RDP connection</source>
<translation>RDP-anslutning</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2649"/>
+ <location filename="onmainwindow.cpp" line="2656"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2653"/>
+ <location filename="onmainwindow.cpp" line="2660"/>
<source>Connection to local desktop</source>
<translation>Anslutning till lokalt Skrivbord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2657"/>
+ <location filename="onmainwindow.cpp" line="2664"/>
<source> on </source>
<translation> på </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2863"/>
+ <location filename="onmainwindow.cpp" line="2851"/>
+ <source>Enter passphrase to decrypt a key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="2879"/>
<source>Host key for server changed.
It is now: </source>
<translation>Nyckel för server har ändrats.
Den är nu: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2864"/>
+ <location filename="onmainwindow.cpp" line="2880"/>
<source>For security reasons, connection will be stopped</source>
<translation>Anslutningen avbryts av säkerhetsskäl</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2875"/>
+ <location filename="onmainwindow.cpp" line="2893"/>
<source>The host key for this server was not found but an othertype of key exists.An attacker might change the default server key toconfuse your client into thinking the key does not exist</source>
<translation>Servern svarade inte med förväntad nyckeltyp. Det kan innebära att servern är komprommeterad</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2897"/>
+ <location filename="onmainwindow.cpp" line="2919"/>
<source>Could not find known host 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="onmainwindow.cpp" line="2902"/>
+ <location filename="onmainwindow.cpp" line="2924"/>
<source>The server is unknown. Do you trust the host key?
Public key hash: </source>
<translation>Okänd server. Litar du på denna nyckel?
Publik nyckel: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2906"/>
- <location filename="onmainwindow.cpp" line="2914"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2938"/>
<source>Host key verification failed</source>
<translation>Verifiering av serverns nyckel misslyckades</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2906"/>
- <location filename="onmainwindow.cpp" line="4098"/>
- <location filename="onmainwindow.cpp" line="4118"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4245"/>
<source>Yes</source>
<translation>Ja</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2906"/>
- <location filename="onmainwindow.cpp" line="4099"/>
- <location filename="onmainwindow.cpp" line="4119"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4226"/>
+ <location filename="onmainwindow.cpp" line="4246"/>
<source>No</source>
<translation>Nej</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2930"/>
+ <location filename="onmainwindow.cpp" line="2955"/>
<source>Authentication failed</source>
<translation>Autentisering misslyckades</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3190"/>
- <location filename="onmainwindow.cpp" line="4239"/>
- <location filename="onmainwindow.cpp" line="4335"/>
- <location filename="onmainwindow.cpp" line="4368"/>
- <location filename="onmainwindow.cpp" line="6502"/>
- <location filename="onmainwindow.cpp" line="6583"/>
- <location filename="onmainwindow.cpp" line="6955"/>
- <location filename="onmainwindow.cpp" line="7008"/>
- <location filename="onmainwindow.cpp" line="8062"/>
+ <location filename="onmainwindow.cpp" line="3290"/>
+ <source>Enter passwort for SSH proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="3311"/>
+ <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4466"/>
+ <location filename="onmainwindow.cpp" line="4499"/>
+ <location filename="onmainwindow.cpp" line="6663"/>
+ <location filename="onmainwindow.cpp" line="6747"/>
+ <location filename="onmainwindow.cpp" line="7119"/>
+ <location filename="onmainwindow.cpp" line="7172"/>
+ <location filename="onmainwindow.cpp" line="8227"/>
<source><b>Connection failed</b>
</source>
<translation><b>Anslutning misslyckades</b>
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3193"/>
- <location filename="onmainwindow.cpp" line="4242"/>
- <location filename="onmainwindow.cpp" line="4338"/>
- <location filename="onmainwindow.cpp" line="5745"/>
- <location filename="onmainwindow.cpp" line="5781"/>
- <location filename="onmainwindow.cpp" line="6505"/>
- <location filename="onmainwindow.cpp" line="6586"/>
- <location filename="onmainwindow.cpp" line="6958"/>
- <location filename="onmainwindow.cpp" line="7011"/>
- <location filename="onmainwindow.cpp" line="8065"/>
+ <location filename="onmainwindow.cpp" line="3314"/>
+ <location filename="onmainwindow.cpp" line="4372"/>
+ <location filename="onmainwindow.cpp" line="4469"/>
+ <location filename="onmainwindow.cpp" line="5895"/>
+ <location filename="onmainwindow.cpp" line="5931"/>
+ <location filename="onmainwindow.cpp" line="6666"/>
+ <location filename="onmainwindow.cpp" line="6750"/>
+ <location filename="onmainwindow.cpp" line="7122"/>
+ <location filename="onmainwindow.cpp" line="7175"/>
+ <location filename="onmainwindow.cpp" line="8230"/>
<source><b>Wrong password!</b><br><br></source>
<translation><b>Fel lösenord!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3309"/>
+ <location filename="onmainwindow.cpp" line="3430"/>
<source>unknown</source>
<translation>okänt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3376"/>
+ <location filename="onmainwindow.cpp" line="3497"/>
<source>No server availabel</source>
<translation>Ingen server tillgänglig</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3385"/>
- <location filename="onmainwindow.cpp" line="3695"/>
- <location filename="onmainwindow.cpp" line="4172"/>
- <location filename="onmainwindow.cpp" line="4310"/>
+ <location filename="onmainwindow.cpp" line="3506"/>
+ <location filename="onmainwindow.cpp" line="3822"/>
+ <location filename="onmainwindow.cpp" line="4300"/>
+ <location filename="onmainwindow.cpp" line="4441"/>
<source>Server not availabel</source>
<translation>Server ej tillgänglig</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3925"/>
- <location filename="onmainwindow.cpp" line="10197"/>
+ <location filename="onmainwindow.cpp" line="4052"/>
+ <location filename="onmainwindow.cpp" line="10347"/>
<source>Select session:</source>
<translation>Välj session:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3941"/>
- <location filename="onmainwindow.cpp" line="4035"/>
- <location filename="onmainwindow.cpp" line="5189"/>
+ <location filename="onmainwindow.cpp" line="4068"/>
+ <location filename="onmainwindow.cpp" line="4162"/>
+ <location filename="onmainwindow.cpp" line="5326"/>
<source>running</source>
<translation>aktiv</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3943"/>
- <location filename="onmainwindow.cpp" line="4258"/>
+ <location filename="onmainwindow.cpp" line="4070"/>
+ <location filename="onmainwindow.cpp" line="4388"/>
<source>suspended</source>
<translation>vilande</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3949"/>
+ <location filename="onmainwindow.cpp" line="4076"/>
<source>Desktop</source>
<translation>Skrivbord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3951"/>
+ <location filename="onmainwindow.cpp" line="4078"/>
<source>single application</source>
<translation>Applikation</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3953"/>
+ <location filename="onmainwindow.cpp" line="4080"/>
<source>shadow session</source>
<translation>Skuggsession</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3986"/>
+ <location filename="onmainwindow.cpp" line="4113"/>
<source>Information</source>
<translation>Information</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3987"/>
+ <location filename="onmainwindow.cpp" line="4114"/>
<source>No accessible desktop found</source>
<translation>Inget tillgängligt Skrivbord hittades</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4000"/>
- <location filename="onmainwindow.cpp" line="10610"/>
+ <location filename="onmainwindow.cpp" line="4127"/>
+ <location filename="onmainwindow.cpp" line="10760"/>
<source>Filter</source>
<translation>Filter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4007"/>
+ <location filename="onmainwindow.cpp" line="4134"/>
<source>Select desktop:</source>
<translation>Välj Skrivbord:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4085"/>
- <location filename="onmainwindow.cpp" line="4105"/>
- <location filename="onmainwindow.cpp" line="4993"/>
- <location filename="onmainwindow.cpp" line="5401"/>
+ <location filename="onmainwindow.cpp" line="4212"/>
+ <location filename="onmainwindow.cpp" line="4232"/>
+ <location filename="onmainwindow.cpp" line="5126"/>
+ <location filename="onmainwindow.cpp" line="5538"/>
<source>Warning</source>
<translation>Varning</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4086"/>
- <location filename="onmainwindow.cpp" line="4106"/>
+ <location filename="onmainwindow.cpp" line="4213"/>
+ <location filename="onmainwindow.cpp" line="4233"/>
<source>Your current color depth is different to the color depth of your x2go-session. 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>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4094"/>
+ <location filename="onmainwindow.cpp" line="4221"/>
<source>24 or 32</source>
<translation>24 eller 32</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4095"/>
- <location filename="onmainwindow.cpp" line="4115"/>
+ <location filename="onmainwindow.cpp" line="4222"/>
+ <location filename="onmainwindow.cpp" line="4242"/>
<source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source>
<translation> bitar och startar om X-servern innan du Ã¥teransluter till denna X2Go-session.<br>Ã
teranslut session ändå?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4197"/>
+ <location filename="onmainwindow.cpp" line="4326"/>
<source>suspending</source>
<translation>försätter i vila</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4355"/>
<source>terminating</source>
<translation>avslutar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4371"/>
+ <location filename="onmainwindow.cpp" line="4502"/>
<source><b>Wrong Password!</b><br><br></source>
<translation><b>Fel lösenord!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4787"/>
- <location filename="onmainwindow.cpp" line="6832"/>
+ <location filename="onmainwindow.cpp" line="4918"/>
+ <location filename="onmainwindow.cpp" line="6996"/>
<source>Unable to create folder:</source>
<translation>Kunde inte skapa mapp:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4813"/>
+ <location filename="onmainwindow.cpp" line="4944"/>
<source>Unable to write file:</source>
<translation>Kunde ej skriva till fil:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4936"/>
- <location filename="onmainwindow.cpp" line="9434"/>
+ <location filename="onmainwindow.cpp" line="5068"/>
+ <location filename="onmainwindow.cpp" line="9601"/>
<source>Attach X2Go window</source>
<translation>Koppla X2Go-fönster</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4962"/>
- <location filename="onmainwindow.cpp" line="8136"/>
+ <location filename="onmainwindow.cpp" line="5094"/>
+ <location filename="onmainwindow.cpp" line="8303"/>
<source>Unable to create SSL tunnel:
</source>
<translation>Kunde ej skapa SSL-tunnel:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4991"/>
+ <location filename="onmainwindow.cpp" line="5124"/>
<source>Unable to create SSL Tunnel:
</source>
<translation>Kunde ej skapa SSL-tunnel:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5154"/>
+ <location filename="onmainwindow.cpp" line="5291"/>
<source>Finished</source>
<translation>avslutad</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5178"/>
+ <location filename="onmainwindow.cpp" line="5315"/>
<source>starting</source>
<translation>startar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5182"/>
+ <location filename="onmainwindow.cpp" line="5319"/>
<source>resuming</source>
<translation>Ã¥teransluter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5245"/>
- <location filename="onmainwindow.cpp" line="5517"/>
- <location filename="onmainwindow.cpp" line="5535"/>
+ <location filename="onmainwindow.cpp" line="5382"/>
+ <location filename="onmainwindow.cpp" line="5655"/>
+ <location filename="onmainwindow.cpp" line="5674"/>
<source>Connection timeout, aborting</source>
<translation>Anslutning passerade tidsgränsen, avbryter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5246"/>
+ <location filename="onmainwindow.cpp" line="5383"/>
<source>aborting</source>
<translation>avbryter</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5402"/>
+ <location filename="onmainwindow.cpp" line="5539"/>
<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="onmainwindow.cpp" line="5485"/>
+ <location filename="onmainwindow.cpp" line="5623"/>
<source>Session</source>
<translation>Session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5487"/>
- <location filename="onmainwindow.cpp" line="10278"/>
- <location filename="onmainwindow.cpp" line="10300"/>
+ <location filename="onmainwindow.cpp" line="5625"/>
+ <location filename="onmainwindow.cpp" line="10428"/>
+ <location filename="onmainwindow.cpp" line="10450"/>
<source>Display</source>
<translation>Display</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5489"/>
- <location filename="onmainwindow.cpp" line="10289"/>
+ <location filename="onmainwindow.cpp" line="5627"/>
+ <location filename="onmainwindow.cpp" line="10439"/>
<source>Creation time</source>
<translation>Skapad</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5742"/>
- <location filename="onmainwindow.cpp" line="5778"/>
+ <location filename="onmainwindow.cpp" line="5892"/>
+ <location filename="onmainwindow.cpp" line="5928"/>
<source><b>Connection failed</b>
:
</source>
@@ -1435,127 +1445,127 @@ Data som ej sparats kommer att förloras</translation>
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6139"/>
+ <location filename="onmainwindow.cpp" line="6300"/>
<source> (can't open file)</source>
<translation> (kan inte öppna fil)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6150"/>
- <location filename="onmainwindow.cpp" line="6160"/>
- <location filename="onmainwindow.cpp" line="6170"/>
+ <location filename="onmainwindow.cpp" line="6311"/>
+ <location filename="onmainwindow.cpp" line="6321"/>
+ <location filename="onmainwindow.cpp" line="6331"/>
<source> (file not exists)</source>
<translation> (filen finns inte)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6194"/>
+ <location filename="onmainwindow.cpp" line="6355"/>
<source> (directory not exists)</source>
<translation> (mapp finns inte)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6222"/>
+ <location filename="onmainwindow.cpp" line="6383"/>
<source>wrong value for argument"--link"</source>
<translation>fel värde för "--link"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6240"/>
+ <location filename="onmainwindow.cpp" line="6401"/>
<source>wrong value for argument"--sound"</source>
<translation>fel värde för "--sound"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6257"/>
- <location filename="onmainwindow.cpp" line="6268"/>
+ <location filename="onmainwindow.cpp" line="6418"/>
+ <location filename="onmainwindow.cpp" line="6429"/>
<source>wrong value for argument"--geometry"</source>
<translation>fel värde för "--geometry"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6286"/>
+ <location filename="onmainwindow.cpp" line="6447"/>
<source>wrong value for argument"--set-kbd"</source>
<translation>fel värde för "--set-kbd"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6303"/>
+ <location filename="onmainwindow.cpp" line="6464"/>
<source>wrong value for argument"--ldap"</source>
<translation>fel värde för "--ldap"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6325"/>
+ <location filename="onmainwindow.cpp" line="6486"/>
<source>wrong value for argument"--ldap1"</source>
<translation>fel värde för "--ldap1"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6344"/>
+ <location filename="onmainwindow.cpp" line="6505"/>
<source>wrong value for argument"--ldap2"</source>
<translation>fel värde för "--ldap2"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6398"/>
+ <location filename="onmainwindow.cpp" line="6559"/>
<source>wrong value for argument"--pack"</source>
<translation>fel värde för "--pack"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6406"/>
- <location filename="onmainwindow.cpp" line="6409"/>
+ <location filename="onmainwindow.cpp" line="6567"/>
+ <location filename="onmainwindow.cpp" line="6570"/>
<source>wrong parameter: </source>
<translation>felaktig parameter:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6460"/>
- <location filename="onmainwindow.cpp" line="6486"/>
+ <location filename="onmainwindow.cpp" line="6621"/>
+ <location filename="onmainwindow.cpp" line="6647"/>
<source>Options</source>
<translation>Alternativ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6465"/>
+ <location filename="onmainwindow.cpp" line="6626"/>
<source>Available pack methodes:</source>
<translation>Tillgängliga kompressionsmetoder:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7253"/>
+ <location filename="onmainwindow.cpp" line="7417"/>
<source>Support</source>
<translation>Hjälp</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7258"/>
+ <location filename="onmainwindow.cpp" line="7422"/>
<source></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></source>
<translation></b><br> (© 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7262"/>
+ <location filename="onmainwindow.cpp" line="7426"/>
<source><br>x2goplugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></source>
<translation><br>x2goplugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7266"/>
+ <location filename="onmainwindow.cpp" line="7430"/>
<source><br>Client for use with 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 fullscreen loginscreen (replacement for loginmanager like xdm). Please visit x2go.org for further information.</source>
<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">www.x2go.org</a> för vidare information.</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7279"/>
+ <location filename="onmainwindow.cpp" line="7443"/>
<source><b>X2Go client V. </source>
<translation><b>X2Go-klient V. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7324"/>
+ <location filename="onmainwindow.cpp" line="7488"/>
<source>Please check LDAP Settings</source>
<translation>Kontrollera LDAP-inställningar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7554"/>
+ <location filename="onmainwindow.cpp" line="7719"/>
<source>No valid card found</source>
<translation>Inget giltigt kort hittades</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7602"/>
+ <location filename="onmainwindow.cpp" line="7767"/>
<source>This card is unknown by X2Go system</source>
<translation>Kortet är okänt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7630"/>
+ <location filename="onmainwindow.cpp" line="7795"/>
<source>Unable to create file: </source>
<translation>Kunde ej skapa filen: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7899"/>
+ <location filename="onmainwindow.cpp" line="8064"/>
<source>Can't start X server
Please check your settings</source>
<translation>Kan ej starta X-server
@@ -1566,7 +1576,7 @@ Kontrollera dina inställningar</translation>
<translation type="obsolete">Kan ej ansluta till X-server</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7898"/>
+ <location filename="onmainwindow.cpp" line="8063"/>
<source>Can't connect to X server
Please check your settings</source>
<oldsource>Can't connect to X-Server
@@ -1581,165 +1591,165 @@ Please check your settings</source>
Kontrollera dina inställningar</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7913"/>
- <location filename="onmainwindow.cpp" line="8559"/>
- <location filename="onmainwindow.cpp" line="8587"/>
+ <location filename="onmainwindow.cpp" line="8078"/>
+ <location filename="onmainwindow.cpp" line="8726"/>
+ <location filename="onmainwindow.cpp" line="8754"/>
<source>Can't start X Server
Please check your installation</source>
<translation>Kan ej starta X-server
Kontrollera installation</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8085"/>
+ <location filename="onmainwindow.cpp" line="8251"/>
<source>Unable to execute: </source>
<translation>Kunde ej exekvera: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8101"/>
+ <location filename="onmainwindow.cpp" line="8268"/>
<source>Remote server does not support file system export through SSH Tunnel
Please update to a newer x2goserver package</source>
<translation>Servern stöder ej filsystemsexport via SSH-tunnel
Uppdatera till en nyare version av x2goserver</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8165"/>
+ <location filename="onmainwindow.cpp" line="8332"/>
<source>Unable to read :
</source>
<translation>Kunde ej läsa :
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8190"/>
+ <location filename="onmainwindow.cpp" line="8357"/>
<source>Unable to write :
</source>
<translation>Kunde ej skriva till :
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8278"/>
+ <location filename="onmainwindow.cpp" line="8445"/>
<source>WINDOWS-1252</source>
<translation>WINDOWS-1252</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8290"/>
+ <location filename="onmainwindow.cpp" line="8457"/>
<source>ISO8859-1</source>
<translation>ISO8859-1</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9523"/>
+ <location filename="onmainwindow.cpp" line="9689"/>
<source>X2Go Session</source>
<translation>X2Go-session</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9705"/>
+ <location filename="onmainwindow.cpp" line="9871"/>
<source>wrong value for argument"speed"</source>
<translation>fel värde för "speed"</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9835"/>
+ <location filename="onmainwindow.cpp" line="9985"/>
<source>Password:</source>
<translation>Lösenord:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9836"/>
+ <location filename="onmainwindow.cpp" line="9986"/>
<source>Keyboard layout:</source>
<translatorcomment>Swenglish, but commonly used.</translatorcomment>
<translation>Tangentbordslayout:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9877"/>
+ <location filename="onmainwindow.cpp" line="10027"/>
<source>Ok</source>
<translation>OK</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9879"/>
- <location filename="onmainwindow.cpp" line="10201"/>
- <location filename="onmainwindow.cpp" line="10203"/>
+ <location filename="onmainwindow.cpp" line="10029"/>
+ <location filename="onmainwindow.cpp" line="10351"/>
+ <location filename="onmainwindow.cpp" line="10353"/>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10016"/>
+ <location filename="onmainwindow.cpp" line="10166"/>
<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="onmainwindow.cpp" line="10026"/>
+ <location filename="onmainwindow.cpp" line="10176"/>
<source>Applications...</source>
<translation>Applikationer...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10039"/>
+ <location filename="onmainwindow.cpp" line="10189"/>
<source>Abort</source>
<translation>Avbryt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10051"/>
+ <location filename="onmainwindow.cpp" line="10201"/>
<source>Show details</source>
<translation>Visa detaljer</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10199"/>
+ <location filename="onmainwindow.cpp" line="10349"/>
<source>Resume</source>
<translation>Ã
teranslut</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10211"/>
+ <location filename="onmainwindow.cpp" line="10361"/>
<source>New</source>
<translation>Ny</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10214"/>
+ <location filename="onmainwindow.cpp" line="10364"/>
<source>Full access</source>
<translation>Fullständig åtkomst</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10217"/>
+ <location filename="onmainwindow.cpp" line="10367"/>
<source>View only</source>
<translation>Endast visa</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10280"/>
+ <location filename="onmainwindow.cpp" line="10430"/>
<source>Status</source>
<translation>Status</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10282"/>
+ <location filename="onmainwindow.cpp" line="10432"/>
<source>Command</source>
<translation>Kommando</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10284"/>
+ <location filename="onmainwindow.cpp" line="10434"/>
<source>Type</source>
<translation>Typ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10286"/>
+ <location filename="onmainwindow.cpp" line="10436"/>
<source>Server</source>
<translation>Server</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10291"/>
+ <location filename="onmainwindow.cpp" line="10441"/>
<source>Client IP</source>
<translation>Klient-IP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10293"/>
+ <location filename="onmainwindow.cpp" line="10443"/>
<source>Session ID</source>
<translation>Sessions-ID</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10297"/>
+ <location filename="onmainwindow.cpp" line="10447"/>
<source>User</source>
<translation>Användare</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10328"/>
+ <location filename="onmainwindow.cpp" line="10478"/>
<source>Only my desktops</source>
<translation>Bara mina Skrivbord</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10426"/>
+ <location filename="onmainwindow.cpp" line="10576"/>
<source>sshd not started, you'll need sshd for printing and file sharing
you can install sshd with
<b>sudo apt-get install openssh-server</b></source>
@@ -1748,12 +1758,12 @@ du kan installera sshd med (Debian/Ubuntu)
<b>sudo apt-get install openssh-server</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10497"/>
+ <location filename="onmainwindow.cpp" line="10647"/>
<source>Restore toolbar</source>
<translation>Ã
terställ verktygsrad</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10542"/>
+ <location filename="onmainwindow.cpp" line="10692"/>
<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>
@@ -2134,170 +2144,226 @@ Example:
<context>
<name>SessionWidget</name>
<message>
- <location filename="sessionwidget.cpp" line="52"/>
+ <location filename="sessionwidget.cpp" line="55"/>
<source>Session name:</source>
<translation>Sessionsnamn:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="57"/>
+ <location filename="sessionwidget.cpp" line="60"/>
<source><< change icon</source>
<translation><< klicka för att ändra ikon</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="60"/>
+ <location filename="sessionwidget.cpp" line="63"/>
<source>&Server</source>
<translation>&Server</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="93"/>
+ <location filename="sessionwidget.cpp" line="96"/>
+ <location filename="sessionwidget.cpp" line="154"/>
<source>Host:</source>
<translation>Servernamn:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="94"/>
+ <location filename="sessionwidget.cpp" line="97"/>
+ <location filename="sessionwidget.cpp" line="160"/>
<source>Login:</source>
<translation>Användare:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="95"/>
- <location filename="sessionwidget.cpp" line="237"/>
+ <location filename="sessionwidget.cpp" line="98"/>
+ <location filename="sessionwidget.cpp" line="360"/>
<source>SSH port:</source>
<translation>SSH-port:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="110"/>
+ <location filename="sessionwidget.cpp" line="113"/>
<source>Use RSA/DSA key for ssh connection:</source>
<translation>Använd denna RSA/DSA-nyckel för SSH-anslutning:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="117"/>
+ <location filename="sessionwidget.cpp" line="120"/>
<source>Try auto login (ssh-agent or default ssh key)</source>
<translation>Prova automatisk inloggning (ssh-agent eller standard SSH-nyckel)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="118"/>
+ <location filename="sessionwidget.cpp" line="121"/>
<source>Kerberos 5 (GSSAPI) authentication</source>
<translation>Kerberos 5 (GSSAPI)-autentisering</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="123"/>
+ <location filename="sessionwidget.cpp" line="124"/>
+ <source>Use Proxy server for SSH connection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="125"/>
+ <source>Proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="131"/>
+ <source>SSH</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="132"/>
+ <source>HTTP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="140"/>
+ <source>Same login as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="142"/>
+ <source>Same password as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="144"/>
+ <source>RSA/DSA key:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="149"/>
+ <source>ssh-agent or default ssh key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="151"/>
+ <source>Type:</source>
+ <translation type="unfinished">Typ:</translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="155"/>
+ <source>Port:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="170"/>
<source>&Session type</source>
<translation>&Sessionstyp</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="128"/>
+ <location filename="sessionwidget.cpp" line="175"/>
<source>Session type:</source>
<translation>Sessionstyp:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="138"/>
- <location filename="sessionwidget.cpp" line="361"/>
+ <location filename="sessionwidget.cpp" line="185"/>
+ <location filename="sessionwidget.cpp" line="484"/>
<source>Connect to Windows terminal server</source>
<translation>Anslut till Windows Terminal Server (RDP)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="139"/>
+ <location filename="sessionwidget.cpp" line="186"/>
<source>XDMCP</source>
<translation>XDMCP</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="140"/>
+ <location filename="sessionwidget.cpp" line="187"/>
<source>Connect to local desktop</source>
<translation>Anslut till lokalt Skrivbord</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="141"/>
+ <location filename="sessionwidget.cpp" line="188"/>
<source>Custom desktop</source>
<translation>Anpassat Skrivbord</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="142"/>
+ <location filename="sessionwidget.cpp" line="189"/>
<source>Single application</source>
<translation>Applikation</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="143"/>
+ <location filename="sessionwidget.cpp" line="190"/>
<source>Published applications</source>
<translation>Publicerade applikationer</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="145"/>
- <location filename="sessionwidget.cpp" line="305"/>
+ <location filename="sessionwidget.cpp" line="192"/>
+ <location filename="sessionwidget.cpp" line="428"/>
<source>Command:</source>
<translation>Kommando:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="146"/>
+ <location filename="sessionwidget.cpp" line="193"/>
<source>Advanced options...</source>
<translation>Avancerade alternativ...</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="158"/>
- <location filename="sessionwidget.cpp" line="523"/>
- <location filename="sessionwidget.cpp" line="597"/>
+ <location filename="sessionwidget.cpp" line="205"/>
+ <location filename="sessionwidget.cpp" line="713"/>
+ <location filename="sessionwidget.cpp" line="808"/>
<source>Path to executable</source>
<translation>Sökväg till exekverbar fil</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="168"/>
+ <location filename="sessionwidget.cpp" line="215"/>
<source>Direct RDP Connection</source>
<translation>Direktanslutning via RDP</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="233"/>
+ <location filename="sessionwidget.cpp" line="356"/>
<source>RDP port:</source>
<translation>RDP-port:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="249"/>
+ <location filename="sessionwidget.cpp" line="372"/>
<source>Open picture</source>
<translation>Ãppna bild</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="251"/>
+ <location filename="sessionwidget.cpp" line="374"/>
<source>Pictures</source>
<translation>Bilder</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="272"/>
+ <location filename="sessionwidget.cpp" line="283"/>
+ <location filename="sessionwidget.cpp" line="395"/>
<source>Open key file</source>
<translation>Ãppna nyckelfil</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="274"/>
+ <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="397"/>
<source>All files</source>
<translation>Alla filer</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="284"/>
+ <location filename="sessionwidget.cpp" line="295"/>
+ <location filename="sessionwidget.cpp" line="407"/>
<source>Error</source>
<translation>Fel</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="296"/>
+ <location filename="sessionwidget.cpp" line="408"/>
<source>x2goclient is running in portable mode. You should use a path on your usb device to be able to access your data whereever 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="sessionwidget.cpp" line="332"/>
- <location filename="sessionwidget.cpp" line="478"/>
+ <location filename="sessionwidget.cpp" line="455"/>
+ <location filename="sessionwidget.cpp" line="668"/>
<source>Server:</source>
<translation>Server:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="341"/>
- <location filename="sessionwidget.cpp" line="490"/>
+ <location filename="sessionwidget.cpp" line="464"/>
+ <location filename="sessionwidget.cpp" line="680"/>
<source>XDMCP server:</source>
<translation>XDMCP-server:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="362"/>
+ <location filename="sessionwidget.cpp" line="485"/>
<source>rdesktop command line options:</source>
<translation>rdesktop kommandoradsalternativ:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="375"/>
- <location filename="sessionwidget.cpp" line="502"/>
+ <location filename="sessionwidget.cpp" line="498"/>
+ <location filename="sessionwidget.cpp" line="692"/>
<source>New session</source>
<translation>Ny session</translation>
</message>
@@ -2446,17 +2512,17 @@ ljudström genom brandväggar</translation>
<translation>Kommandorad:</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="642"/>
+ <location filename="settingswidget.cpp" line="645"/>
<source>us</source>
<translation>se</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="643"/>
+ <location filename="settingswidget.cpp" line="646"/>
<source>pc105/us</source>
<translation>pc105/se</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="757"/>
+ <location filename="settingswidget.cpp" line="760"/>
<source>password</source>
<translation>lösenord</translation>
</message>
@@ -2545,82 +2611,103 @@ ljudström genom brandväggar</translation>
<context>
<name>SshMasterConnection</name>
<message>
- <location filename="sshmasterconnection.cpp" line="133"/>
+ <location filename="sshmasterconnection.cpp" line="170"/>
+ <source>SSH proxy connection error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="175"/>
+ <location filename="sshmasterconnection.cpp" line="181"/>
+ <source>SSH proxy connection error: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="197"/>
+ <source>Failed to create SSH proxy tunnel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="265"/>
<source>Can not initialize libssh</source>
<translation>Kan ej initialisera libssh</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="159"/>
+ <location filename="sshmasterconnection.cpp" line="291"/>
<source>Can not create ssh session</source>
<translation>Kan ej skapa SSH-session</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="177"/>
+ <location filename="sshmasterconnection.cpp" line="319"/>
+ <source>Can not connect to proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="340"/>
<source>Can not connect to </source>
<translation>Kan inte ansluta till </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="218"/>
+ <location filename="sshmasterconnection.cpp" line="394"/>
<source>Authentication failed</source>
<translation>Autentisering misslyckades</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="244"/>
+ <location filename="sshmasterconnection.cpp" line="420"/>
<source>channel_forward_listen failed</source>
<translation>channel_forward_listen misslyckades</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="560"/>
+ <location filename="sshmasterconnection.cpp" line="830"/>
<source>Can not open file </source>
<translation>Kan inte öppna fil </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="572"/>
+ <location filename="sshmasterconnection.cpp" line="842"/>
<source>Can not create remote file </source>
<translation>Kan inte skapa fjärrfil </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="585"/>
+ <location filename="sshmasterconnection.cpp" line="855"/>
<source>Can not write to remote file </source>
<translation>Kan inte skriva till fjärrfil </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="642"/>
+ <location filename="sshmasterconnection.cpp" line="912"/>
<source>can not connect to </source>
<translation>kan inte ansluta till </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="751"/>
+ <location filename="sshmasterconnection.cpp" line="1029"/>
<source>channel_open_forward failed</source>
<translation>channel_open_forward misslyckades</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="770"/>
+ <location filename="sshmasterconnection.cpp" line="1048"/>
<source>channel_open_session failed</source>
<translation>channel_open_session misslyckades</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="777"/>
+ <location filename="sshmasterconnection.cpp" line="1055"/>
<source>channel_request_exec failed</source>
<translation>channel_request_exec misslyckades</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="842"/>
+ <location filename="sshmasterconnection.cpp" line="1120"/>
<source>error writing to socket</source>
<translation>ett fel uppstod vid skrivning till socket</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="860"/>
+ <location filename="sshmasterconnection.cpp" line="1138"/>
<source>error reading channel</source>
<translation>ett fel uppstod när kanal skulle läsas</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="890"/>
+ <location filename="sshmasterconnection.cpp" line="1168"/>
<source>channel_write failed</source>
<translation>channel_write misslyckades</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="902"/>
+ <location filename="sshmasterconnection.cpp" line="1180"/>
<source>error reading tcp socket</source>
<translation>ett fel uppstod när tcp socket skulle läsas</translation>
</message>
@@ -2628,12 +2715,12 @@ ljudström genom brandväggar</translation>
<context>
<name>SshProcess</name>
<message>
- <location filename="sshprocess.cpp" line="97"/>
+ <location filename="sshprocess.cpp" line="112"/>
<source>Error creating socket</source>
<translation>Ett fel uppstod när socket skulle skapas</translation>
</message>
<message>
- <location filename="sshprocess.cpp" line="115"/>
+ <location filename="sshprocess.cpp" line="130"/>
<source>Error binding </source>
<translation>Ett fel uppstod vid anslutning till socket </translation>
</message>
diff --git a/x2goclient_zh_tw.ts b/x2goclient_zh_tw.ts
index 5abea78..8200218 100644
--- a/x2goclient_zh_tw.ts
+++ b/x2goclient_zh_tw.ts
@@ -723,367 +723,367 @@
<context>
<name>ONMainWindow</name>
<message>
- <location filename="onmainwindow.cpp" line="90"/>
- <location filename="onmainwindow.cpp" line="6030"/>
+ <location filename="onmainwindow.cpp" line="92"/>
+ <location filename="onmainwindow.cpp" line="6188"/>
<source>us</source>
<translation>us</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="91"/>
+ <location filename="onmainwindow.cpp" line="93"/>
<source>pc105/us</source>
<translation>pc105/us</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="140"/>
+ <location filename="onmainwindow.cpp" line="141"/>
<source>X2Go client</source>
<translation>X2Goç¨æ¶ç«¯</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="157"/>
- <location filename="onmainwindow.cpp" line="2972"/>
- <location filename="onmainwindow.cpp" line="5167"/>
+ <location filename="onmainwindow.cpp" line="158"/>
+ <location filename="onmainwindow.cpp" line="2999"/>
+ <location filename="onmainwindow.cpp" line="5306"/>
<source>connecting</source>
<translation>æ£å¨é£ç·</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="164"/>
+ <location filename="onmainwindow.cpp" line="165"/>
<source>Internet browser</source>
<translation>ç¶²é ç覽å¨</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="165"/>
+ <location filename="onmainwindow.cpp" line="166"/>
<source>Email client</source>
<translation>é»åéµä»¶è»é«</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="166"/>
+ <location filename="onmainwindow.cpp" line="167"/>
<source>OpenOffice.org</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="167"/>
+ <location filename="onmainwindow.cpp" line="168"/>
<source>Terminal</source>
<translation>çµç«¯æ©</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="342"/>
+ <location filename="onmainwindow.cpp" line="343"/>
<source>&Settings ...</source>
<translation>è¨å®(&S) ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="346"/>
+ <location filename="onmainwindow.cpp" line="347"/>
<source>Support ...</source>
<translation>æ¯æ´ ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="353"/>
- <location filename="onmainwindow.cpp" line="7276"/>
+ <location filename="onmainwindow.cpp" line="354"/>
+ <location filename="onmainwindow.cpp" line="7442"/>
<source>About X2GO client</source>
<translation>éæ¼X2GOç¨æ¶ç«¯</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="557"/>
- <location filename="onmainwindow.cpp" line="1038"/>
- <location filename="onmainwindow.cpp" line="10021"/>
+ <location filename="onmainwindow.cpp" line="558"/>
+ <location filename="onmainwindow.cpp" line="1039"/>
+ <location filename="onmainwindow.cpp" line="10183"/>
<source>Share folder...</source>
<translation>å
±äº«è³æå¤¾...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="560"/>
- <location filename="onmainwindow.cpp" line="1039"/>
- <location filename="onmainwindow.cpp" line="5223"/>
- <location filename="onmainwindow.cpp" line="10194"/>
+ <location filename="onmainwindow.cpp" line="561"/>
+ <location filename="onmainwindow.cpp" line="1040"/>
+ <location filename="onmainwindow.cpp" line="5362"/>
+ <location filename="onmainwindow.cpp" line="10356"/>
<source>Suspend</source>
<translation>æ«å</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="563"/>
- <location filename="onmainwindow.cpp" line="1040"/>
- <location filename="onmainwindow.cpp" line="10034"/>
+ <location filename="onmainwindow.cpp" line="564"/>
+ <location filename="onmainwindow.cpp" line="1041"/>
<location filename="onmainwindow.cpp" line="10196"/>
+ <location filename="onmainwindow.cpp" line="10358"/>
<source>Terminate</source>
<translation>çµæ¢</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="565"/>
+ <location filename="onmainwindow.cpp" line="566"/>
<source>Reconnect</source>
<translation>éæ°é£ç·</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="569"/>
- <location filename="onmainwindow.cpp" line="9447"/>
+ <location filename="onmainwindow.cpp" line="570"/>
+ <location filename="onmainwindow.cpp" line="9626"/>
<source>Detach X2Go window</source>
<translation>è«é¢X2Goè¦çª</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="572"/>
- <location filename="onmainwindow.cpp" line="10497"/>
+ <location filename="onmainwindow.cpp" line="573"/>
+ <location filename="onmainwindow.cpp" line="10659"/>
<source>Minimize toolbar</source>
<translation>å°å·¥å
·åæå°å</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="682"/>
- <location filename="onmainwindow.cpp" line="1987"/>
- <location filename="onmainwindow.cpp" line="7376"/>
+ <location filename="onmainwindow.cpp" line="683"/>
+ <location filename="onmainwindow.cpp" line="1991"/>
+ <location filename="onmainwindow.cpp" line="7542"/>
<source>Session:</source>
<translation>å·¥ä½é段:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="734"/>
+ <location filename="onmainwindow.cpp" line="735"/>
<source>&Quit</source>
<translation>é¢é(&Q)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="735"/>
+ <location filename="onmainwindow.cpp" line="736"/>
<source>Ctrl+Q</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="736"/>
- <location filename="onmainwindow.cpp" line="1057"/>
+ <location filename="onmainwindow.cpp" line="737"/>
+ <location filename="onmainwindow.cpp" line="1058"/>
<source>Quit</source>
<translation>é¢é</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="739"/>
+ <location filename="onmainwindow.cpp" line="740"/>
<source>&New session ...</source>
<translation>æ°å¢å·¥ä½é段(&N) ...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="740"/>
+ <location filename="onmainwindow.cpp" line="741"/>
<source>Ctrl+N</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="745"/>
+ <location filename="onmainwindow.cpp" line="746"/>
<source>Session management...</source>
<translation>å·¥ä½é段管çå¡...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="746"/>
+ <location filename="onmainwindow.cpp" line="747"/>
<source>Ctrl+E</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="756"/>
+ <location filename="onmainwindow.cpp" line="757"/>
<source>&Create session icon on desktop...</source>
<translation>卿¡é¢ä¸å»ºç«å·¥ä½é段å示(&C)...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="765"/>
+ <location filename="onmainwindow.cpp" line="766"/>
<source>&Set broker password...</source>
<translation>è¨å®ä»£ç伺æå¨å¯ç¢¼(&S)...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="776"/>
+ <location filename="onmainwindow.cpp" line="777"/>
<source>&Connectivity test...</source>
<translation>é£ç·è½å測試(&C)...</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="783"/>
- <location filename="onmainwindow.cpp" line="804"/>
+ <location filename="onmainwindow.cpp" line="784"/>
+ <location filename="onmainwindow.cpp" line="805"/>
<source>Show toolbar</source>
<translation>顯示工å
·å</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="789"/>
+ <location filename="onmainwindow.cpp" line="790"/>
<source>About Qt</source>
<translation>éæ¼Qt</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="806"/>
+ <location filename="onmainwindow.cpp" line="807"/>
<source>Ctrl+Q</source>
<comment>exit</comment>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="812"/>
+ <location filename="onmainwindow.cpp" line="813"/>
<source>&Session</source>
<translation>å·¥ä½é段(&S)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="813"/>
+ <location filename="onmainwindow.cpp" line="814"/>
<source>&Options</source>
<translation>é¸é
(&O)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="832"/>
+ <location filename="onmainwindow.cpp" line="833"/>
<source>&Help</source>
<translation>幫å©(&H)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="871"/>
- <location filename="onmainwindow.cpp" line="1980"/>
- <location filename="onmainwindow.cpp" line="7369"/>
- <location filename="onmainwindow.cpp" line="9822"/>
+ <location filename="onmainwindow.cpp" line="872"/>
+ <location filename="onmainwindow.cpp" line="1984"/>
+ <location filename="onmainwindow.cpp" line="7535"/>
+ <location filename="onmainwindow.cpp" line="9984"/>
<source>Login:</source>
<translation>ç»å
¥:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
- <location filename="onmainwindow.cpp" line="920"/>
- <location filename="onmainwindow.cpp" line="1662"/>
- <location filename="onmainwindow.cpp" line="1691"/>
- <location filename="onmainwindow.cpp" line="1699"/>
- <location filename="onmainwindow.cpp" line="1845"/>
- <location filename="onmainwindow.cpp" line="1872"/>
- <location filename="onmainwindow.cpp" line="1875"/>
- <location filename="onmainwindow.cpp" line="2122"/>
- <location filename="onmainwindow.cpp" line="2345"/>
- <location filename="onmainwindow.cpp" line="2359"/>
- <location filename="onmainwindow.cpp" line="2372"/>
- <location filename="onmainwindow.cpp" line="2406"/>
- <location filename="onmainwindow.cpp" line="2451"/>
- <location filename="onmainwindow.cpp" line="3195"/>
- <location filename="onmainwindow.cpp" line="3373"/>
- <location filename="onmainwindow.cpp" line="3382"/>
- <location filename="onmainwindow.cpp" line="3692"/>
- <location filename="onmainwindow.cpp" line="4169"/>
- <location filename="onmainwindow.cpp" line="4244"/>
- <location filename="onmainwindow.cpp" line="4307"/>
- <location filename="onmainwindow.cpp" line="4340"/>
- <location filename="onmainwindow.cpp" line="4384"/>
- <location filename="onmainwindow.cpp" line="4787"/>
- <location filename="onmainwindow.cpp" line="4813"/>
- <location filename="onmainwindow.cpp" line="4962"/>
- <location filename="onmainwindow.cpp" line="5746"/>
- <location filename="onmainwindow.cpp" line="5782"/>
- <location filename="onmainwindow.cpp" line="6507"/>
- <location filename="onmainwindow.cpp" line="6588"/>
- <location filename="onmainwindow.cpp" line="6832"/>
- <location filename="onmainwindow.cpp" line="6960"/>
- <location filename="onmainwindow.cpp" line="7013"/>
- <location filename="onmainwindow.cpp" line="7319"/>
- <location filename="onmainwindow.cpp" line="7321"/>
- <location filename="onmainwindow.cpp" line="7551"/>
- <location filename="onmainwindow.cpp" line="7599"/>
- <location filename="onmainwindow.cpp" line="7627"/>
- <location filename="onmainwindow.cpp" line="8067"/>
- <location filename="onmainwindow.cpp" line="8082"/>
- <location filename="onmainwindow.cpp" line="8136"/>
- <location filename="onmainwindow.cpp" line="8164"/>
- <location filename="onmainwindow.cpp" line="8189"/>
- <location filename="onmainwindow.cpp" line="10413"/>
+ <location filename="onmainwindow.cpp" line="893"/>
+ <location filename="onmainwindow.cpp" line="921"/>
+ <location filename="onmainwindow.cpp" line="1666"/>
+ <location filename="onmainwindow.cpp" line="1695"/>
+ <location filename="onmainwindow.cpp" line="1703"/>
+ <location filename="onmainwindow.cpp" line="1849"/>
+ <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1879"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
+ <location filename="onmainwindow.cpp" line="2354"/>
+ <location filename="onmainwindow.cpp" line="2368"/>
+ <location filename="onmainwindow.cpp" line="2381"/>
+ <location filename="onmainwindow.cpp" line="2415"/>
+ <location filename="onmainwindow.cpp" line="2460"/>
+ <location filename="onmainwindow.cpp" line="3318"/>
+ <location filename="onmainwindow.cpp" line="3496"/>
+ <location filename="onmainwindow.cpp" line="3505"/>
+ <location filename="onmainwindow.cpp" line="3821"/>
+ <location filename="onmainwindow.cpp" line="4299"/>
+ <location filename="onmainwindow.cpp" line="4376"/>
+ <location filename="onmainwindow.cpp" line="4440"/>
+ <location filename="onmainwindow.cpp" line="4473"/>
+ <location filename="onmainwindow.cpp" line="4517"/>
+ <location filename="onmainwindow.cpp" line="4920"/>
+ <location filename="onmainwindow.cpp" line="4946"/>
+ <location filename="onmainwindow.cpp" line="5096"/>
+ <location filename="onmainwindow.cpp" line="5898"/>
+ <location filename="onmainwindow.cpp" line="5934"/>
+ <location filename="onmainwindow.cpp" line="6670"/>
+ <location filename="onmainwindow.cpp" line="6754"/>
+ <location filename="onmainwindow.cpp" line="6998"/>
+ <location filename="onmainwindow.cpp" line="7126"/>
+ <location filename="onmainwindow.cpp" line="7179"/>
+ <location filename="onmainwindow.cpp" line="7485"/>
+ <location filename="onmainwindow.cpp" line="7487"/>
+ <location filename="onmainwindow.cpp" line="7718"/>
+ <location filename="onmainwindow.cpp" line="7766"/>
+ <location filename="onmainwindow.cpp" line="7794"/>
+ <location filename="onmainwindow.cpp" line="8234"/>
+ <location filename="onmainwindow.cpp" line="8250"/>
+ <location filename="onmainwindow.cpp" line="8305"/>
+ <location filename="onmainwindow.cpp" line="8333"/>
+ <location filename="onmainwindow.cpp" line="8358"/>
+ <location filename="onmainwindow.cpp" line="10575"/>
<source>Error</source>
<translation>é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="892"/>
+ <location filename="onmainwindow.cpp" line="893"/>
<source>Operation failed</source>
<translation>æ´æ¹å¯ç¢¼å¤±æ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="896"/>
+ <location filename="onmainwindow.cpp" line="897"/>
<source>Password changed</source>
<translation>å¯ç¢¼å·²æ´æ¹æå</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="920"/>
+ <location filename="onmainwindow.cpp" line="921"/>
<source>Wrong password!</source>
<translation>輸å
¥äºé¯èª¤çå¯ç¢¼!</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="924"/>
- <location filename="onmainwindow.cpp" line="2560"/>
- <location filename="onmainwindow.cpp" line="10667"/>
+ <location filename="onmainwindow.cpp" line="925"/>
+ <location filename="onmainwindow.cpp" line="2569"/>
+ <location filename="onmainwindow.cpp" line="10829"/>
<source>Connecting to broker</source>
<translation>é£ç·è³é£ç·ä»£ç伺æå¨</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="969"/>
+ <location filename="onmainwindow.cpp" line="970"/>
<source><b>Authentication</b></source>
<translation><b>身份é©è</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1009"/>
+ <location filename="onmainwindow.cpp" line="1010"/>
<source>Restore</source>
<translation>éå</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1011"/>
- <location filename="onmainwindow.cpp" line="5065"/>
+ <location filename="onmainwindow.cpp" line="1012"/>
+ <location filename="onmainwindow.cpp" line="5201"/>
<source>Not connected</source>
<translation>å°æªé£ç·</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1013"/>
+ <location filename="onmainwindow.cpp" line="1014"/>
<source>Multimedia</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1015"/>
+ <location filename="onmainwindow.cpp" line="1016"/>
<source>Development</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1017"/>
+ <location filename="onmainwindow.cpp" line="1018"/>
<source>Education</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1019"/>
+ <location filename="onmainwindow.cpp" line="1020"/>
<source>Game</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1021"/>
+ <location filename="onmainwindow.cpp" line="1022"/>
<source>Graphics</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1023"/>
+ <location filename="onmainwindow.cpp" line="1024"/>
<source>Network</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1025"/>
+ <location filename="onmainwindow.cpp" line="1026"/>
<source>Office</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1027"/>
+ <location filename="onmainwindow.cpp" line="1028"/>
<source>Settings</source>
<translation type="unfinished">è¨å®</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1029"/>
+ <location filename="onmainwindow.cpp" line="1030"/>
<source>System</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1031"/>
+ <location filename="onmainwindow.cpp" line="1032"/>
<source>Utility</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1033"/>
+ <location filename="onmainwindow.cpp" line="1034"/>
<source>Other</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1068"/>
+ <location filename="onmainwindow.cpp" line="1069"/>
<source>Left mouse button to hide/restore - Right mouse button to display context menu</source>
<translation>ææ»é¼ å·¦éµä»¥é±èæéåè¦çª, å³éµé¡¯ç¤ºé¸å®</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1663"/>
- <location filename="onmainwindow.cpp" line="1846"/>
- <location filename="onmainwindow.cpp" line="1876"/>
+ <location filename="onmainwindow.cpp" line="1667"/>
+ <location filename="onmainwindow.cpp" line="1850"/>
+ <location filename="onmainwindow.cpp" line="1880"/>
<source>Please check LDAP settings</source>
<translation>è«ç¢ºèªLDAPçè¨å®</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="1698"/>
+ <location filename="onmainwindow.cpp" line="1702"/>
<source>no X2Go server found in LDAP </source>
<translation>å¨LDAPç°å¢ä¸æ²ææ¾å°X2Go伺æå¨</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2010"/>
+ <location filename="onmainwindow.cpp" line="2014"/>
<source>Create session icon on desktop</source>
<translation>卿¡é¢ä¸å»ºç«å·¥ä½é段å示</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2011"/>
+ <location filename="onmainwindow.cpp" line="2015"/>
<source>Desktop icons can be configured not to show x2goclient (hidden mode). If you like to use this feature you'll need to configure login by a gpg key or gpg smart card.
Use x2goclient hidden mode?</source>
@@ -1092,332 +1092,342 @@ Use x2goclient hidden mode?</source>
æ¯å¦è¦ä½¿ç¨X2Goç¨æ¶ç«¯çé±è模å¼?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2022"/>
+ <location filename="onmainwindow.cpp" line="2026"/>
<source>New Session</source>
<translation>æ°çå·¥ä½é段</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2072"/>
+ <location filename="onmainwindow.cpp" line="2081"/>
<source>X2Go Link to session </source>
<translation>X2Goå·¥ä½é段çé£çµ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2122"/>
+ <location filename="onmainwindow.cpp" line="2131"/>
<source>X2Go sessions not found</source>
<translation>ç¡æ³æ¾å°X2Goçå·¥ä½</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2270"/>
+ <location filename="onmainwindow.cpp" line="2279"/>
<source>Are you sure you want to delete this session?</source>
<translation>æ¨ç¢ºå®è¦åªé¤æ¤å·¥ä½é段å?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2578"/>
- <location filename="onmainwindow.cpp" line="5591"/>
+ <location filename="onmainwindow.cpp" line="2587"/>
+ <location filename="onmainwindow.cpp" line="5733"/>
<source>KDE</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2643"/>
+ <location filename="onmainwindow.cpp" line="2652"/>
<source>RDP connection</source>
<translation>RDPé£ç·</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2647"/>
+ <location filename="onmainwindow.cpp" line="2656"/>
<source>XDMCP</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2651"/>
+ <location filename="onmainwindow.cpp" line="2660"/>
<source>Connection to local desktop</source>
<translation>é£ç·è³æ¬å°æ¡é¢</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2655"/>
+ <location filename="onmainwindow.cpp" line="2664"/>
<source> on </source>
<translation> æ¼ </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2861"/>
+ <location filename="onmainwindow.cpp" line="2851"/>
+ <source>Enter passphrase to decrypt a key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="2879"/>
<source>Host key for server changed.
It is now: </source>
<translation>主æ©çSSHå¯é°å·²ç¶æ´æã
ç¾å¨çå¯é°çº: </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2862"/>
+ <location filename="onmainwindow.cpp" line="2880"/>
<source>For security reasons, connection will be stopped</source>
<translation>ç±æ¼å®å
¨æ§çèéï¼ç®åçé£ç·å·²è¢«ä¸æ¢</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2873"/>
+ <location filename="onmainwindow.cpp" line="2893"/>
<source>The host key for this server was not found but an othertype of key exists.An attacker might change the default server key toconfuse your client into thinking the key does not exist</source>
<translation>ç®åæ²ææ¾å°ä¼ºæå¨ä¸ç主æ©å¯é°ï¼ä¸éæå
¶å®é¡åçå¯é°åå¨ãæ¡æçæ»æè
å¯è½æå©ç¨æ¹è®é è¨ç伺æå¨å¯é°ä¾è®æ¨çç¨æ¶ç«¯èªçºåæ¬çå¯é°ä¸¦ä¸åå¨</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2895"/>
+ <location filename="onmainwindow.cpp" line="2919"/>
<source>Could not find known host file.If you accept the host key here, the file will be automatically created</source>
<translation>ç®åæ²æç¼ç¾å·²ç¥çä¸»æ©æªæ¡ãå¦ææ¨æ¥åç®åç主æ©å¯é°ï¼éåæªæ¡å°æèªå被建ç«ã</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2900"/>
+ <location filename="onmainwindow.cpp" line="2924"/>
<source>The server is unknown. Do you trust the host key?
Public key hash: </source>
<translation>æ¤çºæªç¥ç伺æå¨ï¼æ¨è¦é¸æä¿¡ä»»æ¤ä¸»æ©å¯é°å?
æ¤å
¬éå¯é°çéæ¹å¼çº:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="2912"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2938"/>
<source>Host key verification failed</source>
<translation>主æ©å¯é°é©è任失æ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4096"/>
- <location filename="onmainwindow.cpp" line="4116"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4225"/>
+ <location filename="onmainwindow.cpp" line="4245"/>
<source>Yes</source>
<translation>æ¯</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2904"/>
- <location filename="onmainwindow.cpp" line="4097"/>
- <location filename="onmainwindow.cpp" line="4117"/>
+ <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="4226"/>
+ <location filename="onmainwindow.cpp" line="4246"/>
<source>No</source>
<translation>å¦</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="2928"/>
+ <location filename="onmainwindow.cpp" line="2955"/>
<source>Authentication failed</source>
<translation>èªè失æ</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3188"/>
- <location filename="onmainwindow.cpp" line="4237"/>
- <location filename="onmainwindow.cpp" line="4333"/>
- <location filename="onmainwindow.cpp" line="4366"/>
- <location filename="onmainwindow.cpp" line="6500"/>
- <location filename="onmainwindow.cpp" line="6581"/>
- <location filename="onmainwindow.cpp" line="6953"/>
- <location filename="onmainwindow.cpp" line="7006"/>
- <location filename="onmainwindow.cpp" line="8060"/>
+ <location filename="onmainwindow.cpp" line="3290"/>
+ <source>Enter passwort for SSH proxy</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="onmainwindow.cpp" line="3311"/>
+ <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4466"/>
+ <location filename="onmainwindow.cpp" line="4499"/>
+ <location filename="onmainwindow.cpp" line="6663"/>
+ <location filename="onmainwindow.cpp" line="6747"/>
+ <location filename="onmainwindow.cpp" line="7119"/>
+ <location filename="onmainwindow.cpp" line="7172"/>
+ <location filename="onmainwindow.cpp" line="8227"/>
<source><b>Connection failed</b>
</source>
<translation><b>é£ç·å¤±æ</b>
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3191"/>
- <location filename="onmainwindow.cpp" line="4240"/>
- <location filename="onmainwindow.cpp" line="4336"/>
- <location filename="onmainwindow.cpp" line="5743"/>
- <location filename="onmainwindow.cpp" line="5779"/>
- <location filename="onmainwindow.cpp" line="6503"/>
- <location filename="onmainwindow.cpp" line="6584"/>
- <location filename="onmainwindow.cpp" line="6956"/>
- <location filename="onmainwindow.cpp" line="7009"/>
- <location filename="onmainwindow.cpp" line="8063"/>
+ <location filename="onmainwindow.cpp" line="3314"/>
+ <location filename="onmainwindow.cpp" line="4372"/>
+ <location filename="onmainwindow.cpp" line="4469"/>
+ <location filename="onmainwindow.cpp" line="5895"/>
+ <location filename="onmainwindow.cpp" line="5931"/>
+ <location filename="onmainwindow.cpp" line="6666"/>
+ <location filename="onmainwindow.cpp" line="6750"/>
+ <location filename="onmainwindow.cpp" line="7122"/>
+ <location filename="onmainwindow.cpp" line="7175"/>
+ <location filename="onmainwindow.cpp" line="8230"/>
<source><b>Wrong password!</b><br><br></source>
<translation><b>䏿£ç¢ºçå¯ç¢¼!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3307"/>
+ <location filename="onmainwindow.cpp" line="3430"/>
<source>unknown</source>
<translation>æªç¥</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3374"/>
+ <location filename="onmainwindow.cpp" line="3497"/>
<source>No server availabel</source>
<translation>伺æå¨ä¸åå¨l</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3383"/>
- <location filename="onmainwindow.cpp" line="3693"/>
- <location filename="onmainwindow.cpp" line="4170"/>
- <location filename="onmainwindow.cpp" line="4308"/>
+ <location filename="onmainwindow.cpp" line="3506"/>
+ <location filename="onmainwindow.cpp" line="3822"/>
+ <location filename="onmainwindow.cpp" line="4300"/>
+ <location filename="onmainwindow.cpp" line="4441"/>
<source>Server not availabel</source>
<translation>伺æå¨ä¸åå¨|</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3923"/>
- <location filename="onmainwindow.cpp" line="10185"/>
+ <location filename="onmainwindow.cpp" line="4052"/>
+ <location filename="onmainwindow.cpp" line="10347"/>
<source>Select session:</source>
<translation>è«é¸æå·¥ä½é段:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3939"/>
- <location filename="onmainwindow.cpp" line="4033"/>
- <location filename="onmainwindow.cpp" line="5187"/>
+ <location filename="onmainwindow.cpp" line="4068"/>
+ <location filename="onmainwindow.cpp" line="4162"/>
+ <location filename="onmainwindow.cpp" line="5326"/>
<source>running</source>
<translation>æ£å¨å·è¡ä¸</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3941"/>
- <location filename="onmainwindow.cpp" line="4256"/>
+ <location filename="onmainwindow.cpp" line="4070"/>
+ <location filename="onmainwindow.cpp" line="4388"/>
<source>suspended</source>
<translation>å·²æ«å</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3947"/>
+ <location filename="onmainwindow.cpp" line="4076"/>
<source>Desktop</source>
<translation>æ¡é¢</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3949"/>
+ <location filename="onmainwindow.cpp" line="4078"/>
<source>single application</source>
<translation>å®ä¸çæç¨ç¨å¼</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3951"/>
+ <location filename="onmainwindow.cpp" line="4080"/>
<source>shadow session</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3984"/>
+ <location filename="onmainwindow.cpp" line="4113"/>
<source>Information</source>
<translation>è³è¨</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3985"/>
+ <location filename="onmainwindow.cpp" line="4114"/>
<source>No accessible desktop found</source>
<translation>ç®åæ²ææ¾å°å¯è¨ªåç工使¡é¢</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="3998"/>
- <location filename="onmainwindow.cpp" line="10598"/>
+ <location filename="onmainwindow.cpp" line="4127"/>
+ <location filename="onmainwindow.cpp" line="10760"/>
<source>Filter</source>
<translation>篩é¸å¨</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4005"/>
+ <location filename="onmainwindow.cpp" line="4134"/>
<source>Select desktop:</source>
<translation>è«é¸æå·¥ä½æ¡é¢:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4083"/>
- <location filename="onmainwindow.cpp" line="4103"/>
- <location filename="onmainwindow.cpp" line="4991"/>
- <location filename="onmainwindow.cpp" line="5399"/>
+ <location filename="onmainwindow.cpp" line="4212"/>
+ <location filename="onmainwindow.cpp" line="4232"/>
+ <location filename="onmainwindow.cpp" line="5126"/>
+ <location filename="onmainwindow.cpp" line="5538"/>
<source>Warning</source>
<translation>è¦å</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4084"/>
- <location filename="onmainwindow.cpp" line="4104"/>
+ <location filename="onmainwindow.cpp" line="4213"/>
+ <location filename="onmainwindow.cpp" line="4233"/>
<source>Your current color depth is different to the color depth of your x2go-session. 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>æ¨ç®å使ç¨èx2goå·¥ä½é段ä¸åçè²å½©è¨å®ãå¯è½æé æé£ç·çä¸ç©©å®ï¼ä¸¦ä¸å¾å¯è½æåªå¤±ç®åçå·¥ä½é段ãå¼·ç建è°å
å°ç®å使ç¨çè²å½©è¨å®è¨çº</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4092"/>
+ <location filename="onmainwindow.cpp" line="4221"/>
<source>24 or 32</source>
<translation>24æ32</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4093"/>
- <location filename="onmainwindow.cpp" line="4113"/>
+ <location filename="onmainwindow.cpp" line="4222"/>
+ <location filename="onmainwindow.cpp" line="4242"/>
<source> bit and restart your X-server before you reconnect to this x2go-session.<br>Resume this session anyway?</source>
<translation>ä½å
並ä¸éæ°ååX-serverï¼ä¹å¾å鿰飿¥éä¸åå·¥ä½é段ã<br>è«åæ¨ç¡è«å¦ä½é½è¦æ¢å¾©æ¤å·¥ä½é段çé£ç·å?</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4195"/>
+ <location filename="onmainwindow.cpp" line="4326"/>
<source>suspending</source>
<translation>æ£å¨æ«åå·¥ä½ä¸</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4223"/>
+ <location filename="onmainwindow.cpp" line="4355"/>
<source>terminating</source>
<translation>æ£å¨ä¸æ¢å·¥ä½ä¸</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4369"/>
+ <location filename="onmainwindow.cpp" line="4502"/>
<source><b>Wrong Password!</b><br><br></source>
<translation><b>䏿£ç¢ºçå¯ç¢¼!</b><br><br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4785"/>
- <location filename="onmainwindow.cpp" line="6830"/>
+ <location filename="onmainwindow.cpp" line="4918"/>
+ <location filename="onmainwindow.cpp" line="6996"/>
<source>Unable to create folder:</source>
<translation>ç¡æ³åµå»ºè³æå¤¾:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4811"/>
+ <location filename="onmainwindow.cpp" line="4944"/>
<source>Unable to write file:</source>
<translation>æªæ¡ç¡æ³å¯«å
¥:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4934"/>
- <location filename="onmainwindow.cpp" line="9422"/>
+ <location filename="onmainwindow.cpp" line="5068"/>
+ <location filename="onmainwindow.cpp" line="9601"/>
<source>Attach X2Go window</source>
<translation>飿¥X2Goè¦çª</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4960"/>
- <location filename="onmainwindow.cpp" line="8134"/>
+ <location filename="onmainwindow.cpp" line="5094"/>
+ <location filename="onmainwindow.cpp" line="8303"/>
<source>Unable to create SSL tunnel:
</source>
<translation>ç¡æ³å»ºç«SSLéé:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="4989"/>
+ <location filename="onmainwindow.cpp" line="5124"/>
<source>Unable to create SSL Tunnel:
</source>
<translation>ç¡æ³å»ºç«SSLéé:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5152"/>
+ <location filename="onmainwindow.cpp" line="5291"/>
<source>Finished</source>
<translation>已宿</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5176"/>
+ <location filename="onmainwindow.cpp" line="5315"/>
<source>starting</source>
<translation>æ£å¨éå§</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5180"/>
+ <location filename="onmainwindow.cpp" line="5319"/>
<source>resuming</source>
<translation>æ£å¨éå</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5243"/>
- <location filename="onmainwindow.cpp" line="5515"/>
- <location filename="onmainwindow.cpp" line="5533"/>
+ <location filename="onmainwindow.cpp" line="5382"/>
+ <location filename="onmainwindow.cpp" line="5655"/>
+ <location filename="onmainwindow.cpp" line="5674"/>
<source>Connection timeout, aborting</source>
<translation>é£ç·è¶
æï¼ä¸æ¢ä¸</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5244"/>
+ <location filename="onmainwindow.cpp" line="5383"/>
<source>aborting</source>
<translation>䏿¢ä¸</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5400"/>
+ <location filename="onmainwindow.cpp" line="5539"/>
<source>Are you sure you want to terminate this session?
Unsaved documents will be lost</source>
<translation>æ¨ç¢ºå®è¦çµæ¢ç®åçå·¥ä½é段å? æææªåæªçè³æé½å°æéºå¤±</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5483"/>
+ <location filename="onmainwindow.cpp" line="5623"/>
<source>Session</source>
<translation>å·¥ä½é段</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5485"/>
- <location filename="onmainwindow.cpp" line="10266"/>
- <location filename="onmainwindow.cpp" line="10288"/>
+ <location filename="onmainwindow.cpp" line="5625"/>
+ <location filename="onmainwindow.cpp" line="10428"/>
+ <location filename="onmainwindow.cpp" line="10450"/>
<source>Display</source>
<translation>顯示</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5487"/>
- <location filename="onmainwindow.cpp" line="10277"/>
+ <location filename="onmainwindow.cpp" line="5627"/>
+ <location filename="onmainwindow.cpp" line="10439"/>
<source>Creation time</source>
<translation>åµå»ºæé</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="5740"/>
- <location filename="onmainwindow.cpp" line="5776"/>
+ <location filename="onmainwindow.cpp" line="5892"/>
+ <location filename="onmainwindow.cpp" line="5928"/>
<source><b>Connection failed</b>
:
</source>
@@ -1426,127 +1436,127 @@ Unsaved documents will be lost</source>
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6137"/>
+ <location filename="onmainwindow.cpp" line="6300"/>
<source> (can't open file)</source>
<translation> (ç¡æ³éåæªæ¡)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6148"/>
- <location filename="onmainwindow.cpp" line="6158"/>
- <location filename="onmainwindow.cpp" line="6168"/>
+ <location filename="onmainwindow.cpp" line="6311"/>
+ <location filename="onmainwindow.cpp" line="6321"/>
+ <location filename="onmainwindow.cpp" line="6331"/>
<source> (file not exists)</source>
<translation> (æªæ¡ä¸åå¨)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6192"/>
+ <location filename="onmainwindow.cpp" line="6355"/>
<source> (directory not exists)</source>
<translation> (ç®éä¸åå¨)</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6220"/>
+ <location filename="onmainwindow.cpp" line="6383"/>
<source>wrong value for argument"--link"</source>
<translation>"--link"忏çå¼é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6238"/>
+ <location filename="onmainwindow.cpp" line="6401"/>
<source>wrong value for argument"--sound"</source>
<translation>"--sound"忏çå¼é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6255"/>
- <location filename="onmainwindow.cpp" line="6266"/>
+ <location filename="onmainwindow.cpp" line="6418"/>
+ <location filename="onmainwindow.cpp" line="6429"/>
<source>wrong value for argument"--geometry"</source>
<translation>"--geometry"忏çå¼é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6284"/>
+ <location filename="onmainwindow.cpp" line="6447"/>
<source>wrong value for argument"--set-kbd"</source>
<translation>"--set-kbd"忏çå¼é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6301"/>
+ <location filename="onmainwindow.cpp" line="6464"/>
<source>wrong value for argument"--ldap"</source>
<translation>"--ldap"忏çå¼é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6323"/>
+ <location filename="onmainwindow.cpp" line="6486"/>
<source>wrong value for argument"--ldap1"</source>
<translation>"--ldap1"忏çå¼é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6342"/>
+ <location filename="onmainwindow.cpp" line="6505"/>
<source>wrong value for argument"--ldap2"</source>
<translation>"--ldap2"忏çå¼é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6396"/>
+ <location filename="onmainwindow.cpp" line="6559"/>
<source>wrong value for argument"--pack"</source>
<translation>"--pack"忏çå¼é¯èª¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6404"/>
- <location filename="onmainwindow.cpp" line="6407"/>
+ <location filename="onmainwindow.cpp" line="6567"/>
+ <location filename="onmainwindow.cpp" line="6570"/>
<source>wrong parameter: </source>
<translation>é¯èª¤ç忏:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6458"/>
- <location filename="onmainwindow.cpp" line="6484"/>
+ <location filename="onmainwindow.cpp" line="6621"/>
+ <location filename="onmainwindow.cpp" line="6647"/>
<source>Options</source>
<translation>é¸é
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="6463"/>
+ <location filename="onmainwindow.cpp" line="6626"/>
<source>Available pack methodes:</source>
<translation>å¯ç¨çå
è£æ¹æ³:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7251"/>
+ <location filename="onmainwindow.cpp" line="7417"/>
<source>Support</source>
<translation>æ¯æ´</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7256"/>
+ <location filename="onmainwindow.cpp" line="7422"/>
<source></b><br> (C. 2006-2012 <b>obviously nice</b>: Oleksandr Shneyder, Heinz-Markus Graesing)<br></source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7260"/>
+ <location filename="onmainwindow.cpp" line="7426"/>
<source><br>x2goplugin mode was sponsored by <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a><br></source>
<translation><br>x2goplugin modeæ¯ç± <a href="http://www.foss-group.de/">FOSS-Group GmbH(Freiburg)</a>æä¾è´å©<br></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7264"/>
+ <location filename="onmainwindow.cpp" line="7430"/>
<source><br>Client for use with 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 fullscreen loginscreen (replacement for loginmanager like xdm). Please visit x2go.org for further information.</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7277"/>
+ <location filename="onmainwindow.cpp" line="7443"/>
<source><b>X2Go client V. </source>
<translation><b>X2Go 客æ¶ç«¯ V. </translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7322"/>
+ <location filename="onmainwindow.cpp" line="7488"/>
<source>Please check LDAP Settings</source>
<translation>è«æª¢æ¥LDAPçè¨å®</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7552"/>
+ <location filename="onmainwindow.cpp" line="7719"/>
<source>No valid card found</source>
<translation>æ²æç¼ç¾åæ³çå¡ç</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7600"/>
+ <location filename="onmainwindow.cpp" line="7767"/>
<source>This card is unknown by X2Go system</source>
<translation>X2Goç³»çµ±ç¡æ³è¾¨èæ¤å¼µå¡ç</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7628"/>
+ <location filename="onmainwindow.cpp" line="7795"/>
<source>Unable to create file: </source>
<translation>æªæ¡ç¡æ³åµå»º:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7897"/>
+ <location filename="onmainwindow.cpp" line="8064"/>
<source>Can't start X server
Please check your settings</source>
<translation type="unfinished"></translation>
@@ -1556,7 +1566,7 @@ Please check your settings</source>
<translation type="obsolete">ç¡æ³é£æ¥è³X伺æå¨</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7896"/>
+ <location filename="onmainwindow.cpp" line="8063"/>
<source>Can't connect to X server
Please check your settings</source>
<oldsource>Can't connect to X-Server
@@ -1571,163 +1581,163 @@ Please check your settings</source>
è«æª¢æ¥æ¨çè¨å®å¼</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="7911"/>
- <location filename="onmainwindow.cpp" line="8557"/>
- <location filename="onmainwindow.cpp" line="8585"/>
+ <location filename="onmainwindow.cpp" line="8078"/>
+ <location filename="onmainwindow.cpp" line="8726"/>
+ <location filename="onmainwindow.cpp" line="8754"/>
<source>Can't start X Server
Please check your installation</source>
<translation>ç¡æ³ååX伺æå¨
è«æª¢æ¥X伺æå¨å®æ¯å¦æå®è£æ£ç¢º</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8083"/>
+ <location filename="onmainwindow.cpp" line="8251"/>
<source>Unable to execute: </source>
<translation>ç¡æ³å·è¡:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8099"/>
+ <location filename="onmainwindow.cpp" line="8268"/>
<source>Remote server does not support file system export through SSH Tunnel
Please update to a newer x2goserver package</source>
<translation>é 端伺æå¨ç¡æ³æ¯æ´SSHééåå¼çå
±ç¨æªæ¡ç³»çµ±ï¼è«åç´è³è¼æ°çX2Go伺æå¨æ¿æ¬</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8163"/>
+ <location filename="onmainwindow.cpp" line="8332"/>
<source>Unable to read :
</source>
<translation>ç¡æ³è®å:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8188"/>
+ <location filename="onmainwindow.cpp" line="8357"/>
<source>Unable to write :
</source>
<translation>ç¡æ³å¯«å
¥:
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8276"/>
+ <location filename="onmainwindow.cpp" line="8445"/>
<source>WINDOWS-1252</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="8288"/>
+ <location filename="onmainwindow.cpp" line="8457"/>
<source>ISO8859-1</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9511"/>
+ <location filename="onmainwindow.cpp" line="9689"/>
<source>X2Go Session</source>
<translation>X2Goå·¥ä½é段</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9693"/>
+ <location filename="onmainwindow.cpp" line="9871"/>
<source>wrong value for argument"speed"</source>
<translation>é¯èª¤ç"speed"忏å¼</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9823"/>
+ <location filename="onmainwindow.cpp" line="9985"/>
<source>Password:</source>
<translation>å¯ç¢¼:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9824"/>
+ <location filename="onmainwindow.cpp" line="9986"/>
<source>Keyboard layout:</source>
<translation>éç¤ä½å±:</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9865"/>
+ <location filename="onmainwindow.cpp" line="10027"/>
<source>Ok</source>
<translation>確å®</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="9867"/>
- <location filename="onmainwindow.cpp" line="10189"/>
- <location filename="onmainwindow.cpp" line="10191"/>
+ <location filename="onmainwindow.cpp" line="10029"/>
+ <location filename="onmainwindow.cpp" line="10351"/>
+ <location filename="onmainwindow.cpp" line="10353"/>
<source>Cancel</source>
<translation>åæ¶</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10004"/>
+ <location filename="onmainwindow.cpp" line="10166"/>
<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="onmainwindow.cpp" line="10014"/>
+ <location filename="onmainwindow.cpp" line="10176"/>
<source>Applications...</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10027"/>
+ <location filename="onmainwindow.cpp" line="10189"/>
<source>Abort</source>
<translation>éåº</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10039"/>
+ <location filename="onmainwindow.cpp" line="10201"/>
<source>Show details</source>
<translation>顯示細ç¯</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10187"/>
+ <location filename="onmainwindow.cpp" line="10349"/>
<source>Resume</source>
<translation>æ¢å¾©</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10199"/>
+ <location filename="onmainwindow.cpp" line="10361"/>
<source>New</source>
<translation>æ°å¢</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10202"/>
+ <location filename="onmainwindow.cpp" line="10364"/>
<source>Full access</source>
<translation>å®å
¨åå</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10205"/>
+ <location filename="onmainwindow.cpp" line="10367"/>
<source>View only</source>
<translation>å
æ¥ç</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10268"/>
+ <location filename="onmainwindow.cpp" line="10430"/>
<source>Status</source>
<translation>çæ
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10270"/>
+ <location filename="onmainwindow.cpp" line="10432"/>
<source>Command</source>
<translation>æä»¤</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10272"/>
+ <location filename="onmainwindow.cpp" line="10434"/>
<source>Type</source>
<translation>åæ
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10274"/>
+ <location filename="onmainwindow.cpp" line="10436"/>
<source>Server</source>
<translation>伺æå¨</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10279"/>
+ <location filename="onmainwindow.cpp" line="10441"/>
<source>Client IP</source>
<translation>客æ¶ç«¯IP</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10281"/>
+ <location filename="onmainwindow.cpp" line="10443"/>
<source>Session ID</source>
<translation>å·¥ä½é段èå¥ç¢¼</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10285"/>
+ <location filename="onmainwindow.cpp" line="10447"/>
<source>User</source>
<translation>使ç¨è
</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10316"/>
+ <location filename="onmainwindow.cpp" line="10478"/>
<source>Only my desktops</source>
<translation>åªé¸ææçæ¡é¢</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10414"/>
+ <location filename="onmainwindow.cpp" line="10576"/>
<source>sshd not started, you'll need sshd for printing and file sharing
you can install sshd with
<b>sudo apt-get install openssh-server</b></source>
@@ -1736,12 +1746,12 @@ you can install sshd with
<b>sudo apt-get install openssh-server</b></translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10485"/>
+ <location filename="onmainwindow.cpp" line="10647"/>
<source>Restore toolbar</source>
<translation>éåå·¥å
·å</translation>
</message>
<message>
- <location filename="onmainwindow.cpp" line="10530"/>
+ <location filename="onmainwindow.cpp" line="10692"/>
<source><br><b> Click this button <br> to restore toolbar </b><br></source>
<translation><br><b> ææ¤æé <br> éåå·¥å
·å </b><br></translation>
</message>
@@ -2121,170 +2131,226 @@ Example:
<context>
<name>SessionWidget</name>
<message>
- <location filename="sessionwidget.cpp" line="52"/>
+ <location filename="sessionwidget.cpp" line="55"/>
<source>Session name:</source>
<translation>å·¥ä½é段å稱:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="57"/>
+ <location filename="sessionwidget.cpp" line="60"/>
<source><< change icon</source>
<translation><< æ´æå示</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="60"/>
+ <location filename="sessionwidget.cpp" line="63"/>
<source>&Server</source>
<translation>伺æå¨(&S)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="93"/>
+ <location filename="sessionwidget.cpp" line="96"/>
+ <location filename="sessionwidget.cpp" line="154"/>
<source>Host:</source>
<translation>主æ©:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="94"/>
+ <location filename="sessionwidget.cpp" line="97"/>
+ <location filename="sessionwidget.cpp" line="160"/>
<source>Login:</source>
<translation>ç»å
¥å¸³è:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="95"/>
- <location filename="sessionwidget.cpp" line="237"/>
+ <location filename="sessionwidget.cpp" line="98"/>
+ <location filename="sessionwidget.cpp" line="360"/>
<source>SSH port:</source>
<translation>SSH飿¥å :</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="110"/>
+ <location filename="sessionwidget.cpp" line="113"/>
<source>Use RSA/DSA key for ssh connection:</source>
<translation>使ç¨RSA/DSAå¯é°æ¼SSHé£ç·:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="117"/>
+ <location filename="sessionwidget.cpp" line="120"/>
<source>Try auto login (ssh-agent or default ssh key)</source>
<translation>å試èªåç»å
¥ (ssh代çæé è¨SSHå¯é°)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="118"/>
+ <location filename="sessionwidget.cpp" line="121"/>
<source>Kerberos 5 (GSSAPI) authentication</source>
<translation>Kerberos 5 (GSSAPI) èªè</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="123"/>
+ <location filename="sessionwidget.cpp" line="124"/>
+ <source>Use Proxy server for SSH connection</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="125"/>
+ <source>Proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="131"/>
+ <source>SSH</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="132"/>
+ <source>HTTP</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="140"/>
+ <source>Same login as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="142"/>
+ <source>Same password as on X2Go Server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="144"/>
+ <source>RSA/DSA key:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="149"/>
+ <source>ssh-agent or default ssh key</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="151"/>
+ <source>Type:</source>
+ <translation type="unfinished">é¡å¥:</translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="155"/>
+ <source>Port:</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sessionwidget.cpp" line="170"/>
<source>&Session type</source>
<translation>å·¥ä½é段é¡å(&S)</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="128"/>
+ <location filename="sessionwidget.cpp" line="175"/>
<source>Session type:</source>
<translation>å·¥ä½é段é¡å:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="138"/>
- <location filename="sessionwidget.cpp" line="361"/>
+ <location filename="sessionwidget.cpp" line="185"/>
+ <location filename="sessionwidget.cpp" line="484"/>
<source>Connect to Windows terminal server</source>
<translation>é£ç·è³å¾®è»çµç«¯ä¼ºæå¨</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="139"/>
+ <location filename="sessionwidget.cpp" line="186"/>
<source>XDMCP</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="140"/>
+ <location filename="sessionwidget.cpp" line="187"/>
<source>Connect to local desktop</source>
<translation>é£ç·è³æ¬å°æ¡é¢</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="141"/>
+ <location filename="sessionwidget.cpp" line="188"/>
<source>Custom desktop</source>
<translation>èªè¨æ¡é¢é¡å</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="142"/>
+ <location filename="sessionwidget.cpp" line="189"/>
<source>Single application</source>
<translation>å®ä¸æç¨ç¨å¼</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="143"/>
+ <location filename="sessionwidget.cpp" line="190"/>
<source>Published applications</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="145"/>
- <location filename="sessionwidget.cpp" line="305"/>
+ <location filename="sessionwidget.cpp" line="192"/>
+ <location filename="sessionwidget.cpp" line="428"/>
<source>Command:</source>
<translation>æä»¤:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="146"/>
+ <location filename="sessionwidget.cpp" line="193"/>
<source>Advanced options...</source>
<translation>é²éè¨å®...</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="158"/>
- <location filename="sessionwidget.cpp" line="523"/>
- <location filename="sessionwidget.cpp" line="597"/>
+ <location filename="sessionwidget.cpp" line="205"/>
+ <location filename="sessionwidget.cpp" line="713"/>
+ <location filename="sessionwidget.cpp" line="808"/>
<source>Path to executable</source>
<translation>å·è¡è·¯å¾</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="168"/>
+ <location filename="sessionwidget.cpp" line="215"/>
<source>Direct RDP Connection</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="233"/>
+ <location filename="sessionwidget.cpp" line="356"/>
<source>RDP port:</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="249"/>
+ <location filename="sessionwidget.cpp" line="372"/>
<source>Open picture</source>
<translation>éååç</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="251"/>
+ <location filename="sessionwidget.cpp" line="374"/>
<source>Pictures</source>
<translation>åç</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="272"/>
+ <location filename="sessionwidget.cpp" line="283"/>
+ <location filename="sessionwidget.cpp" line="395"/>
<source>Open key file</source>
<translation>éåå¯é°æªæ¡</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="274"/>
+ <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="397"/>
<source>All files</source>
<translation>æææªæ¡</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="284"/>
+ <location filename="sessionwidget.cpp" line="295"/>
+ <location filename="sessionwidget.cpp" line="407"/>
<source>Error</source>
<translation>é¯èª¤</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="285"/>
+ <location filename="sessionwidget.cpp" line="296"/>
+ <location filename="sessionwidget.cpp" line="408"/>
<source>x2goclient is running in portable mode. You should use a path on your usb device to be able to access your data whereever you are</source>
<translation>X2Goç¨æ¶ç«¯ç®åçºå¯æå¼æ¨¡å¼ï¼æ¨æè©²è¦ä½¿ç¨æ¨çUSBè£ç½®çè·¯å¾ä¾å忍çè³æ</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="332"/>
- <location filename="sessionwidget.cpp" line="478"/>
+ <location filename="sessionwidget.cpp" line="455"/>
+ <location filename="sessionwidget.cpp" line="668"/>
<source>Server:</source>
<translation>伺æå¨:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="341"/>
- <location filename="sessionwidget.cpp" line="490"/>
+ <location filename="sessionwidget.cpp" line="464"/>
+ <location filename="sessionwidget.cpp" line="680"/>
<source>XDMCP server:</source>
<translation>XDMCP 伺æå¨:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="362"/>
+ <location filename="sessionwidget.cpp" line="485"/>
<source>rdesktop command line options:</source>
<translation>rdesktop æä»¤é¸é
:</translation>
</message>
<message>
- <location filename="sessionwidget.cpp" line="375"/>
- <location filename="sessionwidget.cpp" line="502"/>
+ <location filename="sessionwidget.cpp" line="498"/>
+ <location filename="sessionwidget.cpp" line="692"/>
<source>New session</source>
<translation>æ°çå·¥ä½é段</translation>
</message>
@@ -2432,17 +2498,17 @@ sound system connections through firewalls</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="642"/>
+ <location filename="settingswidget.cpp" line="645"/>
<source>us</source>
<translation>us</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="643"/>
+ <location filename="settingswidget.cpp" line="646"/>
<source>pc105/us</source>
<translation>pc105/us</translation>
</message>
<message>
- <location filename="settingswidget.cpp" line="757"/>
+ <location filename="settingswidget.cpp" line="760"/>
<source>password</source>
<translation type="unfinished"></translation>
</message>
@@ -2531,82 +2597,103 @@ sound system connections through firewalls</source>
<context>
<name>SshMasterConnection</name>
<message>
- <location filename="sshmasterconnection.cpp" line="133"/>
+ <location filename="sshmasterconnection.cpp" line="170"/>
+ <source>SSH proxy connection error</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="175"/>
+ <location filename="sshmasterconnection.cpp" line="181"/>
+ <source>SSH proxy connection error: </source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="197"/>
+ <source>Failed to create SSH proxy tunnel</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="265"/>
<source>Can not initialize libssh</source>
<translation>libsshç¡æ³åå§å</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="159"/>
+ <location filename="sshmasterconnection.cpp" line="291"/>
<source>Can not create ssh session</source>
<translation>ç¡æ³å»ºç«SSHå·¥ä½é段</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="177"/>
+ <location filename="sshmasterconnection.cpp" line="319"/>
+ <source>Can not connect to proxy server</source>
+ <translation type="unfinished"></translation>
+ </message>
+ <message>
+ <location filename="sshmasterconnection.cpp" line="340"/>
<source>Can not connect to </source>
<translation>ç¡æ³é£ç·è³ </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="218"/>
+ <location filename="sshmasterconnection.cpp" line="394"/>
<source>Authentication failed</source>
<translation>é©è失æ</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="244"/>
+ <location filename="sshmasterconnection.cpp" line="420"/>
<source>channel_forward_listen failed</source>
<translation>channel_forward_listen失æ</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="560"/>
+ <location filename="sshmasterconnection.cpp" line="830"/>
<source>Can not open file </source>
<translation>ç¡æ³éåæªæ¡</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="572"/>
+ <location filename="sshmasterconnection.cpp" line="842"/>
<source>Can not create remote file </source>
<translation>ç¡æ³åµå»ºé ç«¯æªæ¡</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="585"/>
+ <location filename="sshmasterconnection.cpp" line="855"/>
<source>Can not write to remote file </source>
<translation>ç¡æ³å¯«å
¥è³æè³é ç«¯æªæ¡</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="642"/>
+ <location filename="sshmasterconnection.cpp" line="912"/>
<source>can not connect to </source>
<translation>ç¡æ³é£ç·è³ </translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="751"/>
+ <location filename="sshmasterconnection.cpp" line="1029"/>
<source>channel_open_forward failed</source>
<translation>channel_open_forward失æ</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="770"/>
+ <location filename="sshmasterconnection.cpp" line="1048"/>
<source>channel_open_session failed</source>
<translation>channel_open_session失æ</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="777"/>
+ <location filename="sshmasterconnection.cpp" line="1055"/>
<source>channel_request_exec failed</source>
<translation>channel_request_exec失æ</translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="842"/>
+ <location filename="sshmasterconnection.cpp" line="1120"/>
<source>error writing to socket</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="860"/>
+ <location filename="sshmasterconnection.cpp" line="1138"/>
<source>error reading channel</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="890"/>
+ <location filename="sshmasterconnection.cpp" line="1168"/>
<source>channel_write failed</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshmasterconnection.cpp" line="902"/>
+ <location filename="sshmasterconnection.cpp" line="1180"/>
<source>error reading tcp socket</source>
<translation type="unfinished"></translation>
</message>
@@ -2614,12 +2701,12 @@ sound system connections through firewalls</source>
<context>
<name>SshProcess</name>
<message>
- <location filename="sshprocess.cpp" line="97"/>
+ <location filename="sshprocess.cpp" line="112"/>
<source>Error creating socket</source>
<translation type="unfinished"></translation>
</message>
<message>
- <location filename="sshprocess.cpp" line="115"/>
+ <location filename="sshprocess.cpp" line="130"/>
<source>Error binding </source>
<translation type="unfinished"></translation>
</message>
hooks/post-receive
--
x2goclient.git (X2Go Client)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goclient.git" (X2Go Client).
More information about the x2go-commits
mailing list